diff Bam.py @ 52:c66803bff0cc draft

planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit adc1ac50269e02570e7ce12c732637bdd3f9a547-dirty
author yating-l
date Thu, 11 May 2017 17:21:15 -0400
parents 364b8db8de17
children b39dd0b5a166
line wrap: on
line diff
--- a/Bam.py	Wed Apr 12 16:51:03 2017 -0400
+++ b/Bam.py	Thu May 11 17:21:15 2017 -0400
@@ -37,7 +37,10 @@
 
         # TODO: Think about how to avoid repetition of the group_name everywhere
         self.group_name = self.data_bam["group_name"]
-
+        if self.data_bam["long_label"]:
+            self.long_label = self.data_bam["long_label"]
+        else:
+            self.long_label = self.name_bam
         # First: Add the bam file
         # Second: Add the bam index file, in the same folder (https://genome.ucsc.edu/goldenpath/help/bam.html)
 
@@ -52,7 +55,7 @@
         # Create the Track Object
         self.createTrack(file_path=self.name_bam,
                          track_name=self.name_bam,
-                         long_label=self.name_bam, track_type='bam', visibility='pack', priority=self.priority,
+                         long_label=self.long_label, track_type='bam', visibility='pack', priority=self.priority,
                          track_file=bam_index_file_path,
                          track_color=self.track_color,
                          group_name=self.group_name