Skip to content

Commit

Permalink
remove default anaconda channels (#342)
Browse files Browse the repository at this point in the history
* remove default anaconda channels

* use nodefaults in all conda environment files
  • Loading branch information
nebfield authored Jul 30, 2024
1 parent 9f675c0 commit ad835ae
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 7 deletions.
4 changes: 2 additions & 2 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ process {
}

withLabel: plink2 {
ext.conda = "bioconda::plink2==2.00a5.10"
ext.conda = "$projectDir/environments/plink2/environment.yml"
ext.docker = 'ghcr.io/pgscatalog/plink2'
ext.singularity = 'oras://ghcr.io/pgscatalog/plink2'
ext.docker_version = ':2.00a5.10'
Expand All @@ -67,7 +67,7 @@ process {
}

withLabel: pyyaml {
ext.conda = "conda-forge::pyyaml==6.0"
ext.conda = "$projectDir/environments/pyyaml/environment.yml"
ext.singularity = 'oras://ghcr.io/pgscatalog/pyyaml'
ext.singularity_version = ':6.0-singularity'
ext.docker = 'ghcr.io/pgscatalog/pyyaml'
Expand Down
3 changes: 2 additions & 1 deletion environments/fraposa/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ name: fraposa-pgsc
channels:
- conda-forge
- bioconda
- nodefaults
dependencies:
- fraposa-pgsc=1.0.0
- fraposa-pgsc=1.0.0
3 changes: 2 additions & 1 deletion environments/pgscatalog_utils/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ name: pgscatalog-utils
channels:
- conda-forge
- bioconda
- nodefaults
dependencies:
- pgscatalog-utils=1.2.0
- pgscatalog-utils=1.2.0
7 changes: 7 additions & 0 deletions environments/plink2/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: plink2
channels:
- conda-forge
- bioconda
- nodefaults
dependencies:
- plink2==2.00a5.10
4 changes: 2 additions & 2 deletions environments/pyyaml/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ name: pyyaml
channels:
- conda-forge
- bioconda
- defaults
- nodefaults
dependencies:
- pyyaml=6.0.1
- pyyaml=6.0.1
1 change: 1 addition & 0 deletions environments/report/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: report
channels:
- conda-forge
- bioconda
- nodefaults
dependencies:
- r-jsonlite
- r-dplyr
Expand Down
3 changes: 2 additions & 1 deletion environments/zstd/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ name: zstd
channels:
- conda-forge
- bioconda
- nodefaults
dependencies:
- zstd=1.4.8
- zstd=1.4.8

0 comments on commit ad835ae

Please sign in to comment.