(多个)序列比对
例子
from alignment import multi_sequence_alignment
sequences = [ 'the quick fox jumps over the dog' . split (),
'the brown fox jumps over the lazy dog' . split (),
'the clever fox jumps over the lazy crow' . split ()]
alignment = multi_sequence_alignment ( sequences )
print ( alignment )
print ( alignment . score ())
0 1 2 3 4 5 6
2022-02-07 19:53:51
7KB
Python
1