comparison glimmer_glimmer_to_gff.py @ 1:2529762847c3 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/glimmer commit a4b0969b33a68a0ea9ba12291f6694aec24f13ed
author iuc
date Tue, 30 Oct 2018 18:47:19 -0400
parents 4da5f6bdcf12
children
comparison
equal deleted inserted replaced
0:4da5f6bdcf12 1:2529762847c3
21 for line in input_file: 21 for line in input_file:
22 line = line.strip() 22 line = line.strip()
23 if line[0] == '>': 23 if line[0] == '>':
24 header = line[1:] 24 header = line[1:]
25 else: 25 else:
26 (id, start, end, frame, score) = re.split('\s+', line) 26 (id, start, end, frame, score) = re.split(r'\s+', line)
27 if int(end) > int(start): 27 if int(end) > int(start):
28 strand = '+' 28 strand = '+'
29 else: 29 else:
30 strand = '-' 30 strand = '-'
31 (start, end) = (end, start) 31 (start, end) = (end, start)