Skip to content

Commit

Permalink
making sure all is commited
Browse files Browse the repository at this point in the history
  • Loading branch information
Matiss Ozols committed Oct 23, 2024
1 parent 8080649 commit 172a480
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 17 deletions.
4 changes: 4 additions & 0 deletions conf/qc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,10 @@ params{
run_process=false
}

seurat_integration{
run_process=false
}

bbknn{
run_process = true
description = 'Parameters for BBKNN'
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/modules/totalVi/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ process TOTAL_VI_INTEGRATION{
label 'process_medium'
}

publishDir path: "${outdir_prev}/clustering/totalVi",
publishDir path: "${outdir_prev}/totalVi",
mode: "${params.copy_mode}",
overwrite: "true"

Expand Down
34 changes: 18 additions & 16 deletions subworkflows/qc.nf
Original file line number Diff line number Diff line change
Expand Up @@ -110,24 +110,26 @@ workflow qc {
matched_donors.subscribe { println "1:: matched_donors $it" }
PREPROCESS_PROCESS(inp4,params.reduced_dims.vars_to_regress.value)

DSB_INTEGRATE(
PREPROCESS_PROCESS.out.tmp_rsd.collect(),
params.reduced_dims.vars_to_regress.value,
params.reduced_dims.seurat_integration.k_anchor,
params.reduced_dims.seurat_integration.dims,
params.reduced_dims.seurat_integration.ndim_sct,
params.reduced_dims.seurat_integration.ndim_citeBgRemoved,
params.reduced_dims.seurat_integration.ndim_cite_integrated
if(params.seurat_integration.run_process){
DSB_INTEGRATE(
PREPROCESS_PROCESS.out.tmp_rsd.collect(),
params.reduced_dims.vars_to_regress.value,
params.reduced_dims.seurat_integration.k_anchor,
params.reduced_dims.seurat_integration.dims,
params.reduced_dims.seurat_integration.ndim_sct,
params.reduced_dims.seurat_integration.ndim_citeBgRemoved,
params.reduced_dims.seurat_integration.ndim_cite_integrated
)

MULTIMODAL_INTEGRATION(
DSB_INTEGRATE.out.tmp_rds_file,
)

MULTIMODAL_INTEGRATION(
DSB_INTEGRATE.out.tmp_rds_file,
)

VDJ_INTEGRATION(
chanel_cr_outs.collect(),
MULTIMODAL_INTEGRATION.out.wnn_integrated_file
)
VDJ_INTEGRATION(
chanel_cr_outs.collect(),
MULTIMODAL_INTEGRATION.out.wnn_integrated_file
)
}
}


Expand Down

0 comments on commit 172a480

Please sign in to comment.