Skip to content

Commit

Permalink
Added metadata option to the postprocessing module file
Browse files Browse the repository at this point in the history
  • Loading branch information
Mamie committed Jul 15, 2024
1 parent d104cbf commit 51f127a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions modules/postprocessing/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ process POSTPROCESSING {
python ${baseDir}/bin/postprocessing.py \
${scvi_h5ad} \
${params.experiment.name ? params.experiment.name + '_' : ''}postprocessing.h5ad \
--n_pca_components ${params.postprocessing.n_pca_components}
--n_pca_components ${params.postprocessing.n_pca_components} \
--metadata ${params.postprocessing.metadata}
python ${baseDir}/bin/postprocessing.py \
${scvi_h5ad} \
${params.experiment.name ? params.experiment.name + '_' : ''}postprocessing_scvi.h5ad \
--use_scvi
--use_scvi \
--metadata ${params.postprocessing.metadata}
"""
}

0 comments on commit 51f127a

Please sign in to comment.