view karyotype-colors.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
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)
        )
    )