Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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?

  • #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


    • #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


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

        Comment


        • #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

          • seqadmin
            Recent Advances in Sequencing Analysis Tools
            by seqadmin


            The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
            Today, 07:48 AM
          • seqadmin
            Essential Discoveries and Tools in Epitranscriptomics
            by seqadmin




            The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
            04-22-2024, 07:01 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, Today, 07:17 AM
          0 responses
          11 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 05-02-2024, 08:06 AM
          0 responses
          19 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-30-2024, 12:17 PM
          0 responses
          20 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-29-2024, 10:49 AM
          0 responses
          28 views
          0 likes
          Last Post seqadmin  
          Working...
          X