view karyotype-from-lengths.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 e6cbe3190642
children
line wrap: on
line source

#!/usr/bin/env python
import csv
import sys


idx = 0
with open(sys.argv[1], "r") as csvfile:
    spamreader = csv.reader(csvfile, delimiter="\t", quotechar='"')
    for row in spamreader:
        if len(row) < 2:
            continue

        seq_id = row[0]
        length = row[1]

        sys.stdout.write(
            "chr	-	{seq_id}	{seq_id}	0	{length}	chr{idx}color\n".format(
                seq_id=seq_id, idx=idx, length=length
            )
        )
        idx += 1