Mercurial > repos > iuc > data_manager_manual
diff data_manager/data_manager_manual.py @ 3:ee9a90a06e19 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_manual commit a0d52600f3f1c622760362e255520b956dd48e6a"
| author | iuc |
|---|---|
| date | Wed, 16 Oct 2019 03:19:09 -0400 |
| parents | 192005f56204 |
| children | d17c507ec2f8 |
line wrap: on
line diff
--- a/data_manager/data_manager_manual.py Mon Sep 23 10:52:56 2019 -0400 +++ b/data_manager/data_manager_manual.py Wed Oct 16 03:19:09 2019 -0400 @@ -47,6 +47,9 @@ for data_table_param in data_tables_param: data_table_name = data_table_param.get('data_table_name') if data_table_name: + # the 'data_table_name' value in data_table_param is a SelectToolParameter, + # to get the selected value we need to cast data_table_name to string + data_table_name = str(data_table_name) # get data table managed by this data Manager data_table = app.tool_data_tables.get_tables().get(data_table_name) if data_table:
