# HG changeset patch # User dfornika # Date 1558726732 14400 # Node ID 737a6e1ac399ce3e99887167aeb606b1a7f48df2 # Parent 561c03c8353f800c84707495f881103b2f4db499 planemo upload for repository https://github.com/dfornika/galaxytools/tree/master/data_managers/data_manager_build_mob_suite_database/ commit 3587b1c384fdb0fc947ef8fb558acf2a964bc128-dirty diff -r 561c03c8353f -r 737a6e1ac399 data_manager/mob_suite_build_database.py --- a/data_manager/mob_suite_build_database.py Fri May 24 15:35:56 2019 -0400 +++ b/data_manager/mob_suite_build_database.py Fri May 24 15:38:52 2019 -0400 @@ -15,7 +15,7 @@ DATA_TABLE_NAME = "mob_suite_databases" -def mob_suite_build_database_mob_init(mob_suite_args, target_directory, data_table_name=DATA_TABLE_NAME): +def mob_suite_build_database_mob_init(target_directory, data_table_name=DATA_TABLE_NAME): now = datetime.datetime.utcnow().strftime("%Y-%m-%dT%H%M%SZ") @@ -30,7 +30,7 @@ args = [ ] - subprocess.check_call(['mob_init'] + args, target_directory) + subprocess.check_call(['mob_init'], target_directory) data_table_entry = { "data_tables": { @@ -69,9 +69,7 @@ data_manager_output = {} if str(args.mode) == 'mob_init': - mob_suite_args = {} data_manager_output = mob_suite_build_database_mob_init( - mob_suite_args, target_directory, ) else: