Mercurial > repos > yating-l > hubarchivecreator
comparison TrackDb.py @ 72:2440ce10848b draft
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit a60f8496cccf4c5a07ba7d75876198eda997f07d
author | yating-l |
---|---|
date | Wed, 27 Sep 2017 15:34:20 -0400 |
parents | b724e559907e |
children |
comparison
equal
deleted
inserted
replaced
71:b724e559907e | 72:2440ce10848b |
---|---|
65 if not extraSettings: | 65 if not extraSettings: |
66 extraSettings = collections.OrderedDict() | 66 extraSettings = collections.OrderedDict() |
67 if not "color" in extraSettings: | 67 if not "color" in extraSettings: |
68 extraSettings["color"] = "#000000" | 68 extraSettings["color"] = "#000000" |
69 extraSettings["color"] = TrackDb.getRgb(extraSettings["color"]) | 69 extraSettings["color"] = TrackDb.getRgb(extraSettings["color"]) |
70 if not "group" in extraSettings: | 70 if not "group" in extraSettings or not extraSettings["group"]: |
71 extraSettings["group"] = "Default group" | 71 extraSettings["group"] = "Default group" |
72 if not "thickDrawItem" in extraSettings: | 72 if not "thickDrawItem" in extraSettings: |
73 extraSettings["thickDrawItem"] = "off" | 73 extraSettings["thickDrawItem"] = "off" |
74 | 74 |
75 def get(self, item_name): | 75 def get(self, item_name): |