comparison tiles-from-gff3.py @ 6:740057a5126d draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit 1584882716a1d2c598e8485da9d73bcf80d9b29a"
author iuc
date Fri, 01 May 2020 07:28:50 -0400
parents 014a21767ac4
children
comparison
equal deleted inserted replaced
5:a64dc31ab7f2 6:740057a5126d
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)),