mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-08-30 16:58:03 +08:00
48ebf3122b
I think this fixes https://github.com/galaxyproject/galaxy/issues/18770 ? I did manage to get the redirect to Galaxy, however the user interface looks pretty weird to me, so I'm not sure this is how it is meant to be ?
21 lines
885 B
XML
21 lines
885 B
XML
<?xml version="1.0"?>
|
|
<tool name="EBI SRA" id="ebi_sra_main" tool_type="data_source" version="1.0.1" profile="20.09">
|
|
<description>ENA SRA</description>
|
|
<edam_operations>
|
|
<edam_operation>operation_0224</edam_operation>
|
|
</edam_operations>
|
|
<!-- This paython script imports the file into Galaxy -->
|
|
<command><![CDATA[
|
|
python '$__tool_directory__/data_source.py' '$output' $__app__.config.output_size_limit
|
|
]]></command>
|
|
<!-- The URL where Galaxy will forwards the user when this tool is accessed from the Get Data menu -->
|
|
<inputs action="https://www.ebi.ac.uk/ena/browser/search" check_values="false" method="get">
|
|
<display>go to EBI SRA server $GALAXY_URL</display>
|
|
</inputs>
|
|
<uihints minwidth="800"/>
|
|
<outputs>
|
|
<data name="output" format="auto"/>
|
|
</outputs>
|
|
<options sanitize="False" refresh="True"/>
|
|
</tool>
|