comparison karyotype-from-lengths.py @ 8:e6cbe3190642 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit cc96dd4a8aef7d0b6d3057024af0344ab8a9410f"
author iuc
date Fri, 12 Jun 2020 10:39:58 -0400
parents 4b519282a05b
children
comparison
equal deleted inserted replaced
7:4b519282a05b 8:e6cbe3190642
13 seq_id = row[0] 13 seq_id = row[0]
14 length = row[1] 14 length = row[1]
15 15
16 sys.stdout.write( 16 sys.stdout.write(
17 "chr - {seq_id} {seq_id} 0 {length} chr{idx}color\n".format( 17 "chr - {seq_id} {seq_id} 0 {length} chr{idx}color\n".format(
18 seq_id=seq_id, 18 seq_id=seq_id, idx=idx, length=length
19 idx=idx,
20 length=length,
21 ) 19 )
22 ) 20 )
23 idx += 1 21 idx += 1