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
            Current Approaches to Protein Sequencing
            by seqadmin


            Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
            04-04-2024, 04:25 PM
          • seqadmin
            Strategies for Sequencing Challenging Samples
            by seqadmin


            Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
            03-22-2024, 06:39 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, 04-11-2024, 12:08 PM
          0 responses
          18 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-10-2024, 10:19 PM
          0 responses
          22 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-10-2024, 09:21 AM
          0 responses
          17 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-04-2024, 09:00 AM
          0 responses
          49 views
          0 likes
          Last Post seqadmin  
          Working...
          X