I have an alignment of 3 sequences generated by clustalx
AAAACGT Alpha
AAA-CGT Beta
AAAAGGT Gamma
I can sliced the alignment with the predefined indexing in Biopython via align[:,:4]
However, printing the result gives:
AAAA Alpha
AAA- Beta
AAAA Gamma
How can I capture sub-alignment as without printing the names as given below?
AAAA
AAA-
AAAA
align[:,:4].seq
does not provide the output I'm looking for.