Mercurial > repos > iuc > control_freec
view ratio2circos.py @ 1:2c6349fb175c draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/freec commit a8b671c0a0d277296751dd2ae403603bea1c58dd"
author | iuc |
---|---|
date | Tue, 18 Aug 2020 08:52:45 -0400 |
parents | e46944a59b31 |
children |
line wrap: on
line source
import math import sys ploidy = int(sys.argv[1]) with open("./output/sample.bam_ratio.BedGraph") as bed: with open("./output/sample.bam_ratio_log2_circos.txt", "w+") as olog2r: for line in bed.readlines(): ls = line.split() if ls[0] != "track" and float(ls[3]) > 0: log2_ratio = math.log2(float(ls[3]) / ploidy) olog2r.write("{}\t{}\t{}\t{}\n".format(ls[0], ls[1], ls[2], log2_ratio)) with open("./genome.fa.fai") as fai: with open("./output/karyotype_circos.txt", "w+") as ochr: for line in fai.readlines(): ls = line.split() ochr.write("chr - {}\t{}\t0\t{}\t{}\n".format(ls[0], ls[0].strip("chr").lower(), ls[1], ls[0]))