Skip to content

Commit

Permalink
fix deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
t0mdavid-m committed Dec 15, 2024
1 parent 934a686 commit d69921b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def execution(self) -> None:

# Check if a decoy database needs to be generated
tagger_params = self.executor.parameter_manager.get_parameters_from_json()['FLASHTnT']
if ((tagger_params.get('tnt:prsm_fdr', 1) < 1) or (tagger_params.get('tnt:pro_fdr', 1) < 1)):
if ((tagger_params.get('prsm_fdr', 1) < 1) or (tagger_params.get('pro_fdr', 1) < 1)):
# If few proteins are present increase decoy size
if self.executor.parameter_manager.get_parameters_from_json()['few_proteins']:
ratio = 10
Expand Down

0 comments on commit d69921b

Please sign in to comment.