Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • pettervikman
    Member
    • Nov 2009
    • 23

    Bow-tie inspect returned an error

    Hi all

    I'm trying to run TopHat for the first time. I've checked the installation with the complementary test data set and that worked. Now with my own data set I get that message right after it tries to create the rat rn4.fa file since it's lacking in the index_folder. I've downloaded and unpacked the files from the bowtie/tophat webpage and I ran the make script. I've asked our IT people but since they are even more unfamiliar then me (which says a lot) with this program I got no help.

    So any help would be greatly appreciated! I 've pasted the entire message from TopHat below.

    Sincerely

    /Petter

    [1] 19633
    [petter_v@purple BaseCalls]$
    [Fri Nov 12 19:28:30 2010] Beginning TopHat run (v1.1.2)
    -----------------------------------------------
    [Fri Nov 12 19:28:30 2010] Preparing output location ./tophat_out/
    [Fri Nov 12 19:28:30 2010] Checking for Bowtie index files
    Error: Could not find Bowtie index files /data/archive/bowtie-indexes/chr*.*
    tophat -r 100 -p 4 --library-type fr-unstranded chr s_1_1_* s_1_2_* &
    [2] 19634
    [1] Exit 1 tophat -r 100 -p 4 --library-type fr-unstranded chr* s_1_1_* s_1_2_*
    [petter_v@purple BaseCalls]$
    [Fri Nov 12 19:28:40 2010] Beginning TopHat run (v1.1.2)
    -----------------------------------------------
    [Fri Nov 12 19:28:40 2010] Preparing output location ./tophat_out/
    [Fri Nov 12 19:28:40 2010] Checking for Bowtie index files
    Error: Could not find Bowtie index files /data/archive/bowtie-indexes/chr.*
    tophat -r 100 -p 4 --library-type fr-unstranded rn4 s_1_1_* s_1_2_* &
    [3] 19635
    [2] Exit 1 tophat -r 100 -p 4 --library-type fr-unstranded chr s_1_1_* s_1_2_*
    [petter_v@purple BaseCalls]$
    [Fri Nov 12 19:28:47 2010] Beginning TopHat run (v1.1.2)
    -----------------------------------------------
    [Fri Nov 12 19:28:47 2010] Preparing output location ./tophat_out/
    [Fri Nov 12 19:28:47 2010] Checking for Bowtie index files
    [Fri Nov 12 19:28:47 2010] Checking for reference FASTA file
    Warning: Could not find FASTA file /data/archive/bowtie-indexes/rn4.fa
    [Fri Nov 12 19:28:47 2010] Reconstituting reference FASTA file from Bowtie index
    [FAILED]
    Error: bowtie-inspect returned an error

    [3]+ Exit 1 tophat -r 100 -p 4 --library-type fr-unstranded rn4 s_1_1_* s_1_2_*
  • reut
    Member
    • Oct 2010
    • 19

    #2
    I have the same problem

    Hi
    I am new to this too.
    also trying to run Tophat v1.1.2 with Bowtie v0.12.7.0 and get the same error message -
    Code:
    [Sun Nov 14 12:15:36 2010] Beginning TopHat run (v1.1.2)
    -----------------------------------------------
    [Sun Nov 14 12:15:36 2010] Preparing output location ./tophat_out/
    [Sun Nov 14 12:15:36 2010] Checking for Bowtie index files
    [Sun Nov 14 12:15:36 2010] Checking for reference FASTA file
            Warning: Could not find FASTA file /bowtie-0.12.7/indexes/mm9.fa
    [Sun Nov 14 12:15:36 2010] Reconstituting reference FASTA file from Bowtie index
    Executing: bowtie-inspect mm9 > ./tophat_out/mm9.fa
            [FAILED]
    Error: bowtie-inspect returned an error
    when I run an older version - Tophat v1.0.12 and Bowtie v0.10.0.0 it does succeed.
    Last edited by reut; 11-14-2010, 10:49 PM.

    Comment

    • pettervikman
      Member
      • Nov 2009
      • 23

      #3
      Thanks for the tip. I've asked our IT department to install the older versions. Is there somewhere I can get them from? Question two, are we the only ones with this issue? Because if others are able to get the whole thing to work maybe installing the older software is a less then optimal workaround.

      Is there someone that's been able to get bowtie/tophat to work versus the rat genome using the latest installations of the software together with the latest genomes from the bowtie manual page?

      Comment

      • reut
        Member
        • Oct 2010
        • 19

        #4
        older Tophat versions

        You can download older versions from here:


        What I finally did was run the bowtie-inspect manually to create the .fa file (bowtie-inspect index_prefix),
        copied the .fa file to the BOWTIE_INDEXES directory and then run Tophat.

        Anyone else encountered this issue?

        Comment

        • pettervikman
          Member
          • Nov 2009
          • 23

          #5
          Thanks for the tip. I ran bowtie-inspect manually as well and managed to create the .fa file. I then proceeded to convert my qseqs to fastq using a perl script from (http://seqanswers.com/forums/showthread.php?t=1655). What suprised me was that the converter only created two (large) files, one per pair and lane from my paired end run. Anyway, I've now started tophat and I've gotten further then before, it's now on mapping reads.

          Comment

          • tleonardi
            Junior Member
            • Nov 2010
            • 3

            #6
            It looks like the problem has to do with the path to the indexes files. Running

            tophat /full/path/to/indexes/m_musculus reads1.fq,reads2.fq,reads3.fq

            or if you have a variable to the indexes path:

            tophat $BOWTIE_INDEXES/m_musculus reads1.fq,reads2.fq,reads3.fq

            did the trick for me


            Hope this can be helpful!
            Last edited by tleonardi; 11-18-2010, 12:46 PM.

            Comment

            • camelbbs
              Member
              • Jun 2011
              • 49

              #7
              hi,

              i have the same problem. and if i use the full path, then it will be ok. but there is still an error like:


              Warning: junction database is empty!

              at last the bam file is very small.

              anyone can help me?
              Last edited by camelbbs; 06-27-2011, 08:30 AM.

              Comment

              • camelbbs
                Member
                • Jun 2011
                • 49

                #8
                Originally posted by reut View Post
                You can download older versions from here:


                What I finally did was run the bowtie-inspect manually to create the .fa file (bowtie-inspect index_prefix),
                copied the .fa file to the BOWTIE_INDEXES directory and then run Tophat.

                Anyone else encountered this issue?
                can i ask how to create the .fa file?
                is bowtie-inspect mm9.1.ebwt mm9.2.ebwt mm9.3.ebwt mm9.4.ebwt?

                Comment

                • louis7781x
                  Member
                  • Oct 2010
                  • 74

                  #9
                  how to place samtools in "PATH" for use with TopHat on MAC

                  Hi everyone

                  Now I have installed tophat on mac64bit,but I have some question.

                  I download tophat-1.31 Mac OS X x86_64 binary,and it doesn't need to compile.

                  You will also need the samtools program in your PATH, and if you plan to compile Tophat from source you should also install the SAM tools package, by following these steps:
                  Download the SAM tools
                  Unpack the SAM tools tarball and cd to the SAM tools source directory.
                  Build the SAM tools by typing make at the command line.
                  Choose a directory into which you wish to copy the SAM tools binary, the included library libbam.a, and the library headers. A common choice is /usr/local/.
                  Copy libbam.a to the lib/ directory in the folder you've chosen above (e.g. /usr/local/lib/)
                  Create a directory called "bam" in the include/ directory (e.g. /usr/local/include/bam)
                  Copy the headers (files ending in .h) to the include/bam directory you've created above (e.g. /usr/local/include/bam)
                  Copy the samtools binary to some directory in your PATH.
                  To install TopHat, unpack the tarball and change to the package directory as follows:
                  tar zxvf tophat-1.2.0.tar.gz
                  cd tophat-1.2.0/
                  Now build the package:
                  ./configure --prefix=/path/to/install/directory/
                  Note: If you copied the SAM tools library and header files to someplace other than /usr/local/, you may need to supply the --with-bam configuration option. For example, if you placed the libbam.a files in /opt/biotools/lib/ and SAM tools .h files in /opt/biotools/include/bam/ then the configure command will become something like this:
                  ./configure --prefix=/opt/biotools --with-bam=/opt/biotools
                  (in this example tophat and its modules will be installed in /opt/biotools/bin/ directory)
                  After the configure script finishes successfully, build the Tophat package:
                  make
                  Finally, install TopHat:
                  make install
                  This will install tophat and its modules into /path/to/install/directory/bin directory. You may want to add that directory to your shell's PATH if it's not there already.
                  My question is tophat 64 bit doesn't need to compile.

                  How do I ./configure --prefix=..../../.

                  And when I run tophat,it shows the error

                  [Wed Jul 13 16:28:25 2011] Beginning TopHat run (v1.3.1)
                  -----------------------------------------------
                  [Wed Jul 13 16:28:25 2011] Preparing output location ./tophat_out/
                  [Wed Jul 13 16:28:25 2011] Checking for Bowtie index files
                  [Wed Jul 13 16:28:25 2011] Checking for reference FASTA file
                  [Wed Jul 13 16:28:25 2011] Checking for Bowtie
                  Bowtie version: 0.12.7.0
                  [Wed Jul 13 16:28:25 2011] Checking for Samtools
                  Error locating program: samtools
                  If anyone know how to solve

                  Please tell me.

                  Thanks

                  Comment

                  Latest Articles

                  Collapse

                  • SEQadmin2
                    Nine Things a Sample Prep Scientist Thinks About Before Sequencing
                    by SEQadmin2


                    I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.

                    Here are nine questions we think about, in roughly the order they matter, before...
                    06-18-2026, 07:11 AM
                  • SEQadmin2
                    From Collection to Sequencing: Why Sample Preparation and Preservation Define Sequencing Data
                    by SEQadmin2


                    Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.


                    The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
                    ...
                    06-02-2026, 10:05 AM

                  ad_right_rmr

                  Collapse

                  News

                  Collapse

                  Topics Statistics Last Post
                  Started by SEQadmin2, Yesterday, 05:37 AM
                  0 responses
                  6 views
                  0 reactions
                  Last Post SEQadmin2  
                  Started by SEQadmin2, 06-26-2026, 11:10 AM
                  0 responses
                  16 views
                  0 reactions
                  Last Post SEQadmin2  
                  Started by SEQadmin2, 06-17-2026, 06:09 AM
                  0 responses
                  51 views
                  0 reactions
                  Last Post SEQadmin2  
                  Started by SEQadmin2, 06-09-2026, 11:58 AM
                  0 responses
                  110 views
                  0 reactions
                  Last Post SEQadmin2  
                  Working...