Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • BLAT or BLAST: output SNPs between reference and query?

    When using either BLAT or BLAST, does anyone know of a tool or script that takes the output from the alignment and calculates the positions of difference between the reference and query?

    For example, BOWTIE returns something like this for each result: 64:G>N,66:G>N

    It is possible to write perl or something to parse the output of BLAST or BLAT, but I'd rather not reinvent this if it's been done before.

    Thanks.

  • #2
    Here is some old <GASP>PHP</GASP> code I wrote to do something kind of similar - basically display BLAT mismatches in red and make some %identity calls in a web application. Basically it comes down to reconstructing the alignment based on the weird BLAT qStarts and tStarts coordinates.

    I am sorry for how messy this code is, but if you are forced to write this from scratch maybe it will help you get your head around the problem. BTW you can actually run PHP scripts from the command line.

    PHP Code:
    function displayAlignment($seq,$target,$db,$qName,$strand,$qStart,$qEnd,$tName,$tStart,$tEnd,$qStarts,$tStarts,$blockCount,$blockSizes,$qSize)
    {
        if(!
    $target)
        {
            
    $alignHash['alignment']='no target';
            
    $alignHash['verdict']='none';
            return(
    $alignHash);
        }
        
    $rawTargetSeq=$target;
        if(!
    $seq)
        {
            
    $alignHash['alignment']='no sequence';
            
    $alignHash['verdict']='none';
            return(
    $alignHash);
        }
        
        if(
    $strand=='-')
        {
            
    $seq=revcomp($seq);
        }
        
        
    #query sequence
        
    for($seqCnt=0,$qPos=$qStarts[0],$tPos=$tStarts[0]-$tStart;$seqCnt<sizeof($qStarts);$seqCnt++)
        {
            
    $tStarts[$seqCnt]=$tStarts[$seqCnt]-$tStart;
            
    #double gap
            
    if($qStarts[$seqCnt]>$qPos && $tStarts[$seqCnt]>$tPos)
            {
                
    $doubleGap=min($qStarts[$seqCnt]-$qPos,$tStarts[$seqCnt]-$tPos);
                for(
    $i=0;$i<$doubleGap;$i++)
                {
                    
    $qSeq.=substr($seq,$qPos+$i,1);                    
                    
    $tSeq.=substr($rawTargetSeq,$tPos+$i,1);
                }
                
    $qPos+=$doubleGap;
                
    $tPos+=$doubleGap;
            }
            if(
    $qStarts[$seqCnt]>$qPos)
            {
                for(
    $i=0;$i<$qStarts[$seqCnt]-$qPos;$i++)
                {
                    
    $tSeq.='-'#insert in query seq, next alignment block starts later
                    
    $qSeq.=substr($seq,$qPos+$i,1);
                }
            }
            if(
    $tStarts[$seqCnt]>$tPos)
            {
                for(
    $i=0;$i<$tStarts[$seqCnt]-$tPos;$i++)
                {
                    
    $qSeq.='-';
                    
    $tSeq.=substr($rawTargetSeq,$tPos+$i,1);
                }
            }
            
    $qSeq.=substr($seq,$qStarts[$seqCnt],$blockSizes[$seqCnt]);
            
    $tSeq.=substr($rawTargetSeq,$tStarts[$seqCnt],$blockSizes[$seqCnt]);
            
    $qPos=$qStarts[$seqCnt]+$blockSizes[$seqCnt];
            
    $tPos=$tStarts[$seqCnt]+$blockSizes[$seqCnt];
        }
        
        if(
    $strand=='-')
        {
            
    $qSeq=revcomp($qSeq);
            
    $tSeq=revcomp($tSeq);
        }

        
    $mismatches=0;
        
    $mismatches50=0;
        
    $mismatches100=0;
        
    $redMode=false;
        
    $alignLen=strlen($qSeq);#arbitrary, could also be tSeq
        
    for($i=0;$i<strlen($qSeq);$i++) {
            if(
    preg_match('/[NP]/i',substr($qSeq$i1)) || preg_match('/[NP]/i',substr($tSeq$i1)))
            {
                
    #do not count for or against
                
    $alignLen--;
            }
            else
            {
                if (
    strtoupper(substr($qSeq$i1)) != strtoupper(substr($tSeq$i1))) {
                    
    $mismatches++;
                    if(
    $i<50$mismatches50++;
                    if(
    $i<100$mismatches100++;
                    if(!
    $redMode)
                    {
                        
    $fqSeq.="<SPAN class=\"red\">";
                        
    $redMode=true;
                    }
                    
    $fqSeq.=substr($qSeq$i1);
                    
    $ftSeq.=substr($tSeq$i1);
                }
                else
                {    
                    if(
    $redMode)
                    {
                        
    $fqSeq.="</SPAN>";
                        
    $redMode=false;
                    }
                    
    $fqSeq.=substr($qSeq$i1);
                    
    $ftSeq.=substr($tSeq$i1);
                }
            }
        }
        if(
    $alignLen>=100)
        {
            if(
    $mismatches50<=|| $mismatches100 <=|| ((($alignLen-$mismatches)/$alignLen)*100) > 98$verdict="PASS"; else $verdict="FAIL";
            
    $stats.="<br>$mismatches50 first 50 (".(((50-$mismatches50)/50)*100)."%)<br>$mismatches100 first 100 (".(((100-$mismatches100)/100)*100)."%)<br>$mismatches total mismatches (".number_format(((($alignLen-$mismatches)/$alignLen)*100),2)."%)";
        }
        else if(
    $alignLen>=50)
        {
            if(
    $mismatches50<=|| ((($alignLen-$mismatches)/$alignLen)*100) > 98$verdict="PASS"; else $verdict="FAIL";
            
    $stats.="<br>$mismatches50 first 50 (".(((50-$mismatches50)/50)*100)."%)<br>$mismatches total mismatches (".number_format(((($alignLen-$mismatches)/$alignLen)*100),2)."%)";
        }
        else
        {
            if(
    $mismatches==0$verdict="PASS"; else $verdict.="FAIL";
            
    $stats.="<br>$mismatches total mismatches (".number_format(((($alignLen-$mismatches)/$alignLen)*100),2)."%)";
        }
        
            
    $alignment.=$stats;
            
    $alignment.="<br>query: ".$fqSeq;
            
    $alignment.="<br>target:".$ftSeq;
        
    #fclose($fa);
        
    if(strlen($alignment)<8000)
            
    $alignHash['alignment']=$alignment;
        else
            
    $alignHash['alignment']='too long to display';
        
    $alignHash['verdict']=$verdict;
        return(
    $alignHash);

    --
    Jeremy Leipzig
    Bioinformatics Programmer
    --
    My blog
    Twitter

    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...
      05-06-2024, 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, 05-10-2024, 06:35 AM
    0 responses
    19 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-09-2024, 02:46 PM
    0 responses
    22 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-07-2024, 06:57 AM
    0 responses
    21 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-06-2024, 07:17 AM
    0 responses
    21 views
    0 likes
    Last Post seqadmin  
    Working...
    X