Mercurial > repos > iuc > circos
view karyotype-from-lengths.py @ 12:7b64033fb9b1 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit e3d1aad2204a3385aa66f3b0625747151e9f94e8"
| author | iuc |
|---|---|
| date | Mon, 22 Nov 2021 12:22:19 +0000 |
| parents | b7c1698df177 |
| children |
line wrap: on
line source
#!/usr/bin/env python import csv import sys idx = 0 with open(sys.argv[1], "r") as csvfile: spamreader = csv.reader(csvfile, delimiter="\t", quotechar='"') for row in spamreader: if len(row) < 2: continue seq_id = row[0] length = row[1] sys.stdout.write( "chr - {seq_id} {seq_id} 0 {length} chr{idx}color\n".format( seq_id=seq_id, idx=idx, length=length ) ) idx += 1
