写一段计算fasta长度的脚本 Python
时间: 2023-03-11 13:59:16 浏览: 166
Remove-duplicate-fasta:Python脚本删除重复的Fasta序列
脚本如下:f = open("fasta.txt", "r")
seqs = f.readlines()for seq in seqs:
print("长度:",len(seq))f.close()
阅读全文
Remove-duplicate-fasta:Python脚本删除重复的Fasta序列