Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TES Config #755

Merged
merged 10 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ jobs:
- "self_hosted_runner"
- "seg_globe"
- "software_license"
- "tes"
- "tigem"
- "tubingen_apg"
- "tufts"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ Currently documentation is available for the following systems:
- [SEG_GLOBE](docs/seg_globe.md)
- [self-hosted-runner](docs/self-hosted-runner.md)
- [Super Computing Wales](docs/scw.md)
- [GA4GH TES](docs/tes.md)
- [TIGEM](docs/tigem.md)
- [TUBINGEN_APG](docs/tubingen_apg.md)
- [TUFTS](docs/tufts.md)
Expand Down
23 changes: 23 additions & 0 deletions conf/tes.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
//Nextflow config file for running on TES Backend
process {
executor = "tes"
}

params {
config_profile_description = 'GA4GH TES Profile'
config_profile_contact = 'Venkat Malladi (@vsmalladi)'
config_profile_url = 'https://github.com/ga4gh/task-execution-schemas'

// TES
endpoint = null
basicUsername = null
basicPassword = null
}

tes {
endpoint = params.endpoint
basicUsername = params.basicUsername
basicPassword = params.basicPassword
}


19 changes: 19 additions & 0 deletions docs/tes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# nf-core/configs: GA4GH TES Configuration

To be used with the `tes` profile by specifying the `-profile tes` when running nf-core pipelines.
Custom endpoints and authentication need to be supplied with `params.endpoint`, `params.basicUsername`, `params.basicPassword`.
Additionally you will need to add the `-plugin nf-ga4gh` at command line to import the correct plugin.

## Required Parameters

### `--endpoint`

URL of TES endpoint.

### `--basicUsername`

Username for authentication for TES endpoint.

### `--basicPassword`

Password for authentication for TES endpoint.
3 changes: 3 additions & 0 deletions nfcore_custom.config
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,9 @@ profiles {
software_license {
includeConfig "${params.custom_config_base}/conf/software_license.config"
}
tes {
includeConfig "${params.custom_config_base}/conf/tes.config"
}
tigem {
includeConfig "${params.custom_config_base}/conf/tigem.config"
}
Expand Down
Loading