Skip to content

Commit

Permalink
fix folder names
Browse files Browse the repository at this point in the history
  • Loading branch information
rcannood committed Jan 9, 2025
1 parent 44c8829 commit ffbdcd3
Show file tree
Hide file tree
Showing 12 changed files with 8 additions and 8 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.

0 comments on commit ffbdcd3

Please sign in to comment.