Skip to content

Commit

Permalink
disable cbioportal download test
Browse files Browse the repository at this point in the history
  • Loading branch information
ypriverol committed Apr 26, 2024
1 parent e454c3d commit 25e6adc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pypgatk/proteogenomics/spectrumai.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ def __init__(self, config_data, pipeline_arguments):
self._mzml_path = self.get_validate_parameters(variable=self.CONFIG_MZML_PATH, default_value=False)
self._mzml_files = self.get_validate_parameters(variable=self.CONFIG_MZML_FILES, default_value=False)
self._ions_tolerance = self.get_validate_parameters(variable=self.CONFIG_IONS_TOLERANCE, default_value=0.02)

## check if ions_tolerance is string, convert to float
if isinstance(self._ions_tolerance, str):
self._ions_tolerance = float(self._ions_tolerance)

self._relative = self.get_validate_parameters(variable=self.CONFIG_RELATIVE, default_value=False)
self._mztab = self.get_validate_parameters(variable=self.CONFIG_MZTAB, default_value=False)
self._number_of_processes = self.get_validate_parameters(variable=self.CONFIG_NUMBER_OF_PROCESSES,
Expand Down

0 comments on commit 25e6adc

Please sign in to comment.