Skip to content

Commit

Permalink
Migrate from core to openproblems (#11)
Browse files Browse the repository at this point in the history
* switch from core to openproblems

* fix script
  • Loading branch information
rcannood authored Nov 20, 2024
1 parent 1bda9ca commit efd296b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions _viash.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,5 @@ config_mods: |
repositories:
- name: core
type: github
repo: openproblems-bio/core
repo: openproblems-bio/openproblems
tag: build/main
path: viash/core
2 changes: 1 addition & 1 deletion scripts/run_benchmark/run_test_seqeracloud.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cat > /tmp/params.yaml << 'HERE'
input_states: s3://openproblems-data/resources_test/task_batch_integration/**/state.yaml
rename_keys: 'input_dataset:output_dataset;input_solution:output_solution'
output_state: "state.yaml"
publish_dir: s3://openproblems-nextflow/temp/task_batch_integration/
publish_dir: s3://openproblems-work/temp/task_batch_integration/
HERE

tw launch https://github.com/openproblems-bio/task_batch_integration.git \
Expand Down
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 @@ -26,8 +26,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 @@ -70,8 +70,8 @@ resources:
- path: /common/nextflow_helpers/helper.nf

dependencies:
- name: h5ad/extract_uns_metadata
repository: core
- name: utils/extract_uns_metadata
repository: openproblems
# control methods
- name: control_methods/embed_cell_types
- name: control_methods/embed_cell_types_jittered
Expand Down

0 comments on commit efd296b

Please sign in to comment.