Entering edit mode
6.8 years ago
manishagupta293
•
0
How i can extract Indels out from two aligned DNA sequences using python or biopython?
How i can extract Indels out from two aligned DNA sequences using python or biopython?
SeqFIRE does what you want https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3394284/
Otherwise you could use samtools view
to view them.
samtools view -h in.bam \
| awk '$1 ~ "^@" || $6 ~ "I|D"' \
| samtools view -b - > out.bam
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
SeqFIRE use protein alignments. But we want to use DNA alignment only. Is their a way to extract indels using BioPython?