# HG changeset patch # User iuc # Date 1571217385 14400 # Node ID 1ed87dee9e683544246142da098b63c51a9b87cc # Parent 31f44a9f507ed215f1c930023471b7dc7529e9d7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_manual commit b775a4c6248f00430a9ab1b2a4e1afa255ac57a2" diff -r 31f44a9f507e -r 1ed87dee9e68 data_manager/data_manager_manual.py --- a/data_manager/data_manager_manual.py Wed Oct 16 03:19:50 2019 -0400 +++ b/data_manager/data_manager_manual.py Wed Oct 16 05:16:25 2019 -0400 @@ -168,8 +168,8 @@ data_table_entries = get_data_table_entries(params['param_dict'], options.galaxy_data_manager_data_path) # save info to json file - with open(filename, 'wb') as fh: - fh.write(json.dumps({"data_tables": data_table_entries})) + with open(filename, 'w') as fh: + fh.write(json.dumps({"data_tables": data_table_entries}, sort_keys=True)) get_file_content(params['param_dict'], target_directory) diff -r 31f44a9f507e -r 1ed87dee9e68 data_manager/data_manager_manual.xml --- a/data_manager/data_manager_manual.xml Wed Oct 16 03:19:50 2019 -0400 +++ b/data_manager/data_manager_manual.xml Wed Oct 16 05:16:25 2019 -0400 @@ -1,4 +1,4 @@ - + Entry Builder - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -58,6 +58,24 @@ + + + + + + + + + + + + + + + + + + **What it does** diff -r 31f44a9f507e -r 1ed87dee9e68 test-data/dbkeys.loc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/dbkeys.loc Wed Oct 16 05:16:25 2019 -0400 @@ -0,0 +1,2 @@ +# +dm6 Drosophila melanogaster genome release 6 dm6.len diff -r 31f44a9f507e -r 1ed87dee9e68 test-data/dm6.data_manager_json --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/dm6.data_manager_json Wed Oct 16 05:16:25 2019 -0400 @@ -0,0 +1,1 @@ +{"data_tables": {"__dbkeys__": [{"len_path": "dm6.len", "name": "Drosophila melanogaster genome release 6", "value": "dm6"}]}} \ No newline at end of file diff -r 31f44a9f507e -r 1ed87dee9e68 tool_data_table_conf.xml.test --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool_data_table_conf.xml.test Wed Oct 16 05:16:25 2019 -0400 @@ -0,0 +1,7 @@ + + + + value, name, len_path + +
+