Skip to content

Commit f5f0406

Browse files
committed
Merge remote-tracking branch 'origin/develop_0_9' into port_integers_as_doubles
2 parents baa804e + 90ea37b commit f5f0406

2 files changed

Lines changed: 18 additions & 10 deletions

File tree

docs/paper/paper.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,37 @@
22
title: 'Viash: A meta-framework for building reusable workflow modules'
33
bibliography: library.bib
44
authors:
5-
- name: Robrecht Cannoodt
5+
- given-names: Robrecht
6+
surname: Cannoodt
67
email: robrecht@data-intuitive.com
78
orcid: 0000-0003-3641-729X
89
corresponding: yes
910
affiliation: 1, 2, 3
10-
- name: Hendrik Cannoodt
11+
- given-names: Hendrik
12+
surname: Cannoodt
1113
orcid: 0000-0002-0032-6719
1214
affiliation: '1'
13-
- name: Dries Schaumont
15+
- given-names: Dries
16+
surname: Schaumont
1417
orcid: 0000-0002-4389-0440
1518
affiliation: '1'
16-
- name: Kai Waldrant
19+
- given-names: Kai
20+
surname: Waldrant
1721
orcid: 0009-0003-8555-1361
1822
affiliation: '1'
19-
- name: Eric Van de Kerckhove
23+
- given-names: Eric
24+
surname: Van de Kerckhove
2025
affiliation: '1'
21-
- name: Andy Boschmans
26+
- given-names: Andy
27+
surname: Boschmans
2228
orcid: 0009-0008-8793-4661
2329
affiliation: '1'
24-
- name: Dries De Maeyer
30+
- given-names: Dries
31+
surname: De Maeyer
2532
orcid: 0000-0002-1314-3348
2633
affiliation: '4'
27-
- name: Toni Verbeiren
34+
- given-names: Toni
35+
surname: Verbeiren
2836
email: toni@data-intuitive.com
2937
orcid: 0000-0002-7007-6866
3038
corresponding: yes

src/main/scala/io/viash/runners/nextflow/NextflowHelper.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ object NextflowHelper {
7373
.replace("'''", "\\'\\'\\'")
7474

7575
// IMPORTANT! difference between code below and BashWrapper:
76-
// script is stored as `.viash_script.sh`.
76+
// script is stored as `.viash_script.${ext}`.
7777
val scriptPath = "$tempscript"
7878

7979
val executionCode =
8080
s"""set -e
81-
|tempscript=".viash_script.sh"
81+
|tempscript=".viash_script.${res.companion.extension}"
8282
|cat > "$scriptPath" << VIASHMAIN
8383
|$escapedCode
8484
|VIASHMAIN

0 commit comments

Comments
 (0)