Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Antony03
    Member
    • Apr 2012
    • 53

    BWA - read identity

    Hi,

    I'm using BWA to map my short sequencing reads (Illumina MiSeq) on a reference sequence. Is this possible to set the minimum % of identity with BWA? For exemple, if I set 90%, then all reads under this threshold will be discarded. I know the parameter "-n" can do something like this but the manual is not really clear (for me). Is "-n" the minimal absolute mismatch in term of base pairs?

    Thank you!

    Antony
  • Brian Bushnell
    Super Moderator
    • Jan 2014
    • 2709

    #2
    Since nobody else has answered this, I will mention that I do not know of a way to generically do that in BWA. The manual says:
    -n NUM Maximum edit distance if the value is INT, or the fraction of missing alignments given 2% uniform base error rate if FLOAT. In the latter case, the maximum edit distance is automatically chosen for different read lengths. [0.04]
    ...which is clear in the case of int but unclear in the case of float. If all your reads are the same length you can calculate the edit distance that would correspond to that identity, though: e.g. 150bp * (1-0.90) = 15.

    Alternately, you can use BBMap, which has an "idfilter" flag - e.g. "idfilter=0.90", which will discard reads that don't map with at least 90% identity, regardless of their length. It also has an "idtag" flag, which will annotate all the alignments in the sam file with the percent identity, so you can manually filter them if you want.

    Comment

    • dariober
      Senior Member
      • May 2010
      • 311

      #3
      [This is a hack. I'm putting it here more for curiosity than anything else]

      On the aligned bam file you could capture the read length and the NM tag ("Edit distance to the reference, including ambiguous bases but excluding clipping") and print the alignment if L/NM < threshold. With samtools/awk:

      Code:
      samtools view -h aln.bam \
      | awk -v maxpct=0.05 -v OFS='\t' -v FS='\t' '{
          if($0 ~ /^@/){
              print $0
          } else {
              xnm=gensub(/.*\tNM:i:/, "", "g", $0); 
              nm=gensub(/\t.*/, "", "g", xnm); 
              pct=nm/length($10);
              if(pct < maxpct) {
                  print $0, "XP:f:"pct
              }
          }
      }' | less
      (The L/NM goes in tag XP)

      Comment

      Latest Articles

      Collapse

      • GATTACAT
        Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
        by GATTACAT
        Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
        07-01-2026, 11:43 AM
      • SEQadmin2
        Nine Things a Sample Prep Scientist Thinks About Before Sequencing
        by SEQadmin2


        I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.

        Here are nine questions we think about, in roughly the order they matter, before...
        06-18-2026, 07:11 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, Yesterday, 11:08 AM
      0 responses
      6 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-30-2026, 05:37 AM
      0 responses
      11 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-26-2026, 11:10 AM
      0 responses
      19 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-17-2026, 06:09 AM
      0 responses
      53 views
      0 reactions
      Last Post SEQadmin2  
      Working...