view karyotype-colors.py @ 13:c4bde687c846 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit 0cfd88d16b0b20a66d4b21b037ddee6a8c440d88
author iuc
date Wed, 12 Apr 2023 15:09:05 +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)
        )
    )