使用Biopython读取fastq文件
文章目录使用Biopython读取fastq文件读取fastq文件,输出碱基序列和预测的准确度这里是具体代码的结果使用Biopython读取fastq文件读取fastq文件,输出碱基序列和预测的准确度from Bio import SeqIOwith open("./data2/ERR000020_2.fastq") as handle: record = SeqIO.parse(handle,"fastq") for lin in record: print("l
原创
2021-03-25 10:33:21 ·
3114 阅读 ·
0 评论