mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-08-31 01:02:04 +08:00
bd0f257452
Allows moving all data source tools using the script to profile 20.09. For more recent profiles data_source.py would have to work outside of Galaxy's Python environment.
41 lines
2.1 KiB
XML
41 lines
2.1 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
If the value of 'URL_method' is 'get', the request will consist of the value of 'URL' coming back in
|
|
the initial response. If value of 'URL_method' is 'post', any additional params coming back in the
|
|
initial response ( in addition to 'URL' ) will be encoded and appended to URL and a post will be performed.
|
|
-->
|
|
<tool name="MouseMine" id="mousemine" tool_type="data_source" version="1.0.0" profile="20.09">
|
|
<description>server</description>
|
|
<edam_operations>
|
|
<edam_operation>operation_0224</edam_operation>
|
|
</edam_operations>
|
|
<command><![CDATA[
|
|
python '$__tool_directory__/data_source.py' '$output' $__app__.config.output_size_limit
|
|
]]></command>
|
|
<inputs action="http://www.mousemine.org/mousemine/begin.do" check_values="false" method="get">
|
|
<display>go to MouseMine server $GALAXY_URL</display>
|
|
<param name="GALAXY_URL" type="baseurl" value="/tool_runner?tool_id=mousemine" />
|
|
</inputs>
|
|
<request_param_translation>
|
|
<request_param galaxy_name="URL_method" remote_name="URL_method" missing="post" />
|
|
<request_param galaxy_name="URL" remote_name="URL" missing="" />
|
|
<request_param galaxy_name="dbkey" remote_name="db" missing="?" />
|
|
<request_param galaxy_name="organism" remote_name="organism" missing="" />
|
|
<request_param galaxy_name="table" remote_name="table" missing="" />
|
|
<request_param galaxy_name="description" remote_name="description" missing="" />
|
|
<request_param galaxy_name="name" remote_name="name" missing="MouseMine query" />
|
|
<request_param galaxy_name="info" remote_name="info" missing="" />
|
|
<request_param galaxy_name="data_type" remote_name="data_type" missing="auto" >
|
|
<value_translation>
|
|
<value galaxy_value="auto" remote_value="txt" /> <!-- intermine currently always provides 'txt', make this auto detect -->
|
|
</value_translation>
|
|
</request_param>
|
|
</request_param_translation>
|
|
<uihints minwidth="800"/>
|
|
<outputs>
|
|
<data name="output" format="txt" />
|
|
</outputs>
|
|
<options sanitize="False" refresh="True"/>
|
|
</tool>
|
|
|