Skip to content

Commit

Permalink
Bump bioconda prefix to conda packages
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 19, 2024
1 parent 2ec8849 commit 87dfd9e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/fastqc/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ params.outdir = 'results'

process FASTQC {
tag "FASTQC on $sample_id"
conda 'fastqc=0.12.1'
conda 'bioconda::fastqc=0.12.1'
publishDir params.outdir, mode:'copy'

input:
Expand Down
2 changes: 1 addition & 1 deletion modules/index/main.nf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

process INDEX {
tag "$transcriptome.simpleName"
conda 'salmon=1.10.2'
conda 'bioconda::salmon=1.10.2'

input:
path transcriptome
Expand Down
2 changes: 1 addition & 1 deletion modules/multiqc/main.nf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
params.outdir = 'results'

process MULTIQC {
conda 'multiqc=1.17'
conda 'bioconda::multiqc=1.17'
publishDir params.outdir, mode:'copy'

input:
Expand Down
2 changes: 1 addition & 1 deletion modules/quant/main.nf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

process QUANT {
tag "$pair_id"
conda 'salmon=1.10.2'
conda 'bioconda::salmon=1.10.2'

input:
path index
Expand Down

0 comments on commit 87dfd9e

Please sign in to comment.