Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • jgibbons1
    Senior Member
    • Oct 2009
    • 135

    wildcard use for bowtie2 unpaired read sets?

    Hi all (and specifically @salzberg),

    I've been trying to figure out a way to map a batch of unpaired fastq.gz files in the bowtie2 command line without manually entering a comma separated list of all of the files under the -U option. In some cases I have several hundred read files. Using the wildcard character in the command line isn't compatible, but I was wondering if there is another way to accomplish this.

    Thanks
  • kmcarr
    Senior Member
    • May 2008
    • 1181

    #2
    Stream the reads to stdout and then bowtie2 can read from stdin by specifying '-' for the -U option. For example:

    Code:
    gzip -dc *.fastq.gz | bowtie [options] -x <index> -U - -S output.sam

    Comment

    • jgibbons1
      Senior Member
      • Oct 2009
      • 135

      #3
      Awesome...thank you @kmcarr...this worked perfectly

      I also tried replacing "gzip -dc" with "zcat" and that seems to be a little faster

      Thanks!

      Comment

      Latest Articles

      Collapse

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, 06-05-2026, 10:09 AM
      0 responses
      16 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-04-2026, 08:59 AM
      0 responses
      34 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-02-2026, 12:03 PM
      0 responses
      37 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-02-2026, 11:40 AM
      0 responses
      24 views
      0 reactions
      Last Post SEQadmin2  
      Working...