comparison data_manager/motus_db_fetcher.xml @ 0:0370fe3cf518 draft default tip

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/data_managers/ commit f42263c2875a78500f141027803a38606ecb0f14
author bgruening
date Thu, 10 Oct 2024 11:00:40 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:0370fe3cf518
1 <?xml version="1.0"?>
2 <tool id="motus_db_fetcher" name="mOTUs DB fetcher" tool_type="manage_data" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
3 <description>Fetches the DB required for mOTUs</description>
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7 <expand macro="biotools" />
8 <expand macro="requirements" />
9 <!-- <expand macro="version" /> -->
10
11 <command detect_errors="exit_code">
12 <![CDATA[
13 python '$__tool_directory__/data_manager_fetch_motus_db.py' --out '${out_file}' --version '${version}'
14 $test_data_manager
15 ]]>
16 </command>
17 <inputs>
18 <param name="test_data_manager" type="hidden" truevalue="--test" falsevalue="" checked="False" label="Copy minimal test DB and create mock data table entry." />
19
20 <!-- <param name="test_data_manager" type="text" value=""/> -->
21 <param argument="--version" type="select" multiple="false" label="Database Version" help="Check https://zenodo.org/records/7778108 for current version. The default value is recommended.">
22 <option value="3.1.0">3.1.0</option>
23 <option value="3.0.1">3.0.1</option>
24 <option value="3.0.0">3.0.0</option>
25 </param>
26
27 </inputs>
28 <outputs>
29 <data format="data_manager_json" name="out_file" />
30 </outputs>
31 <tests>
32 <test expect_num_outputs="1">
33 <param name="test_data_manager" value="--test"/>
34 <param name="version" value="3.1.0"/>
35 <output name="out_file">
36 <assert_contents>
37 <has_text text="mOTUs DB version 3.1.0 downloaded at"/>
38 </assert_contents>
39 </output>
40 </test>
41 </tests>
42 <help><![CDATA[
43 mOTUs
44 =====
45
46 The mOTUs profiler is a tool designed for taxonomic profiling of metagenomic and metatranscriptomic data.
47 It allows for the identification and quantification of microbial community composition directly from sequencing reads.
48 mOTUs utilizes a database of marker genes identified across a wide range of microbial taxa, enabling the detection of known and unknown microorganisms in your sample data.
49
50 Additional Resources
51 ====================
52
53 For a more comprehensive understanding of mOTUs and detailed usage instructions, please visit the mOTUs GitHub repository:
54
55 mOTUs GitHub Repository: [https://github.com/motu-tool/mOTUs](https://github.com/motu-tool/mOTUs)
56
57 Data Manager
58 ============
59
60 This DM download the available DBs from: https://zenodo.org/records/5012106
61 ]]></help>
62 <expand macro="citations" />
63 <expand macro="creator" />
64 </tool>