-
Notifications
You must be signed in to change notification settings - Fork 3
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 #37 from nf-core/nf-core-template-merge-3.1.2
Important! Template update for nf-core/tools v3.1.2
- Loading branch information
Showing
14 changed files
with
109 additions
and
52 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
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 |
---|---|---|
|
@@ -10,3 +10,4 @@ testing/ | |
testing* | ||
*.pyc | ||
bin/ | ||
ro-crate-metadata.json |
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
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
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 |
---|---|---|
|
@@ -215,14 +215,13 @@ env { | |
} | ||
|
||
// Set bash options | ||
process.shell = """\ | ||
bash | ||
set -e # Exit if a tool returns a non-zero status/exit code | ||
set -u # Treat unset variables and parameters as an error | ||
set -o pipefail # Returns the status of the last command to exit with a non-zero status or zero if all successfully execute | ||
set -C # No clobber - prevent output redirection from overwriting files. | ||
""" | ||
process.shell = [ | ||
"bash", | ||
"-C", // No clobber - prevent output redirection from overwriting files. | ||
"-e", // Exit if a tool returns a non-zero status/exit code | ||
"-u", // Treat unset variables and parameters as an error | ||
"-o pipefail" // Returns the status of the last command to exit with a non-zero status or zero if all successfully execute | ||
] | ||
|
||
// Disable process selector warnings by default. Use debug profile to enable warnings. | ||
nextflow.enable.configProcessNamesValidation = false | ||
|
@@ -248,13 +247,15 @@ manifest { | |
name = 'nf-core/pairgenomealign' | ||
contributors = [ | ||
[ | ||
name: 'Charles Plessy', | ||
affiliation: 'Okinawa Institute of Science and Technology Graduate University (OIST)', | ||
email: '[email protected]', | ||
github: 'charles-plessy', | ||
contribution: ['author'], // List of contribution types ('author', 'maintainer' or 'contributor') | ||
orcid: '0000-0001-7410-6295' | ||
], | ||
[ | ||
name: 'Mohammed Mahdi', | ||
affiliation: 'Okinawa Institute of Science and Technology Graduate University (OIST)', | ||
email: '[email protected]', | ||
github: 'U13bs1125', | ||
|
@@ -267,13 +268,13 @@ manifest { | |
mainScript = 'main.nf' | ||
defaultBranch = 'master' | ||
nextflowVersion = '!>=24.10.1' | ||
version = '1.1.1' | ||
version = '2.0.0~dev' | ||
doi = '' | ||
} | ||
|
||
// Nextflow plugins | ||
plugins { | ||
id 'nf-schema@2.1.1' // Validation of pipeline parameters and creation of an input channel from a sample sheet | ||
id 'nf-schema@2.3.0' // Validation of pipeline parameters and creation of an input channel from a sample sheet | ||
} | ||
|
||
validation { | ||
|
Oops, something went wrong.