comparison 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
comparison
equal deleted inserted replaced
8:eb3af6e9f633 9:e6440d0201f7
1 import random
2
3 for i in range(50):
4 a = random.randint(0, 45000)
5 b = random.randint(0, 6000)
6 print(' '.join(map(str, [
7 'ctgA',
8 a,
9 a + random.randint(0, 5000),
10 'ctgB',
11 b,
12 b + random.randint(0, 79),
13 'value=%s' % random.randint(0, 1000),
14 ])))