Skip to content

Commit 99f146a

Browse files
committed
update nextflow version
1 parent 724e6da commit 99f146a

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jdk: openjdk8
44
services: docker
55

66
env:
7-
- NXF_VER=0.31.0
7+
- NXF_VER=0.32.0
88
- NXF_VER=''
99

1010
before_install:

main.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def compileLatex_ascii() {
8888

8989
def compileLatexMessage() {
9090
// Display compile-latex message
91-
log.info "compile-latex ~ ${params.version} - " + this.grabRevision() + (workflow.commitId ? " [$workflow.commitId]" : "")
91+
log.info "compile-latex ~ ${workflow.manifest.version} - " + this.grabRevision() + (workflow.commitId ? " [$workflow.commitId]" : "")
9292
}
9393

9494
def grabRevision() {
@@ -134,7 +134,7 @@ def minimalInformationMessage() {
134134

135135
def nextflowMessage() {
136136
// Nextflow message (version + build)
137-
log.info "N E X T F L O W ~ version" + workflow.nextflow.version + " " + workflow.nextflow.build
137+
log.info "N E X T F L O W ~ version " + workflow.nextflow.version + " " + workflow.nextflow.build
138138
}
139139

140140
def startMessage() {

nextflow.config

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66
*/
77

88
manifest {
9-
description = 'Compile LaTeX'
9+
description = 'Compile LaTeX Beamer documents'
1010
homePage = 'https://github.com/MaxUlysse/compile-latex'
11-
nextflowVersion = '>=0.31.0'
11+
nextflowVersion = '>=0.32.0'
12+
author = 'MaxUlysse'
13+
version = '2.1.1'
1214
}
1315

1416
params {
@@ -20,7 +22,6 @@ params {
2022
outName = ''
2123
pictures = 'pictures'
2224
tag = '2.0'
23-
version = '2.1'
2425
}
2526

2627
process {

0 commit comments

Comments
 (0)