Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • wbsimey
    Member
    • Jul 2010
    • 15

    mapping hundreds of RADseq fastqs to ref genome.

    I would like to map hundreds of fastq.gz single-end RADseq files to a single reference genome.

    But, bwa mem is making a map file (.sam) for every fastq file. So I end up with hundreds of individual maps. I want a single map with all fastq files mapped to the reference.
    I have tried hundreds of failed commands, here is one failed example:
    bwa mem -t 16 ../reference.Arrow.fasta ../fastqs/*.F.fq.gz > RADs_mapped.sam

    Any ideas what I am doing wrong? Or what is wrong with my expectation of a single .sam file with all sequences mapped to my reference?
  • cmbetts
    Senior Member
    • Jun 2012
    • 120

    #2
    It's treating each of your fastq files as an independent sample, and making a sam file for each, which is what most people generally want to do. If you don't care about keeping them separate, you can always merge the fastq files with cat prior to alignment or merge the many individual results using samtools. If you care about keeping track of which alignment came from which fastq, it's probably going to be easier to keep them separate and deal with there being many files programatically

    Comment

    • wbsimey
      Member
      • Jul 2010
      • 15

      #3
      thank you cmbetts!

      I am running this bash script, which seems to be working and producing many .bam files
      Code:
      for f in $(ls /Projects/RADseq/fastqs/*.gz)
      do
              bwa mem -t 16 reference.Arrow.fasta $f |
              samtools view -b |
              samtools sort --threads 8 > $f.bam
      done

      Comment

      • GenoMax
        Senior Member
        • Feb 2008
        • 7142

        #4
        Any reason you are not using an established pipeline like STACKS.

        Comment

        • wbsimey
          Member
          • Jul 2010
          • 15

          #5
          Originally posted by GenoMax View Post
          Any reason you are not using an established pipeline like STACKS.
          I am using Stacks, they recommend using bwa for reference based analyses. But, I could not get their recommended pipeline to work, yet.

          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
          14 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 06-04-2026, 08:59 AM
          0 responses
          24 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 06-02-2026, 12:03 PM
          0 responses
          31 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 06-02-2026, 11:40 AM
          0 responses
          23 views
          0 reactions
          Last Post SEQadmin2  
          Working...