view generate_links.py @ 9:e6440d0201f7 draft default tip

planemo upload for repository https://github.com/TAMU-CPT/galaxy-circos-tool commit 7e335df423e3e06da3d33a5378a336a149e6cc6c
author eric-rasche
date Fri, 30 Jun 2017 06:48:38 -0400
parents
children
line wrap: on
line source

import random

for i in range(50):
    a = random.randint(0, 45000)
    b = random.randint(0, 6000)
    print(' '.join(map(str, [
        'ctgA',
        a,
        a + random.randint(0, 5000),
        'ctgB',
        b,
        b + random.randint(0, 79),
        'value=%s' % random.randint(0, 1000),
    ])))