-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #551 from maxulysse/nf_core_sentieon_license
FEAT: Add software_license profile
- Loading branch information
Showing
4 changed files
with
26 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
//Profile config names for nf-core/configs | ||
params { | ||
config_profile_description = 'Software license set up for nf-core by nf-core/configs' | ||
config_profile_contact = 'Maxime U Garcia (@maxulysse)' | ||
config_profile_url = 'https://nf-co.re' | ||
sentieon_extension = null | ||
|
||
validationSchemaIgnoreParams = "cf_ploidy,genomes,sentieon_extension,test_data" | ||
} | ||
|
||
if (params.sentieon_extension) { | ||
process { | ||
withLabel: 'sentieon' { | ||
ext.sentieon_auth_mech_base64 = secrets.SENTIEON_AUTH_MECH_BASE64 ?: '' | ||
ext.sentieon_auth_data_base64 = secrets.SENTIEON_AUTH_DATA_BASE64 ?: '' | ||
} | ||
} | ||
} |
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,5 @@ | ||
# nf-core/configs: Software licenses set up for nf-core | ||
|
||
To use, run the pipeline with `-profile software_license`. This will download and launch | ||
the [`software_license.config`](../conf/software_license.config) which has been pre-configured with a | ||
setup suitable for using _Sentieon_ within the nf-core GHA. |
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