This is a test version of Biostars. For the public version, visit https://www.biostars.org.
python code to do pairwise sequence alignment

from Bio import pairwise2 alignments = pairwise2.align.globalxx("ACCGT", "ACG") print(alignments)

output [('ACCGT', 'A-CG-', 3.0, 0, 5), ('ACCGT', 'AC-G-', 3.0, 0, 5)]

Is it possible to get ACCGT A_CG_ OR ACCGT AC_G_ [PYTHON 3 ]

sequence alignment

0 answers

No answers yet.

Log in to answer this question.