Skip to content

Commit

Permalink
fix references to renamed components
Browse files Browse the repository at this point in the history
  • Loading branch information
rcannood committed Oct 25, 2024
1 parent 1af28fb commit 73f3c22
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ dependencies:
- name: datasets/processors/pca
- name: datasets/processors/hvg
- name: datasets/processors/knn
- name: common/extract_metadata
- name: utils/extract_uns_metadata
# test_resources:
# - type: nextflow_script
# path: main.nf
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ dependencies:
- name: datasets/processors/pca
- name: datasets/processors/hvg
- name: datasets/processors/knn
- name: common/extract_metadata
- name: utils/extract_uns_metadata
# test_resources:
# - type: nextflow_script
# path: main.nf
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,6 @@ dependencies:
- name: datasets/normalization/sqrt_cp
- name: datasets/normalization/l1_sqrt
- name: datasets/processors/subsample
- name: common/extract_metadata
- name: utils/extract_uns_metadata
runners:
- type: nextflow
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,6 @@ dependencies:
- name: datasets/normalization/sqrt_cp
- name: datasets/normalization/l1_sqrt
- name: datasets/processors/subsample
- name: common/extract_metadata
- name: utils/extract_uns_metadata
runners:
- type: nextflow
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,6 @@ dependencies:
- name: datasets/normalization/sqrt_cp
- name: datasets/normalization/l1_sqrt
- name: datasets/processors/subsample
- name: common/extract_metadata
- name: utils/extract_uns_metadata
runners:
- type: nextflow
2 changes: 1 addition & 1 deletion src/reporting/process_dataset_metadata/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ for LOADER in $(aws s3 ls $DATASET_DIR); do

# start the
NXF_VER=23.10.0 nextflow run . \
-main-script target/nextflow/common/process_dataset_metadata/run/main.nf \
-main-script target/nextflow/reporting/process_dataset_metadata/main.nf \
-profile docker \
-c src/wf_utils/labels_ci.config \
--id "extract_metadata" \
Expand Down
7 changes: 1 addition & 6 deletions src/reporting/process_task_results/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ workflow run_wf {
main:
output_ch = input_ch

| get_task_info.run(
key: "task_info",
fromState: [
| get_task_info.run(
"input": "input_task_info"
],
toState: ["output_task": "output"]
Expand All @@ -22,30 +21,26 @@ workflow run_wf {
| get_method_info.run(
fromState: [
"input": "input_method_configs",
"task_id" : "task_id"
],
toState: ["output_method": "output"]
)

| get_metric_info.run(
fromState: [
"input": "input_metric_configs",
"task_id" : "task_id"
],
toState: ["output_metric": "output"]
)

| get_dataset_info.run(
fromState: [
"task_id" : "task_id",
"input": "input_dataset_info",
],
toState: ["output_dataset": "output"]
)

| get_results.run(
fromState: [
"task_id": "task_id",
"input_scores": "input_scores",
"input_execution": "input_execution",
"input_dataset_info": "output_dataset",
Expand Down
2 changes: 1 addition & 1 deletion src/reporting/process_task_results/run_nf_tower_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ HERE
tw launch https://github.com/openproblems-bio/openproblems.git \
--revision main_build \
--pull-latest \
--main-script target/nextflow/common/workflows/transform_meta/main.nf \
--main-script target/nextflow/reporting/process_task_results/main.nf \
--workspace 53907369739130 \
--compute-env 6TeIFgV5OY4pJCk8I0bfOh \
--params-file /tmp/params.yaml \
Expand Down
2 changes: 1 addition & 1 deletion src/reporting/process_task_results/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ for TASK in "denoising" "dimensionality_reduction" "batch_integration" "label_pr

# start the run
NXF_VER=23.10.0 nextflow run . \
-main-script target/nextflow/common/process_task_results/run/main.nf \
-main-script target/nextflow/reporting/process_task_results/main.nf \
-profile docker \
-resume \
-c src/wf_utils/labels_ci.config \
Expand Down

0 comments on commit 73f3c22

Please sign in to comment.