Skip to content

Commit

Permalink
disable invalid __merge__ statements
Browse files Browse the repository at this point in the history
  • Loading branch information
rcannood committed Sep 2, 2024
1 parent 81b5330 commit 2077bda
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 72 deletions.
2 changes: 1 addition & 1 deletion src/data_processors/process_dataset/config.vsh.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__merge__: ../../api/comp_data_processor.yaml
__merge__: /src/api/comp_process_dataset.yaml
name: process_dataset
status: disabled
arguments:
Expand Down
40 changes: 20 additions & 20 deletions src/workflows/process_datasets/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,26 @@ namespace: workflows
status: disabled

argument_groups:
- name: Inputs
arguments:
- name: "--input"
__merge__: /src/api/file_common_dataset.yaml
required: true
direction: input
- name: Outputs
arguments:
- name: "--output_train"
__merge__: /src/api/file_train_h5ad.yaml
required: true
direction: output
- name: "--output_test"
__merge__: /src/api/file_test_h5ad.yaml
required: true
direction: output
- name: "--output_solution"
__merge__: /src/api/file_solution.yaml
required: true
direction: output
# - name: Inputs
# arguments:
# - name: "--input"
# __merge__: /src/api/file_common_dataset.yaml
# required: true
# direction: input
# - name: Outputs
# arguments:
# - name: "--output_train"
# __merge__: /src/api/file_train_h5ad.yaml
# required: true
# direction: output
# - name: "--output_test"
# __merge__: /src/api/file_test_h5ad.yaml
# required: true
# direction: output
# - name: "--output_solution"
# __merge__: /src/api/file_solution.yaml
# required: true
# direction: output

resources:
- type: nextflow_script
Expand Down
102 changes: 51 additions & 51 deletions src/workflows/run_benchmark/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,57 +4,57 @@ namespace: workflows
status: disabled

argument_groups:
- name: Inputs
arguments:
- name: "--input_train"
__merge__: /src/api/file_train_h5ad.yaml
type: file
direction: input
required: true
- name: "--input_test"
__merge__: /src/api/file_test_h5ad.yaml
type: file
direction: input
required: true
- name: "--input_solution"
__merge__: /src/api/file_solution.yaml
type: file
direction: input
required: true
- name: Outputs
arguments:
- name: "--output_scores"
type: file
required: true
direction: output
description: A yaml file containing the scores of each of the methods
default: score_uns.yaml
- name: "--output_method_configs"
type: file
required: true
direction: output
default: method_configs.yaml
- name: "--output_metric_configs"
type: file
required: true
direction: output
default: metric_configs.yaml
- name: "--output_dataset_info"
type: file
required: true
direction: output
default: dataset_uns.yaml
- name: "--output_task_info"
type: file
required: true
direction: output
default: task_info.yaml
- name: Methods
arguments:
- name: "--method_ids"
type: string
multiple: true
description: A list of method ids to run. If not specified, all methods will be run.
# - name: Inputs
# arguments:
# - name: "--input_train"
# __merge__: /src/api/file_train_h5ad.yaml
# type: file
# direction: input
# required: true
# - name: "--input_test"
# __merge__: /src/api/file_test_h5ad.yaml
# type: file
# direction: input
# required: true
# - name: "--input_solution"
# __merge__: /src/api/file_solution.yaml
# type: file
# direction: input
# required: true
# - name: Outputs
# arguments:
# - name: "--output_scores"
# type: file
# required: true
# direction: output
# description: A yaml file containing the scores of each of the methods
# default: score_uns.yaml
# - name: "--output_method_configs"
# type: file
# required: true
# direction: output
# default: method_configs.yaml
# - name: "--output_metric_configs"
# type: file
# required: true
# direction: output
# default: metric_configs.yaml
# - name: "--output_dataset_info"
# type: file
# required: true
# direction: output
# default: dataset_uns.yaml
# - name: "--output_task_info"
# type: file
# required: true
# direction: output
# default: task_info.yaml
# - name: Methods
# arguments:
# - name: "--method_ids"
# type: string
# multiple: true
# description: A list of method ids to run. If not specified, all methods will be run.

resources:
- type: nextflow_script
Expand Down

0 comments on commit 2077bda

Please sign in to comment.