Skip to content

Commit 1663b62

Browse files
authored
update viash and repos (#12)
1 parent 8c60c7c commit 1663b62

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818

1919
* Updated configs, components and CI to the latest Viash version (PR #8).
2020

21+
* Updated to Viash 0.9.4 (PR #12).
22+
23+
* Use dependencies in `openproblems-bio/openproblems` (PR #12).
24+
2125
## MINOR CHANGES
2226

2327
* Updated `README.md` (PR #5).

_viash.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
viash_version: 0.9.0
1+
viash_version: 0.9.4
22

33
# Step 1: Change the name of the task.
44
# example: task_name_of_this_task
@@ -75,14 +75,14 @@ authors:
7575
linkedin: johndoe
7676

7777
# Step 7: Remove all of the comments of the steps you completed
78-
# Step 8: High five yourself!
7978

8079
config_mods: |
8180
.runners[.type == "nextflow"].config.labels := { lowmem : "memory = 20.Gb", midmem : "memory = 50.Gb", highmem : "memory = 100.Gb", lowcpu : "cpus = 5", midcpu : "cpus = 15", highcpu : "cpus = 30", lowtime : "time = 1.h", midtime : "time = 4.h", hightime : "time = 8.h", veryhightime : "time = 24.h" }
8281
8382
repositories:
84-
- name: core
83+
- name: op
8584
type: github
86-
repo: openproblems-bio/core
87-
tag: build/main
88-
path: viash/core
85+
repo: openproblems-bio/openproblems
86+
tag: build/main # Step 8: Set this to the latest release
87+
88+
# Step 9: High five yourself!

src/workflows/process_datasets/config.vsh.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ resources:
3030
- path: /common/nextflow_helpers/helper.nf
3131

3232
dependencies:
33-
- name: schema/verify_data_structure
34-
repository: core
33+
- name: validation/check_dataset_with_schema
34+
repository: openproblems
3535
- name: data_processors/process_dataset
3636

3737
runners:

src/workflows/process_datasets/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ workflow run_wf {
1414
main:
1515
output_ch = input_ch
1616

17-
| verify_data_structure.run(
17+
| check_dataset_with_schema.run(
1818
fromState: { id, state ->
1919
def schema = findArgumentSchema(meta.config, "input")
2020
def schemaYaml = tempFile("schema.yaml")

src/workflows/run_benchmark/config.vsh.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ resources:
6262
path: /_viash.yaml
6363

6464
dependencies:
65-
- name: h5ad/extract_uns_metadata
66-
repository: core
65+
- name: utils/extract_uns_metadata
66+
repository: op
6767
- name: control_methods/true_labels
6868
- name: methods/logistic_regression
6969
- name: metrics/accuracy

0 commit comments

Comments
 (0)