-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #577 from viash-io/develop_0_8
Release Viash 0.8.0
- Loading branch information
Showing
18 changed files
with
432 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name := "viash" | ||
|
||
version := "0.8.0-RC6" | ||
version := "0.8.0" | ||
|
||
scalaVersion := "2.13.10" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/test/resources/testnextflowvdsl3/src/sub_workflow/config.vsh.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
functionality: | ||
name: sub_workflow | ||
arguments: | ||
- name: "--file" | ||
type: file | ||
direction: input | ||
- name: "--output" | ||
type: file | ||
direction: output | ||
resources: | ||
- type: nextflow_script | ||
path: main.nf | ||
entrypoint: base | ||
dependencies: | ||
- name: step1 | ||
platforms: | ||
- type: nextflow |
16 changes: 16 additions & 0 deletions
16
src/test/resources/testnextflowvdsl3/src/sub_workflow/main.nf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
workflow base { | ||
take: input_ch | ||
main: | ||
|
||
output_ch = input_ch | ||
| step1.run( | ||
fromState: ["input": "file"], | ||
toState: { id, output, state -> | ||
def newState = ["output": output.output] | ||
return newState | ||
} | ||
) | ||
|
||
emit: | ||
output_ch | ||
} |
15 changes: 15 additions & 0 deletions
15
src/test/resources/testnextflowvdsl3/src/test_wfs/concurrency/config.vsh.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
functionality: | ||
name: concurrency | ||
namespace: test_wfs | ||
resources: | ||
- type: nextflow_script | ||
path: main.nf | ||
entrypoint: base | ||
# TODO: make absolute when the ns build uses the right CWD | ||
- path: ../../../resources | ||
dependencies: | ||
- name: step1 | ||
- name: step2 | ||
- name: step3 | ||
platforms: | ||
- type: nextflow |
Oops, something went wrong.