Mercurial > repos > rmarenco > hubarchivecreator
view Track.py @ 21:884ee2a71680 draft
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 6ac76e7da539ca1773fb809054679f0bf8a06972-dirty
| author | yating-l | 
|---|---|
| date | Wed, 12 Apr 2017 15:05:33 -0400 | 
| parents | c02720d1afee | 
| children | 
line wrap: on
 line source
#!/usr/bin/python # TODO: Is this still useful? class Track(object): """Class to manage the track informations needed for Track Hub, in the TrackDb text file""" def __init__(self, trackFile=None, trackDb=None): self.trackFile = trackFile self.trackDb = trackDb
