Skip to content

Commit

Permalink
Merge branch 'dev' into docs-review
Browse files Browse the repository at this point in the history
  • Loading branch information
nebfield authored Jul 30, 2024
2 parents 3453918 + f9c4624 commit c5d0679
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 9 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
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ manifest {
description = 'The Polygenic Score Catalog Calculator is a nextflow pipeline for polygenic score calculation'
mainScript = 'main.nf'
nextflowVersion = '>=23.10.0'
version = '2.0.0-beta.1'
version = '2.0.0-beta.2'
}

// Load modules.config for DSL2 module specific options
Expand Down
2 changes: 1 addition & 1 deletion nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"format": "directory-path",
"description": "The output directory where the results will be saved. You have to use absolute paths to storage on Cloud infrastructure.",
"fa_icon": "fas fa-folder-open",
"default": "results/"
"default": "results"
},
"email": {
"type": "string",
Expand Down

0 comments on commit c5d0679

Please sign in to comment.