Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate from core to openproblems #11

Merged
merged 2 commits into from
Nov 20, 2024
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
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