Skip to content

Commit

Permalink
Merge branch 'master' into workflow-output-dsl
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed May 12, 2024
2 parents f8957dd + fe97300 commit f54b6c8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
1 change: 1 addition & 0 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
* enables modules
*/
nextflow.enable.dsl = 2

nextflow.preview.output = true

/*
Expand Down
5 changes: 4 additions & 1 deletion modules/rnaseq.nf
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ workflow RNASEQ {

emit:
QUANT.out | concat(FASTQC.out) | collect
}

publish:
FASTQC.out >> '.'
}
11 changes: 8 additions & 3 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
manifest {
description = 'Proof of concept of a RNA-seq pipeline implemented with Nextflow'
author = 'Paolo Di Tommaso'
nextflowVersion = '>=23.04.0'
nextflowVersion = '>=23.10.0'
}

/*
Expand All @@ -34,10 +34,15 @@ profiles {
process.container = 'quay.io/nextflow/rnaseq-nf:v1.2.1'
}

/*
* NOTE: requires nextflow 24.03.0-edge or later
*/
wave {
wave.enabled = true
wave.strategy = ['conda']
conda.channels = 'seqera,conda-forge,bioconda,defaults'
wave.strategy = 'conda'
wave.freeze = true
apptainer.ociAutoPull = true
singularity.ociAutoPull = true
}

docker {
Expand Down

0 comments on commit f54b6c8

Please sign in to comment.