-
Notifications
You must be signed in to change notification settings - Fork 2
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 #18 from B-UMMI/dev-dsl2
LMAS 2.0.0: Update to DSL2
- Loading branch information
Showing
29 changed files
with
1,856 additions
and
1,331 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -160,3 +160,4 @@ docs/resources/.DS_Store | |
.DS_Store | ||
results/ | ||
report/ | ||
!modules/ |
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,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
# This is a wrapper around LMAS-nf. | ||
# By default `LMAS` will attempt to execute the main Nextflow pipeline. | ||
# If no user input is provided, it prints the help message | ||
|
||
# If no user input, print usage | ||
if [[ $# == 0 ]]; then | ||
nextflow run main.nf --help | ||
exit | ||
fi | ||
|
||
# Run the pipeline | ||
nextflow run main.nf $@ |
Oops, something went wrong.