Skip to content

Commit

Permalink
Merge pull request #1311 from maxulysse/local_modules
Browse files Browse the repository at this point in the history
update local modules
  • Loading branch information
maxulysse authored Nov 3, 2023
2 parents d6a1230 + 9d6bd9b commit a1355ea
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#1280](https://github.com/nf-core/sarek/pull/1280) - Replacing link to `SentieonDNAscopeModel1.1.model` in Sentieon's S3 with link to same file in igenomes' S3
- [#1303](https://github.com/nf-core/sarek/pull/1303) - Ressurect vep_version params and changed its scope to pipeline to enable usage for vep loftee plugin
- [#1304](https://github.com/nf-core/sarek/pull/1304) - Update modules
- [#1311](https://github.com/nf-core/sarek/pull/1311) - Update local modules with an `environment.yml` file

### Fixed

Expand Down
6 changes: 6 additions & 0 deletions modules/local/add_info_to_vcf/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
channels:
- conda-forge
- bioconda
- defaults
dependencies:
- anaconda::gawk=5.1.0
2 changes: 1 addition & 1 deletion modules/local/add_info_to_vcf/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process ADD_INFO_TO_VCF {
tag "$meta.id"
label 'process_single'

conda "anaconda::gawk=5.1.0"
conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/gawk:5.1.0' :
'biocontainers/gawk:5.1.0' }"
Expand Down
6 changes: 6 additions & 0 deletions modules/local/build_intervals/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
channels:
- conda-forge
- bioconda
- defaults
dependencies:
- anaconda::gawk=5.1.0
2 changes: 1 addition & 1 deletion modules/local/build_intervals/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process BUILD_INTERVALS {
tag "$meta.id"
label 'process_single'

conda "anaconda::gawk=5.1.0"
conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/gawk:5.1.0' :
'biocontainers/gawk:5.1.0' }"
Expand Down
6 changes: 6 additions & 0 deletions modules/local/create_intervals_bed/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
channels:
- conda-forge
- bioconda
- defaults
dependencies:
- anaconda::gawk=5.1.0
2 changes: 1 addition & 1 deletion modules/local/create_intervals_bed/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process CREATE_INTERVALS_BED {
tag "$intervals"
label 'process_single'

conda "anaconda::gawk=5.1.0"
conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/gawk:5.1.0' :
'biocontainers/gawk:5.1.0' }"
Expand Down

0 comments on commit a1355ea

Please sign in to comment.