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
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ resources:
type: nextflow_script
entrypoint: run_wf
dependencies:
- name: methods/simplemlp_train
- name: methods/simplemlp_predict
- name: methods/simple_mlp_train
- name: methods/simple_mlp_predict
runners:
- type: nextflow
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ workflow run_wf {
main:
output_ch = input_ch

| simplemlp_train.run(
| simple_mlp_train.run(
fromState: ["input_train_mod1", "input_train_mod2"],
toState: ["input_model": "output"]
)

| simplemlp_predict.run(
| simple_mlp_predict.run(
fromState: ["input_train_mod2", "input_test_mod1", "input_model", "input_transform"],
toState: ["output": "output"]
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__merge__: /src/api/comp_method_predict.yaml
name: simplemlp_predict
name: simple_mlp_predict

info:
test_setup:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
'output': 'output/prediction'
}
meta = {
'config': 'target/executable/methods/simplemlp_predict/.config.vsh.yaml',
'resources_dir': 'target/executable/methods/simplemlp_predict',
'config': 'target/executable/methods/simple_mlp_predict/.config.vsh.yaml',
'resources_dir': 'target/executable/methods/simple_mlp_predict',
'cpus': 10
}
## VIASH END
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__merge__: /src/api/comp_method_train.yaml
name: simplemlp_train
name: simple_mlp_train
resources:
- type: python_script
path: script.py
Expand Down
Loading