Announcement

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

  • Looking for easy way to find RIGHT-most end of alignment in bam

    Is there a way to report the right-most end of an alignment in a bam file? The position given is the left-most part of the alignment, but I need to know where the right-end falls in the reference. I know this can be done with the CIGAR string, but I'm concerned that I don't fully understand how the CIGAR string works with regards to hard & soft clipping, as well as what its reporting with regards to chimeric alignments. I think it might be easy to get this wrong if I'm not careful, and if there is an already existing, robust & convenient tool or method I'd prefer using that.

  • #2
    The easiest way to do this is to map with BBMap, using the "stoptag" flag, which will make it write an extra tag to each line prefixed by YS:i: which gives the read's stop location. I don't currently have a way to do that for existing sam/bam files, but I may incorporate it into reformat.

    This is the code I use:

    Code:
    public static int calcCigarLength(String cigar, boolean includeHardClip){
    	if(cigar==null){return 0;}
    	int len=0;
    	int current=0;
    	for(int i=0; i<cigar.length(); i++){
    		char c=cigar.charAt(i);
    		if(Character.isDigit(c)){
    			current=(current*10)+(c-'0');
    		}else{
    			if(c=='M' || c=='=' || c=='X' || c=='D' || c=='N' || c=='S'){
    				len+=current;
    			}else if (c=='H'){ 
    				if(includeHardClip){len+=current;}
    			}else if(c=='I'){
    				//do nothing
    			}else if(c=='P'){
    				throw new RuntimeException("Unhandled cigar symbol: "+c+"\n"+cigar+"\n");
    				//'P' is currently poorly defined
    			}else{
    				throw new RuntimeException("Unhandled cigar symbol: "+c+"\n"+cigar+"\n");
    			}
    			current=0;
    		}
    	}
    	return len;
    }
    But, as you said, it gets more complicated when you have clipped reads:

    Code:
    public static String makeStopTag(int pos, int seqLength, String cigar, boolean perfect){
    	return "YS:i:"+(pos+((cigar==null || perfect) ? seqLength : -countLeadingClip(cigar, false)+calcCigarLength(cigar, false))-1);
    }
    
    public static int countLeadingClip(String cigar, boolean includeHardClip){
    	if(cigar==null){return 0;}
    	int len=0;
    	int current=0;
    	for(int i=0; i<cigar.length(); i++){
    		char c=cigar.charAt(i);
    		if(Character.isLetter(c) || c=='='){
    			if((includeHardClip && c=='H') || (SUBTRACT_LEADING_SOFT_CLIP && c=='S')){
    				len+=current;
    			}else{
    				break;
    			}
    			current=0;
    		}else{
    			current=(current*10)+(c-'0');
    		}
    	}
    	return len;
    }
    Different aligners calculate pos differently for clipped reads which is why I have flags for counting or not counting hard- and soft-clipped bases.
    Last edited by Brian Bushnell; 03-18-2015, 01:21 PM.

    Comment


    • #3
      Originally posted by jmartin View Post
      Is there a way to report the right-most end of an alignment in a bam file?
      This script below based on python pysam should do it. It adds a YS tag with the end position of the read (mocking Brian's answer).

      Save the script as addReadEndToBam.py (or whatever). It will print to stdout in BAM format.

      Example usage:

      Code:
      addReadEndToBam.py in.bam > out.bam
      
      # Example output alignment:
      M00886:29:000000000-A95CG:1:2103:5504:6001	89	LmjF.01	4	0	34M	=	4	0	CCCTAACCCTAACCTTGACCCTAACCCTATCCCT	FB0AA0AAB1BBBA11GFCGFAB1>B1>1>>>>>	XT:A:R	NM:i:2	SM:i:0	AM:i:0	X0:i:5	X1:i:0	XM:i:2	XO:i:0	XG:i:0	MD:Z:14C14A4	YS:i:37
      This is based on pysam 0.8.1:

      Code:
      #!/usr/bin/env python
      
      import pysam
      import sys
      
      insam= sys.argv[1]
      samfile = pysam.AlignmentFile(insam, "rb")
      outfile = pysam.AlignmentFile("-", "wb", template=samfile)
      
      for aln in samfile:
          ys= aln.reference_end
          if not ys:
              ys= -1
          aln.setTag('YS', ys)
          outfile.write(aln)
      
      samfile.close()
      outfile.close()
      sys.exit()
      Last edited by dariober; 03-20-2015, 06:06 AM. Reason: Use reference_end

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Advanced Methods for the Detection of Infectious Disease
        by seqadmin




        The recent pandemic caused worldwide health, economic, and social disruptions with its reverberations still felt today. A key takeaway from this event is the need for accurate and accessible tools for detecting and tracking infectious diseases. Timely identification is essential for early intervention, managing outbreaks, and preventing their spread. This article reviews several valuable tools employed in the detection and surveillance of infectious diseases.
        ...
        11-27-2023, 01:15 PM
      • seqadmin
        Strategies for Investigating the Microbiome
        by seqadmin




        Microbiome research has led to the discovery of important connections to human and environmental health. Sequencing has become a core investigational tool in microbiome research, a subject that we covered during a recent webinar. Our expert speakers shared a number of advancements including improved experimental workflows, research involving transmission dynamics, and invaluable analysis resources. This article recaps their informative presentations, offering insights...
        11-09-2023, 07:02 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, 12-01-2023, 09:55 AM
      0 responses
      21 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 11-30-2023, 10:48 AM
      0 responses
      20 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 11-29-2023, 08:26 AM
      0 responses
      15 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 11-29-2023, 08:12 AM
      0 responses
      17 views
      0 likes
      Last Post seqadmin  
      Working...
      X