Skip to content

Commit

Permalink
add version parameter and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
cimendes committed Mar 25, 2022
1 parent b528669 commit f63b2fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ if (params.help){
exit 0
}

params.version = false
if (params.version){
println("LMAS version $workflow.manifest.version")
exit 0
}

/*
========================================================================================
VALIDATE INPUTS
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ manifest {

name = "LMAS - Last Metagenomic Assembler Standing"
mainScript = "main.nf"
version = "2.0.0"
version = "2.0.1"
defaultBranch = 'main'

}
Expand Down

0 comments on commit f63b2fe

Please sign in to comment.