Skip to content

Commit

Permalink
Merge pull request #28 from PacificBiosciences/bugfix_process_conda_env
Browse files Browse the repository at this point in the history
bug fix with process conda environment (forgot to use)
  • Loading branch information
proteinosome authored Feb 14, 2023
2 parents 949eb72 + 2db7697 commit 37de968
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,7 @@ process collect_QC_skip_cutadapt {
process prepare_qiime2_manifest {
label 'cpu_def'
publishDir "$params.outdir/results/", mode: params.publish_dir_mode
conda (params.enable_conda ? "$projectDir/env/pb-16s-pbtools.yml" : null)
container "kpinpb/pb-16s-nf-tools:latest"

input:
Expand Down Expand Up @@ -380,6 +381,7 @@ process prepare_qiime2_manifest {
process prepare_qiime2_manifest_skip_cutadapt {
label 'cpu_def'
publishDir "$params.outdir/results/", mode: params.publish_dir_mode
conda (params.enable_conda ? "$projectDir/env/pb-16s-pbtools.yml" : null)
container "kpinpb/pb-16s-nf-tools:latest"

input:
Expand Down Expand Up @@ -436,6 +438,7 @@ process import_qiime2 {
// Merge sample manifest file for final vis purpose later on
process merge_sample_manifest {
label 'cpu_def'
conda (params.enable_conda ? "$projectDir/env/pb-16s-pbtools.yml" : null)
container "kpinpb/pb-16s-nf-tools:latest"

input:
Expand Down

0 comments on commit 37de968

Please sign in to comment.