文件名称:alignment:用于执行(多个)序列比对的简单Python库
文件大小:7KB
文件格式:ZIP
更新时间:2024-05-30 23:39:44
Python
(多个)序列比对 例子 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
【文件预览】:
alignment-master
----alignment()
--------tests.py(1KB)
--------utils.py(551B)
--------__init__.py(168B)
--------align.py(8KB)
--------alignment.py(4KB)
----examples()
--------exp_sequences.py(388B)
--------exp_multi_sequences.py(472B)
----setup.py(357B)
----README.md(603B)