Skip to content

Commit f63b2fe

Browse files
committed
add version parameter and bump version
1 parent b528669 commit f63b2fe

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

main.nf

+6
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ if (params.help){
2929
exit 0
3030
}
3131

32+
params.version = false
33+
if (params.version){
34+
println("LMAS version $workflow.manifest.version")
35+
exit 0
36+
}
37+
3238
/*
3339
========================================================================================
3440
VALIDATE INPUTS

nextflow.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ manifest {
22

33
name = "LMAS - Last Metagenomic Assembler Standing"
44
mainScript = "main.nf"
5-
version = "2.0.0"
5+
version = "2.0.1"
66
defaultBranch = 'main'
77

88
}

0 commit comments

Comments
 (0)