File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 23
23
24
24
sanity_check :
25
25
parameters :
26
- inputs : {data_path: data/, parameters_file: {type: file, default: parameters.yaml}}
26
+ inputs : {data_path: data/, parameters_file: {type: file, default: parameters.yaml}}
27
+
28
+ statistics :
29
+ parameters :
30
+ inputs : {data_path: data/, parameters_file: {type: file, default: parameters.yaml}}
31
+ outputs : {output_path: {type: file, default: statistics.yaml}}
Original file line number Diff line number Diff line change @@ -43,6 +43,14 @@ def sanity_check(
43
43
):
44
44
pass
45
45
46
+ @app .command ("statistics" )
47
+ def statistics (
48
+ data_path : str = typer .Option (..., "--data_path" ),
49
+ parameters_file : str = typer .Option (..., "--parameters_file" ),
50
+ output_path : str = typer .Option (..., "--output_path" )
51
+ ):
52
+ pass
53
+
46
54
47
55
if __name__ == "__main__" :
48
56
app ()
You can’t perform that action at this time.
0 commit comments