comparison mapseq_db_fetcher.xml @ 0:dbf2735e8480 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/ commit 66e797aaa79b92c282a8127260cdfd5702207e35
author iuc
date Wed, 13 Sep 2023 19:54:19 +0000
parents
children 23511530b8fd
comparison
equal deleted inserted replaced
-1:000000000000 0:dbf2735e8480
1 <?xml version="1.0"?>
2 <tool id="mapseq_db_fetcher" name="Mapseq DB fetcher" tool_type="manage_data" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
3 <description>Fetches the DB required for mapseq</description>
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7 <expand macro="requirements" />
8 <expand macro="version" />
9 <command detect_errors="exit_code">
10 <![CDATA[
11 python '$__tool_directory__/data_manager_fetch_mapseq_db.py'
12 --out '${out_file}'
13 --version '${version}'
14 --database-type '${database_type}'
15 $test_data_manager
16 ]]>
17 </command>
18 <inputs>
19 <!-- <param name="test_data_manager" type="hidden" /> -->
20 <param name="test_data_manager" type="boolean" truevalue="--test" falsevalue="" checked="False" label="Download minimal test DB and create mock data table entry." />
21
22 <param name="database_type" type="select" multiple="false" label="Database Type">
23 <option value="mgnify_lsu">MGnify LSU (v5.0.7)</option>
24 <option value="mgnify_ssu">MGnify SSU (v5.0.7)</option>
25 <option value="mgnify_its_itsonedb">MGnify ITS ITSonedb (v5.0.7)</option>
26 <option value="mgnify_its_unite">MGnify ITS UNITE (v5.0.7)</option>
27 </param>
28
29 <!-- <param name="test_data_manager" type="text" value=""/> -->
30 <param argument="--version" type="text" value="5.0.7" help="Check MGnify GitHub (https://github.com/EBI-Metagenomics/pipeline-v5/releases) for the version."/>
31 </inputs>
32 <outputs>
33 <data format="data_manager_json" name="out_file" />
34 </outputs>
35 <tests>
36 <test expect_num_outputs="1">
37 <param name="test_data_manager" value="--test"/>
38 <param name="version" value="5.0.7"/>
39 <param name="database_type" value="mgnify_lsu"/>
40 <output name="out_file">
41 <assert_contents>
42 <has_text text="mgnify_lsu"/>
43 <has_text text="5.0.7"/>
44 </assert_contents>
45 </output>
46 </test>
47 </tests>
48 <help>
49 Downloads preformatted DBs form MGnify that can be used for mapseq.
50 The download paths were taken from: https://github.com/EBI-Metagenomics/pipeline-v5/
51 </help>
52 <expand macro="citations" />
53 <expand macro="creator" />
54 </tool>