Mercurial > repos > yating-l > jbrowsearchivecreator
comparison datatypes/Datatype.py @ 13:43a700afd457 draft
planemo upload for repository https://github.com/goeckslab/jbrowse-archive-creator.git commit bcb239c4045d2c47a8acad5fbd29eea03663e187
author | yating-l |
---|---|
date | Tue, 19 Jun 2018 17:59:51 -0400 |
parents | 5d5fdcb798da |
children |
comparison
equal
deleted
inserted
replaced
12:9161beae834f | 13:43a700afd457 |
---|---|
96 self.trackType = self.trackSettings["trackType"] | 96 self.trackType = self.trackSettings["trackType"] |
97 if self.trackSettings["group_name"]: | 97 if self.trackSettings["group_name"]: |
98 self.extraSettings["category"] = self.trackSettings["group_name"] | 98 self.extraSettings["category"] = self.trackSettings["group_name"] |
99 if "track_color" in self.trackSettings and self.trackSettings["track_color"]: | 99 if "track_color" in self.trackSettings and self.trackSettings["track_color"]: |
100 self.extraSettings["color"] = self.trackSettings["track_color"] | 100 self.extraSettings["color"] = self.trackSettings["track_color"] |
101 #store information of whether to generate name index for the track | |
102 self.extraSettings["nameIndex"] = self.trackSettings["nameIndex"] | |
101 | 103 |
102 | 104 |
103 @abc.abstractmethod | 105 @abc.abstractmethod |
104 def createTrack(self): | 106 def createTrack(self): |
105 """Create the final track file""" | 107 """Create the final track file""" |