File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
from janisdk .container import do_container , add_container_args
6
6
from janisdk .fromcwl import do_fromcwl , add_fromcwl_args
7
+ from janisdk .fromwdl import do_fromwdl , add_fromwdl_args
7
8
from janisdk .runtest import runner as test_runner
8
9
9
10
from janis_assistant .management .configuration import JanisConfiguration
10
11
11
12
12
13
def process_args ():
13
- cmds = {"container" : do_container , "run-test" : do_runtest , "fromcwl" : do_fromcwl }
14
+ cmds = {"container" : do_container , "run-test" : do_runtest , "fromcwl" : do_fromcwl , "fromwdl" : do_fromwdl }
14
15
15
16
parser = argparse .ArgumentParser (description = "Execute a workflow" )
16
17
subparsers = parser .add_subparsers (help = "subcommand help" , dest = "command" )
@@ -20,6 +21,7 @@ def process_args():
20
21
add_container_args (subparsers .add_parser ("container" ))
21
22
test_runner .add_runtest_args (subparsers .add_parser ("run-test" ))
22
23
add_fromcwl_args (subparsers .add_parser ("fromcwl" ))
24
+ add_fromwdl_args (subparsers .add_parser ("fromwdl" ))
23
25
24
26
args = parser .parse_args ()
25
27
return cmds [args .command ](args )
You can’t perform that action at this time.
0 commit comments