1. 首页
  2. 考试认证
  3. 其它
  4. Evaluating Genome Assembly计算用于评估基因组组装的一些统计数据

Evaluating Genome Assembly计算用于评估基因组组装的一些统计数据

上传者: 2024-12-22 15:23:28上传 ZIP文件 2.89KB 热度 6次

评估基因组组装计算一些用于评估基因组组装的统计数据。依赖项: numpymatplotlib

用法:


import sys

from matplotlib import pyplot

from stats import AssemblyStatistics

# 输入的contig文件,格式为FASTA

inputFile = sys.argv[1]

out = AssemblyStatistics(inputFile)



# 组装的L50

l50 = out.L50()



# 组装的N50

n50 = out.N50()

L50N50是常用的基因组组装评估指标,用于衡量组装的质量。

下载地址
用户评论