Skip to content

Commit b333268

Browse files
authored
fix folder names (#7)
1 parent 44c8829 commit b333268

File tree

12 files changed

+8
-8
lines changed

12 files changed

+8
-8
lines changed
File renamed without changes.
File renamed without changes.

src/methods/simple_mlp/run/config.vsh.yaml renamed to src/methods/simple_mlp/simple_mlp/config.vsh.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ resources:
2121
type: nextflow_script
2222
entrypoint: run_wf
2323
dependencies:
24-
- name: methods/simplemlp_train
25-
- name: methods/simplemlp_predict
24+
- name: methods/simple_mlp_train
25+
- name: methods/simple_mlp_predict
2626
runners:
2727
- type: nextflow
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ workflow run_wf {
33
main:
44
output_ch = input_ch
55

6-
| simplemlp_train.run(
6+
| simple_mlp_train.run(
77
fromState: ["input_train_mod1", "input_train_mod2"],
88
toState: ["input_model": "output"]
99
)
1010

11-
| simplemlp_predict.run(
11+
| simple_mlp_predict.run(
1212
fromState: ["input_train_mod2", "input_test_mod1", "input_model", "input_transform"],
1313
toState: ["output": "output"]
1414
)

src/methods/simple_mlp/predict/config.vsh.yaml renamed to src/methods/simple_mlp/simple_mlp_predict/config.vsh.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__merge__: /src/api/comp_method_predict.yaml
2-
name: simplemlp_predict
2+
name: simple_mlp_predict
33

44
info:
55
test_setup:

src/methods/simple_mlp/predict/script.py renamed to src/methods/simple_mlp/simple_mlp_predict/script.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
'output': 'output/prediction'
1616
}
1717
meta = {
18-
'config': 'target/executable/methods/simplemlp_predict/.config.vsh.yaml',
19-
'resources_dir': 'target/executable/methods/simplemlp_predict',
18+
'config': 'target/executable/methods/simple_mlp_predict/.config.vsh.yaml',
19+
'resources_dir': 'target/executable/methods/simple_mlp_predict',
2020
'cpus': 10
2121
}
2222
## VIASH END

0 commit comments

Comments
 (0)