Skip to content

Commit

Permalink
int
Browse files Browse the repository at this point in the history
  • Loading branch information
bio-la committed Mar 26, 2024
1 parent 2a1b863 commit aa09db9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions panpipes/panpipes/pipeline_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def run_scvi(outfile):
# cannot use the normal method for importing params from yaml, because it only works up to depth 2
# fetch seeds
scvi_params = PARAMS['rna']['scvi']
cmd += " --scvi_seed %s" % scvi_params['seed']
cmd += " --scvi_seed %i" % scvi_params['seed']
neighbor_params = PARAMS['rna']['neighbors']
if neighbor_params['method'] is not None:
cmd += " --neighbors_method %s" % neighbor_params['method']
Expand Down Expand Up @@ -554,7 +554,7 @@ def run_totalvi(outfile):
--figdir figures/
"""
scvi_params = PARAMS['multimodal']['totalvi']
cmd += " --scvi_seed %s" % scvi_params['seed']
cmd += " --scvi_seed %i" % scvi_params['seed']


if PARAMS['multimodal_column_categorical'] is not None:
Expand Down Expand Up @@ -595,7 +595,7 @@ def run_multivi(outfile):
--figdir figures/
"""
scvi_params = PARAMS['multimodal']['MultiVI']
cmd += " --scvi_seed %s" % scvi_params['seed']
cmd += " --scvi_seed %i" % scvi_params['seed']


if PARAMS['multimodal_column_categorical'] is not None:
Expand Down

0 comments on commit aa09db9

Please sign in to comment.