Mercurial > repos > yating-l > hub_test
comparison TrackDb.py @ 0:abcfd662b679 draft default tip
planemo upload for repository https://github.com/Yating-L/hubarchivecreator-test.git commit 199ae2b10f3b3e58cb4d4a3b9fb4b35db415c538-dirty
| author | yating-l |
|---|---|
| date | Thu, 22 Dec 2016 17:53:00 -0500 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:abcfd662b679 |
|---|---|
| 1 #!/usr/bin/python | |
| 2 | |
| 3 class TrackDb(object): | |
| 4 """docstring for TrackDb""" | |
| 5 | |
| 6 def __init__(self, trackName="", longLabel="", shortLabel="", trackDataURL="", trackType="", visibility="", | |
| 7 thickDrawItem='off', priority="0", track_color="#000000", group_name="Default"): | |
| 8 super(TrackDb, self).__init__() | |
| 9 | |
| 10 self.trackName = trackName | |
| 11 self.longLabel = longLabel | |
| 12 self.shortLabel = shortLabel | |
| 13 self.trackDataURL = trackDataURL | |
| 14 self.trackType = trackType | |
| 15 self.visibility = visibility | |
| 16 self.thickDrawItem = thickDrawItem | |
| 17 self.priority = priority | |
| 18 self.track_color = track_color | |
| 19 self.group_name = group_name |
