Mercurial > repos > iuc > circos
comparison tiles-from-gff3.py @ 6:b84d385679e2 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit 1584882716a1d2c598e8485da9d73bcf80d9b29a"
author | iuc |
---|---|
date | Fri, 01 May 2020 11:28:11 +0000 |
parents | 890ef899a3d7 |
children |
comparison
equal
deleted
inserted
replaced
5:5d7a5119a8e7 | 6:b84d385679e2 |
---|---|
22 | 22 |
23 kv = { | 23 kv = { |
24 "strand": 0 if not feature.location.strand else feature.location.strand, | 24 "strand": 0 if not feature.location.strand else feature.location.strand, |
25 "name": feature.qualifiers.get(attr, ["None"])[0] or feature.id, | 25 "name": feature.qualifiers.get(attr, ["None"])[0] or feature.id, |
26 "value": feature.qualifiers.get("score", [0])[0], | 26 "value": feature.qualifiers.get("score", [0])[0], |
27 "type": feature.type, | |
27 } | 28 } |
28 | 29 |
29 line = [ | 30 line = [ |
30 record.id, | 31 record.id, |
31 str(int(feature.location.start)), | 32 str(int(feature.location.start)), |