Entering edit mode
                    4.3 years ago
        mnsp088
        
    
        ▴
    
    100
    Hi all,
I ran TBLASTN (query=protein, subject=nucleotide) and got the following result:
qseqid       sseqid     pident      sstart  send    evalue  
MP_11765    contig_17   95.322      5460    5221    0
I noticed that sstart > ssend meaning this query is mapping on the reverse complement of the subject. In this case how can I pull out the DNA sequence from my subject nucleotide file that corresponds to this hit? Any ideas on a program that can do this?
Thank you.
I tried pulling out strand info by adding ''sstrand" in my tblastn command below however this just results in a column of N/As
Hmmmmmm!!
I am not sure why this is happening but you can add strand information manually for the blast output. Simple awk should work. Something like this,
I didn't think about adding them in manually but this works! Thank you!