Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@

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

* Updated to Viash 0.9.4 (PR #12).

* Use dependencies in `openproblems-bio/openproblems` (PR #12).

## MINOR CHANGES

* Updated `README.md` (PR #5).
Expand Down
12 changes: 6 additions & 6 deletions _viash.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
viash_version: 0.9.0
viash_version: 0.9.4

# Step 1: Change the name of the task.
# example: task_name_of_this_task
Expand Down Expand Up @@ -75,14 +75,14 @@ authors:
linkedin: johndoe

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

config_mods: |
.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" }

repositories:
- name: core
- name: op
type: github
repo: openproblems-bio/core
tag: build/main
path: viash/core
repo: openproblems-bio/openproblems
tag: build/main # Step 8: Set this to the latest release

# Step 9: High five yourself!
4 changes: 2 additions & 2 deletions src/workflows/process_datasets/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ resources:
- path: /common/nextflow_helpers/helper.nf

dependencies:
- name: schema/verify_data_structure
repository: core
- name: validation/check_dataset_with_schema
repository: openproblems
- name: data_processors/process_dataset

runners:
Expand Down
2 changes: 1 addition & 1 deletion src/workflows/process_datasets/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ workflow run_wf {
main:
output_ch = input_ch

| verify_data_structure.run(
| check_dataset_with_schema.run(
fromState: { id, state ->
def schema = findArgumentSchema(meta.config, "input")
def schemaYaml = tempFile("schema.yaml")
Expand Down
4 changes: 2 additions & 2 deletions src/workflows/run_benchmark/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ resources:
path: /_viash.yaml

dependencies:
- name: h5ad/extract_uns_metadata
repository: core
- name: utils/extract_uns_metadata
repository: op
- name: control_methods/true_labels
- name: methods/logistic_regression
- name: metrics/accuracy
Expand Down