Hi,
I wish to know how I can convert the following alignment file into .aln format and save it in the local directory?
Perform a multiple sequence alignment of the PB sequences
matrix = align.SubstitutionMatrix.std_protein_blocks_matrix()
alignment, order, _, _ = align.align_multiple(
structural_sequences, matrix, gap_penalty=(-500, -100), terminal_penalty=False
)
alignment = alignment[:, order.tolist()]
thanks and best,
Ansuman