Mercurial > repos > xuebing > bed_size_stat
view bed_size_stat.py @ 1:b1da797d49a5
Uploaded
author | xuebing |
---|---|
date | Sat, 31 Mar 2012 14:02:27 -0400 |
parents | |
children | cce2eabe8b8d |
line wrap: on
line source
''' plot histogram of interval size ''' import os,sys inputfile = sys.argv[1] outputfile = sys.argv[2] rf = open('tmp.r','w') rf.write("x <- read.table('"+inputfile+"')\n") rf.write("len <- x[,3]-x[,2]\n") rf.write("pdf('"+outputfile+"')\n") rf.write("hist(len,breaks=100,xlab='interval size',main=paste('mean=',mean(len),sep=''))\n") rf.write("dev.off()") rf.close() os.system("R --vanilla < tmp.r") os.system('rm tmp.r')