Mercurial > repos > rmarenco > hubarchivecreator
diff BigWig.py @ 23:2677f1899aa8 draft
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 07210e24fe7d22f5dfc84061310280f67f781fb1-dirty
author | yating-l |
---|---|
date | Tue, 09 May 2017 15:42:43 -0400 |
parents | c02720d1afee |
children | fcc1021bd496 |
line wrap: on
line diff
--- a/BigWig.py Wed Apr 12 17:03:51 2017 -0400 +++ b/BigWig.py Tue May 09 15:42:43 2017 -0400 @@ -21,7 +21,10 @@ self.track_color = data_bigwig["track_color"] # TODO: Think about how to avoid repetition of the group_name everywhere self.group_name = data_bigwig["group_name"] - + if data_bigwig["long_label"]: + self.long_label = data_bigwig["long_label"] + else: + self.long_label = self.name_bigwig #print "Creating TrackHub BigWig from (falsePath: %s; name: %s)" % ( self.input_bigwig_path, self.name_bigwig ) trackName = "".join( ( self.name_bigwig, ".bigwig" ) ) @@ -32,7 +35,7 @@ # Create the Track Object self.createTrack(file_path=trackName, track_name=trackName, - long_label=self.name_bigwig, + long_label=self.long_label, track_type='bigWig', visibility='full', priority=self.priority, track_file=myBigWigFilePath,