[galaxy-dev] Suppress stdout in history item

2014-03-24 Thread Hans van Leeuwen
Hi, Currently if there is anything written to stdout it is also shown in the expanded history item of the job (in the right hand history panel). Is there a way to suppress that? I searched for a possible solution but could not find anything. Thank you, Best regards, Hans van Leeuwen

Re: [galaxy-dev] Suppress stdout in history item

2014-03-24 Thread Hans van Leeuwen
...@gmail.comwrote: Hi Hans, you can remove the entire stdout if you want, but that is probably not what you want. An other hack I can imagine is to insert 10 empty lines at the beginning of stdout. Ciao, Bjoern Am 24.03.2014 10:40, schrieb Hans van Leeuwen: Hi, Currently if there is anything

[galaxy-dev] dynamic_options selected value as input for second dynamic_options function call

2013-11-12 Thread Hans van Leeuwen
Hello, I would like to have a tool form with a two parameters: 1. Select State 2. Select Town The options for 'Select State' are dynamically generated with dynamic_options which calls a python function, which connects to a database and returns the list of States. This works fine in my form xml

Re: [galaxy-dev] dynamic_options selected value as input for second dynamic_options function call

2013-11-12 Thread Hans van Leeuwen
Hi, I found a working workaround using the deprecated page tags: inputs page param name = State_id type=select dynamic_options=getStates() label=Select State display=radio multiple=false/ /page page param name = Town_id type=select dynamic_options=getTowns(State_id) label=Select