MolgenisAsGalaxyDatasource: Molgenis.xml

File Molgenis.xml, 2.7 KB (added by Pieter Neerincx, 13 years ago)

Example Galaxy datasource.xml file for Molgenis

Line 
1<!--
2# =====================================================
3# $Id: Molgenis.xml 151 2011-09-08 08:12:14Z pieter.neerincx@gmail.com $
4# $URL: https://trac.nbic.nl/svn/galaxytools/trunk/tools/general/DataSources/Molgenis.xml $
5# $LastChangedDate: 2011-09-08 10:12:14 +0200 (Thu, 08 Sep 2011) $
6# $LastChangedRevision: 151 $
7# $LastChangedBy: pieter.neerincx@gmail.com $
8# =====================================================
9-->
10<!--
11Note: This is an example tool.xml file to add a Molgenis DB to your Galaxy.
12      The only thing you'll need to change is the http://IPaddress:port/path/molgenis.do to where your Molgenis is hosted
13-->
14<tool name="Molgenis" id="Molgenis1" tool_type="data_source" version="1.0">
15    <description>test server</description>
16    <!-- Removed interpreter="python" attribute from the command tag to prevent Galaxy from appending the tool's dir to the path
17         before executing the command. Otherwise it won't respect $__app__.config.tool_path. -->
18    <command>python $__app__.config.tool_path/data_source/data_source.py $output $__app__.config.output_size_limit</command>
19    <inputs action="http://localhost:8082/molgenis_apps/molgenis.do" check_values="false" method="get" target="_top">
20        <display>go to Molgenis server $GALAXY_URL</display>
21        <param name="GALAXY_URL" type="baseurl" value="/tool_runner?tool_id=Molgenis1" />
22    </inputs>
23    <request_param_translation>
24        <request_param galaxy_name="URL_method" remote_name="URL_method" missing="get" />
25        <request_param galaxy_name="URL" remote_name="URL" missing="" />
26        <request_param galaxy_name="name" remote_name="name" missing="Imported from Molgenis" />
27        <request_param galaxy_name="data_type" remote_name="data_type" missing="tabular" />
28        <!-- If your Molgenis instance can provide additional meta-data for the data uploaded to Galaxy,
29             you can specify these with the additional request params below.
30             Note: dbkey = the database version and in the case of genomic data this is the genome assembly/annotation build number.
31             For more details check the online docs @ the Galaxy Wiki. 
32        <request_param galaxy_name="dbkey" remote_name="" missing="" />
33        <request_param galaxy_name="table" remote_name="" missing="" />
34        <request_param galaxy_name="organism" remote_name="" missing="" />
35        <request_param galaxy_name="description" remote_name="" missing="" />
36        <request_param galaxy_name="info" remote_name="" missing="" />
37        -->
38    </request_param_translation>
39    <uihints minwidth="800"/>
40    <outputs>
41        <data name="output" format="tabular" />
42    </outputs>
43    <options sanitize="False" refresh="True"/>
44</tool>