We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b528669 commit f63b2feCopy full SHA for f63b2fe
main.nf
@@ -29,6 +29,12 @@ if (params.help){
29
exit 0
30
}
31
32
+params.version = false
33
+if (params.version){
34
+ println("LMAS version $workflow.manifest.version")
35
+ exit 0
36
+}
37
+
38
/*
39
========================================================================================
40
VALIDATE INPUTS
nextflow.config
@@ -2,7 +2,7 @@ manifest {
2
3
name = "LMAS - Last Metagenomic Assembler Standing"
4
mainScript = "main.nf"
5
- version = "2.0.0"
+ version = "2.0.1"
6
defaultBranch = 'main'
7
8
0 commit comments