view TrackDb.py @ 28:6aa28a85cc38 draft

planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 5bbecd016ad3a784ad030cb82a09a3ac40dc6060
author yating-l
date Mon, 10 Jul 2017 17:08:38 -0400
parents df42241d3731
children 7e8a8b732db3
line wrap: on
line source

#!/usr/bin/python

class TrackDb(object):
    """docstring for TrackDb"""

    def __init__(self, trackName="", longLabel="", shortLabel="", trackDataURL="", trackType="", visibility="",
                 thickDrawItem='off', priority="0", track_color="#000000", group_name="Default", database=""):
        super(TrackDb, self).__init__()

        self.trackName = trackName
        self.longLabel = longLabel
        self.shortLabel = shortLabel
        self.trackDataURL = trackDataURL
        self.trackType = trackType
        self.visibility = visibility
        self.thickDrawItem = thickDrawItem
        self.priority = priority
        self.track_color = track_color
        self.group_name = group_name
        self.database = database