
python
jiejieyuy
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
使用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 · 3166 阅读 · 0 评论 -
python3连接数据库
python3的连接数据库代码:我用的是本地服务器的mysql来进行连接。# encoding=utf-8import pymysql# db= pymysql.connect(# host='root',# passwd='#####',# db="excel",# charset='utf8')db = pymysql.connect("loca...原创 2018-03-18 23:45:07 · 198 阅读 · 0 评论