Seqanswers Leaderboard Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • shashankgupta
    Member
    • Feb 2015
    • 35

    #31
    I believe someone else could help

    Comment

    • GenoMax
      Senior Member
      • Feb 2008
      • 7142

      #32
      Install instructions are apparently included in the software (which you must have downloaded). Have you not checked the tarball (should be a README type file present)?

      Comment

      • shashankgupta
        Member
        • Feb 2015
        • 35

        #33
        i tried to install but i got many errors, which is quit difficult for me to resolve (bcoz i am not bioinformatic/programmer).

        Thats why i need help in that for installing

        Comment

        • GenoMax
          Senior Member
          • Feb 2008
          • 7142

          #34
          Post those "errors" here so we can see what you need help with.

          Comment

          • shashankgupta
            Member
            • Feb 2015
            • 35

            #35
            i tried, i guess everything is installed, but one, i.e.

            ./Build mpich2

            ERROR: Failed installing mpich2, now cleaning installation path...
            You may need to install mpich2 manually.

            [root@root src]# ./Build status


            ==============================================================================
            STATUS MAKER v2.31.8
            ==============================================================================
            PERL Dependencies: VERIFIED
            External Programs: VERIFIED
            External C Libraries: VERIFIED
            MPI SUPPORT: DISABLED
            MWAS Web Interface: DISABLED
            MAKER PACKAGE: CONFIGURATION OK


            Important Commands:
            ./Build installdeps #installs missing PERL dependencies
            ./Build installexes #installs all missing external programs
            ./Build install #installs MAKER
            ./Build status #Shows this status menu

            Other Commands:
            ./Build repeatmasker #installs RepeatMasker (asks for RepBase)
            ./Build blast #installs BLAST (NCBI BLAST+)
            ./Build exonerate #installs Exonerate (v2 on UNIX / v1 on Mac OSX)
            ./Build snap #installs SNAP
            ./Build augustus #installs Augustus
            ./Build apollo #installs Apollo
            ./Build gbrowse #installs GBrowse (must be root)
            ./Build jbrowse #installs JBrowse (MAKER copy, not web accecible)
            ./Build webapollo #installs WebApollo (use maker2wap to create DBs)
            ./Build mpich2 #installs MPICH2 (but manual install recommended)


            i tried to install it manually, but not able to install it.

            when i used command
            ./Build install
            it installed, without any error.

            and when i used :
            maker -help
            no command found.

            any help

            Comment

            • shashankgupta
              Member
              • Feb 2015
              • 35

              #36
              in other system, mpich2 is also installed.

              steps:

              Install MAKER. Download from http://www.yandell-lab.org

              a. Unpack the MAKER tar file into the directory of your choice (i.e.
              /usr/local).
              b. Go to the MAKER src/ directory.
              c. Configure using --> perl Build.PL
              D. Install using --> ./Build install
              b. Remember to add the following to your .bash_profile if you haven't already:
              export ZOE="where_snap_is/Zoe"
              export AUGUSTUS_CONFIG_PATH="where_augustus_is/config
              c. Add the location where you installed MAKER to your PATH variable in
              .bash_profile (i.e. export PATH=/usr/local/maker/bin:$PATH).
              d. You can now run a test of MAKER by following the instructions in the MAKER
              README file.


              but

              after D. Install using --> ./Build install i dont understand how to the other steps..

              Comment

              • GenoMax
                Senior Member
                • Feb 2008
                • 7142

                #37
                Originally posted by shashankgupta View Post
                in other system, mpich2 is also installed.

                steps:

                Install MAKER. Download from http://www.yandell-lab.org

                a. Unpack the MAKER tar file into the directory of your choice (i.e.
                /usr/local).
                b. Go to the MAKER src/ directory.
                c. Configure using --> perl Build.PL
                D. Install using --> ./Build install
                b. Remember to add the following to your .bash_profile if you haven't already:
                export ZOE="where_snap_is/Zoe"
                export AUGUSTUS_CONFIG_PATH="where_augustus_is/config
                c. Add the location where you installed MAKER to your PATH variable in
                .bash_profile (i.e. export PATH=/usr/local/maker/bin:$PATH).
                d. You can now run a test of MAKER by following the instructions in the MAKER
                README file.


                but

                after D. Install using --> ./Build install i dont understand how to the other steps..
                I don't have a copy of Maker so this may be a case of blind leading the blind but looking at the directions above ..

                If you have finished the build step without any errors then it is looking for a program called "Zoe" that should be part of package "snap". Edit the path appropriately to indicate where Zoe is on your system. You already know where augustus is so modify that path too.

                export ZOE="where_snap_is/Zoe"
                export AUGUSTUS_CONFIG_PATH="where_augustus_is/config"

                Finally add the path to the directory where you compiled maker.

                export PATH=/usr/local/maker/bin:$PATH

                You can add these three line (once you are sure things are working) to your .bash_profile file by editing it.

                Comment

                • shashankgupta
                  Member
                  • Feb 2015
                  • 35

                  #38
                  thanks.. i guess now i understand what to do...

                  Comment

                  • shashankgupta
                    Member
                    • Feb 2015
                    • 35

                    #39
                    I have a quick question, once i have predicted the genes using AUGUTUS tool (i have now a output file in gff format) .

                    then how can i annotate the file, i mean to say the purpose of using these tools is to annotate the fungal genome which i obtained from 454.

                    Comment

                    • GenoMax
                      Senior Member
                      • Feb 2008
                      • 7142

                      #40
                      Are you referring to creating a "genbank" like file with inline annotations?

                      Otherwise you can use genome sequence file in combination with the gff file for any analysis you need to do.

                      Comment

                      • shashankgupta
                        Member
                        • Feb 2015
                        • 35

                        #41
                        gff (General Feature Format) obtained from AUGUSTUS.
                        is there any tool which do annotation

                        Comment

                        • sarvidsson
                          Senior Member
                          • Jan 2015
                          • 137

                          #42
                          If you are referring to functional annotation of the coding sequences/proteins, I'll repeat what I've already said:

                          Originally posted by sarvidsson View Post
                          For the downstream functional annotation you could run InterProScan on the resultant CDS or peptides (http://www.ebi.ac.uk/interpro/interproscan.html). I'd use the download version but there is a possibility to use their servers (with some limits) via web submission. The command line version is quite straightforward to use and integrates many complementary predicition and comparative tools.
                          If you have CDS records in your GFF, you could use e.g. gffread from the cufflinks package to extract the coding sequences into a FASTA file, to be used as input to InterProScan. You can find some examples on commands here: http://onetipperday.blogspot.de/2013...ranscript.html

                          Comment

                          Latest Articles

                          Collapse

                          • seqadmin
                            Pathogen Surveillance with Advanced Genomic Tools
                            by seqadmin




                            The COVID-19 pandemic highlighted the need for proactive pathogen surveillance systems. As ongoing threats like avian influenza and newly emerging infections continue to pose risks, researchers are working to improve how quickly and accurately pathogens can be identified and tracked. In a recent SEQanswers webinar, two experts discussed how next-generation sequencing (NGS) and machine learning are shaping efforts to monitor viral variation and trace the origins of infectious...
                            Yesterday, 11:48 AM
                          • seqadmin
                            New Genomics Tools and Methods Shared at AGBT 2025
                            by seqadmin


                            This year’s Advances in Genome Biology and Technology (AGBT) General Meeting commemorated the 25th anniversary of the event at its original venue on Marco Island, Florida. While this year’s event didn’t include high-profile musical performances, the industry announcements and cutting-edge research still drew the attention of leading scientists.

                            The Headliner
                            The biggest announcement was Roche stepping back into the sequencing platform market. In the years since...
                            03-03-2025, 01:39 PM
                          • seqadmin
                            Investigating the Gut Microbiome Through Diet and Spatial Biology
                            by seqadmin




                            The human gut contains trillions of microorganisms that impact digestion, immune functions, and overall health1. Despite major breakthroughs, we’re only beginning to understand the full extent of the microbiome’s influence on health and disease. Advances in next-generation sequencing and spatial biology have opened new windows into this complex environment, yet many questions remain. This article highlights two recent studies exploring how diet influences microbial...
                            02-24-2025, 06:31 AM

                          ad_right_rmr

                          Collapse

                          News

                          Collapse

                          Topics Statistics Last Post
                          Started by seqadmin, 03-20-2025, 05:03 AM
                          0 responses
                          26 views
                          0 reactions
                          Last Post seqadmin  
                          Started by seqadmin, 03-19-2025, 07:27 AM
                          0 responses
                          33 views
                          0 reactions
                          Last Post seqadmin  
                          Started by seqadmin, 03-18-2025, 12:50 PM
                          0 responses
                          25 views
                          0 reactions
                          Last Post seqadmin  
                          Started by seqadmin, 03-03-2025, 01:15 PM
                          0 responses
                          190 views
                          0 reactions
                          Last Post seqadmin  
                          Working...