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 44
55from  janisdk .container  import  do_container , add_container_args 
66from  janisdk .fromcwl  import  do_fromcwl , add_fromcwl_args 
7+ from  janisdk .fromwdl  import  do_fromwdl , add_fromwdl_args 
78from  janisdk .runtest  import  runner  as  test_runner 
89
910from  janis_assistant .management .configuration  import  JanisConfiguration 
1011
1112
1213def  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 }
1415
1516    parser  =  argparse .ArgumentParser (description = "Execute a workflow" )
1617    subparsers  =  parser .add_subparsers (help = "subcommand help" , dest = "command" )
@@ -20,6 +21,7 @@ def process_args():
2021    add_container_args (subparsers .add_parser ("container" ))
2122    test_runner .add_runtest_args (subparsers .add_parser ("run-test" ))
2223    add_fromcwl_args (subparsers .add_parser ("fromcwl" ))
24+     add_fromwdl_args (subparsers .add_parser ("fromwdl" ))
2325
2426    args  =  parser .parse_args ()
2527    return  cmds [args .command ](args )
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments