view karyotype-colors.py @ 11:31a35811dda6 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit b9ec351920dbc83fa14bd1f8cfdd0a6a19b89473"
author iuc
date Tue, 16 Nov 2021 09:20:08 +0000
parents 4b519282a05b
children
line wrap: on
line source

#!/usr/bin/env python
import sys


highest = int(sys.argv[1])
for idx in range(highest + 1):
    sys.stdout.write(
        "chr{idx}color = lch(66,104,{pos})\n".format(
            idx=idx, pos=int(float(idx) / highest * 360)
        )
    )