haiferry的个人博客分享 http://blog.sciencenet.cn/u/haiferry


  • 中国科学院,动物研究所,博士

    • 生命科学->细胞生物学->细胞增殖、生长与分化

    扫一扫,分享此博客主页
你需要登录后才可以留言 登录 | 注册


统计信息

已有 40942 人来访过

  • 积分: 50
  • 威望: --
  • 金币: 50
  • 活跃度: 4800
  • 好友: 4
  • 主题: --
  • 博文: 13
  • 相册: --
  • 分享: 1
小的爬虫程序 2016-03-01
#!/usr/bin/python # coding:utf8 import re import urllib import urllib2 def getHtml(url):    html1= urllib.urlopen(url.decode( ...
(1828)次阅读|(0)个评论
python 字符串替换 2015-12-15
Python 替换字符串里的部分内容 例如 NM_66789.4 ,去掉后面的 .4, 只保留前面部分 #!/usr/bin/python f=open('gene_id.txt') f1=f.readlines ...
(1974)次阅读|(0)个评论
python Consensus and Profile 2015-11-24
A matrix is arectangular table of values divided into rows and columns. An m×n matrixhas m rows and n columns. Given a matrix A, wewrite Ai,j to ...
(3183)次阅读|(0)个评论
R语言做散点图 2015-11-24
R 语言做散点图,以 txt 文件里的每两列作比较 setwd("D:/") a=read.table("3.txt",header=TRUE,sep="t") a1=as.data.frame(a) colnames(a1) ...
(3770)次阅读|(0)个评论
R语言进行T检验 2015-11-22
用 R 语言进行 T 检验,以两组数据为例 a1=c(1,1,1) a2=c(0.72905715,0.756032,0.700832) t.test(a1,a2,paired=T)
(2998)次阅读|(0)个评论
python Finding a Motif in DNA 2015-11-20
Finding a Motif in DNA   Combing Through the Haystack click to expand Problem Given two strings s and t, t isa substring of s if t i ...
(2771)次阅读|(0)个评论
python 删除匹配特定字符的行 2015-11-19
python 删除匹配特定字符的行   #!/usr/bin/python f=open("1.txt","r") f1=open("2.txt","w") f3=f.readlines() for i in f3: ...
(6487)次阅读|(0)个评论
python 处理文本 2015-11-19
Python               处理文件中的数值,比较一行中每一列的大小,以四列文本为基础,输出第一和第二列均小于第三和第四 ...
(2727)次阅读|(0)个评论

查看更多

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-3-28 23:01

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部