Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • pythonlovesbowtie
    Junior Member
    • Nov 2009
    • 5

    Bowtie output

    Hi there~

    I have some questions about the output setting of Bowtie.

    1. Can I get separate output files in relation to input files? I tried to put comma separated filenames but that does not work.

    2. I tried --al<filename>, but it only writes the reads, not the alignment. Is there something to do to get alignment?

    3. for the option --refout, why it will output so many file? one map one alignment?

    Thanks very much
  • simonandrews
    Simon Andrews
    • May 2009
    • 870

    #2
    1. An easy way is to wrap your bowtie command in a shell for loop:

    for i in *fastq
    do
    bowtie --best /some/genome/index $i > $i.bowtie.txt
    done

    2. That option allows you to separate the reads which aligned from those which don't and corresponds to un for unaligned reads and max for multiply aligning reads. It's not really designed to report alignments.

    3. Sorry, no idea - never used that one.

    Comment

    • Ben Langmead
      Senior Member
      • Sep 2008
      • 200

      #3
      Originally posted by pythonlovesbowtie View Post
      3. for the option --refout, why it will output so many file? one map one alignment?
      There's 1 output file per input sequence. If you have an input file with 1000 sequences in it, that's 1000 distinct output files. If you have a ton of input files, this clearly may not be what you want.

      Thanks,
      Ben

      Comment

      Latest Articles

      Collapse

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, 06-09-2026, 11:58 AM
      0 responses
      22 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-05-2026, 10:09 AM
      0 responses
      29 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-04-2026, 08:59 AM
      0 responses
      39 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-02-2026, 12:03 PM
      0 responses
      61 views
      0 reactions
      Last Post SEQadmin2  
      Working...