Skip to content

Commit

Permalink
build(#4078): Move conda environment to yml
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Oct 24, 2023
1 parent ef007b1 commit 69ac995
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions modules/nf-core/bowtie/align/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: nf-core-bowtie/align
channels:
- conda-forge
- bioconda
- defaults

dependencies:
- bioconda::bowtie=1.3.0
- bioconda::samtools=1.16.1
2 changes: 1 addition & 1 deletion modules/nf-core/bowtie/align/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process BOWTIE_ALIGN {
tag "$meta.id"
label 'process_high'

conda "bioconda::bowtie=1.3.0 bioconda::samtools=1.16.1"
conda "./environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/mulled-v2-ffbf83a6b0ab6ec567a336cf349b80637135bca3:c84c7c55c45af231883d9ff4fe706ac44c479c36-0' :
'biocontainers/mulled-v2-ffbf83a6b0ab6ec567a336cf349b80637135bca3:c84c7c55c45af231883d9ff4fe706ac44c479c36-0' }"
Expand Down

0 comments on commit 69ac995

Please sign in to comment.