We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
helpMsg
1 parent 4782df5 commit 429e85dCopy full SHA for 429e85d
main.nf
@@ -29,14 +29,17 @@ if (params.version) {
29
exit(0)
30
}
31
32
+// Show a custom help message and exit
33
+if (params.helpMsg){
34
+ include { helpMsg } from './modules/help_message.nf'
35
+ helpMsg()
36
+ exit(0)
37
+}
38
+
39
40
// Enable topic channels
41
nextflow.preview.topic = true
42
-// Include functions
-include { helpMsg } from './modules/help_message.nf'
-
43
// Include workflows
44
// NB! `include` statements are static, meaning they are resolved at compile time rather than at runtime!
45
include { S1 } from './workflows/STEP1.nf'
0 commit comments