Skip to content

Commit

Permalink
Remove debugging stuff, since everything works inside of docker
Browse files Browse the repository at this point in the history
  • Loading branch information
dpryan79 committed Jun 27, 2017
1 parent bc13a16 commit ab11273
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions lib/galaxy/datatypes/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -677,8 +677,6 @@ def load_external_metadata_tool( self, toolbox ):
def set_default_values( self ):
# Default values.
if not self.datatypes_by_extension:
# 'fastq' : sequence.Fastq(),
# 'fastqsanger' : sequence.FastqSanger(),
self.datatypes_by_extension = {
'ab1' : binary.Ab1(),
'axt' : sequence.Axt(),
Expand All @@ -689,6 +687,8 @@ def set_default_values( self ):
'csfasta' : sequence.csFasta(),
'db3' : binary.SQlite(),
'fasta' : sequence.Fasta(),
'fastq' : sequence.Fastq(),
'fastqsanger' : sequence.FastqSanger(),
'eland' : tabular.Eland(),
'gemini.sqlite' : binary.GeminiSQLite(),
'gtf' : interval.Gtf(),
Expand Down Expand Up @@ -761,9 +761,6 @@ def set_default_values( self ):
# Default values - the order in which we attempt to determine data types is critical
# because some formats are much more flexibly defined than others.
if len( self.sniff_order ) < 1:
#after fasta
# sequence.FastqSanger(),
# sequence.Fastq(),
self.sniff_order = [
binary.Bam(),
binary.Sff(),
Expand All @@ -779,6 +776,8 @@ def set_default_values( self ):
qualityscore.QualityScoreSOLiD(),
qualityscore.QualityScore454(),
sequence.Fasta(),
sequence.FastqSanger(),
sequence.Fastq(),
interval.Wiggle(),
text.Html(),
sequence.Axt(),
Expand Down

0 comments on commit ab11273

Please sign in to comment.