# HG changeset patch # User yating-l # Date 1498851857 14400 # Node ID a0fc8379223caacbccb91c2187bfd86998920c90 # Parent b39dd0b5a166a4149c351143a42c8cf529ec6e22 planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 72268f816f10341dbe3f6b33f8d9170d859c9697 diff -r b39dd0b5a166 -r a0fc8379223c Bed.py --- a/Bed.py Fri Jun 30 14:49:14 2017 -0400 +++ b/Bed.py Fri Jun 30 15:44:17 2017 -0400 @@ -43,7 +43,9 @@ with open(myBigBedFilePath, 'w') as self.bigBedFile: subtools.bedToBigBed(self.sortedBedFile.name, self.chromSizesFile.name, - self.bigBedFile.name) + self.bigBedFile.name, + extraIndex='name' + ) # Create the Track Object self.createTrack(file_path=trackName, diff -r b39dd0b5a166 -r a0fc8379223c BedSimpleRepeats.py --- a/BedSimpleRepeats.py Fri Jun 30 14:49:14 2017 -0400 +++ b/BedSimpleRepeats.py Fri Jun 30 15:44:17 2017 -0400 @@ -43,7 +43,8 @@ self.chromSizesFile.name, bigBedFile.name, typeOption='bed4+12', - autoSql=auto_sql_option + autoSql=auto_sql_option, + extraIndex='name' ) # Create the Track Object diff -r b39dd0b5a166 -r a0fc8379223c BedSpliceJunctions.py --- a/BedSpliceJunctions.py Fri Jun 30 14:49:14 2017 -0400 +++ b/BedSpliceJunctions.py Fri Jun 30 15:44:17 2017 -0400 @@ -42,7 +42,8 @@ self.chromSizesFile.name, bigBedFile.name, typeOption='bed12+1', - autoSql=auto_sql_option + autoSql=auto_sql_option, + extraIndex='name' ) # Create the Track Object diff -r b39dd0b5a166 -r a0fc8379223c Gff3.py --- a/Gff3.py Fri Jun 30 14:49:14 2017 -0400 +++ b/Gff3.py Fri Jun 30 15:44:17 2017 -0400 @@ -56,7 +56,8 @@ bigBedFile.name, autoSql=auto_sql_option, typeOption='bed12+8', - tab=True) + tab=True, + extraIndex='name') # Create the Track Object self.createTrack(file_path=trackName, diff -r b39dd0b5a166 -r a0fc8379223c Gtf.py --- a/Gtf.py Fri Jun 30 14:49:14 2017 -0400 +++ b/Gtf.py Fri Jun 30 15:44:17 2017 -0400 @@ -67,7 +67,8 @@ bigBedFile.name, autoSql=auto_sql_option, typeOption='bed12+8', - tab=True) + tab=True, + extraIndex='name') # Create the Track Object diff -r b39dd0b5a166 -r a0fc8379223c Psl.py --- a/Psl.py Fri Jun 30 14:49:14 2017 -0400 +++ b/Psl.py Fri Jun 30 15:44:17 2017 -0400 @@ -49,7 +49,8 @@ big_psl_file.name, autoSql=auto_sql_option, typeOption='bed12+12', - tab=True) + tab=True, + extraIndex='name') # Create the Track Object self.createTrack(file_path=trackName, diff -r b39dd0b5a166 -r a0fc8379223c templates/trackDb/layout.txt --- a/templates/trackDb/layout.txt Fri Jun 30 14:49:14 2017 -0400 +++ b/templates/trackDb/layout.txt Fri Jun 30 15:44:17 2017 -0400 @@ -70,6 +70,6 @@ priority ${trackDb.priority} color ${trackDb.track_color} group ${trackDb.group_name.lower().replace(' ', '_')} - +searchIndex name % endif % endfor