I have multiple strings representing protein sequences ( for example ADADAAA
,ADADDDCDAA
and ACCC
), I want to realize MSA on those such that resulting sequences have the same length. Biopython documentation seems only to explain how to handle already formed Multi aligned sequences.
Asked
Active
Viewed 120 times
0

Chris_Rands
- 38,994
- 14
- 83
- 119

nprime496
- 66
- 2
- 6
-
Your link is for biopython alignment objects. Check here: https://biopython.org/wiki/AlignIO – Ghoti Mar 03 '21 at 16:51
-
4@Ghoti `Bio.AlignIO` is only for *parsing* alignments, they want alignment tools like `from Bio.Align.Applications import ClustalwCommandline` – Chris_Rands Mar 04 '21 at 21:06