本文整理汇总了Python中paleomix.common.formats.msa.MSA.join方法的典型用法代码示例。如果您正苦于以下问题:Python MSA.join方法的具体用法?Python MSA.join怎么用?Python MSA.join使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类paleomix.common.formats.msa.MSA
的用法示例。
在下文中一共展示了MSA.join方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _run
# 需要导入模块: from paleomix.common.formats.msa import MSA [as 别名]
# 或者: from paleomix.common.formats.msa.MSA import join [as 别名]
def _run(self, _config, temp):
merged_msas = []
for (name, files_dd) in sorted(self._infiles.iteritems()):
partitions = files_dd["partitions"]
msas = dict((key, []) for key in partitions)
for filename in files_dd["filenames"]:
msa = MSA.from_file(filename)
if self._excluded:
msa = msa.exclude(self._excluded)
for (key, msa_part) in msa.split(partitions).iteritems():
msas[key].append(msa_part)
msas.pop("X", None)
for (key, msa_parts) in sorted(msas.iteritems()):
merged_msa = MSA.join(*msa_parts)
if self._reduce:
merged_msa = merged_msa.reduce()
if merged_msa is not None:
merged_msas.append(("%s_%s" % (name, key),
merged_msa))
out_fname_phy = reroot_path(temp, self._out_prefix + ".phy")
with open(out_fname_phy, "w") as output_phy:
final_msa = MSA.join(*(msa for (_, msa) in merged_msas))
output_phy.write(interleaved_phy(final_msa))
partition_end = 0
out_fname_parts = reroot_path(temp, self._out_prefix + ".partitions")
with open(out_fname_parts, "w") as output_part:
for (name, msa) in merged_msas:
length = msa.seqlen()
output_part.write("DNA, %s = %i-%i\n"
% (name,
partition_end + 1,
partition_end + length))
partition_end += length
示例2: test_msa_join__missing_arguments
# 需要导入模块: from paleomix.common.formats.msa import MSA [as 别名]
# 或者: from paleomix.common.formats.msa.MSA import join [as 别名]
def test_msa_join__missing_arguments():
MSA.join()
示例3: test_msa_join__three_msa
# 需要导入模块: from paleomix.common.formats.msa import MSA [as 别名]
# 或者: from paleomix.common.formats.msa.MSA import join [as 别名]
def test_msa_join__three_msa():
expected = MSA((FASTA("nc", None, "ACGTGAAAG"),
FASTA("nm", None, "TGACTTGAG"),
FASTA("miRNA", None, "UCAGACCAU")))
result = MSA.join(_JOIN_MSA_1, _JOIN_MSA_2, _JOIN_MSA_3)
assert_equal(result, expected)
示例4: test_msa_join__two_msa
# 需要导入模块: from paleomix.common.formats.msa import MSA [as 别名]
# 或者: from paleomix.common.formats.msa.MSA import join [as 别名]
def test_msa_join__two_msa():
expected = MSA((FASTA("nc", None, "ACGTGA"),
FASTA("nm", None, "TGACTT"),
FASTA("miRNA", None, "UCAGAC")))
result = MSA.join(_JOIN_MSA_1, _JOIN_MSA_2)
assert_equal(result, expected)
示例5: test_msa_join__single_msa
# 需要导入模块: from paleomix.common.formats.msa import MSA [as 别名]
# 或者: from paleomix.common.formats.msa.MSA import join [as 别名]
def test_msa_join__single_msa():
result = MSA.join(_JOIN_MSA_1)
assert_equal(result, _JOIN_MSA_1)