-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into batch-resourcelimit-update
- Loading branch information
Showing
5 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters