view karyotype-colors.py @ 10:7f13dc906cb9 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit 164c36ba98fe4cd293e035efca00a9efa885a7ec"
author iuc
date Mon, 11 Oct 2021 10:09:51 +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)
        )
    )