comparison biom_to_stdBiom.xml @ 0:59bc96331073 draft default tip

planemo upload for repository https://github.com/geraldinepascal/FROGS-wrappers/tree/v3.1.0 commit 08296fc88e3e938c482c631bd515b3b7a0499647
author frogs
date Thu, 28 Feb 2019 10:14:49 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:59bc96331073
1 <?xml version="1.0"?>
2 <!--
3 # Copyright (C) 2015 INRA
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 -->
18 <tool id="FROGS_biom_to_stdBiom" name="FROGS BIOM to std BIOM" version="3.1">
19 <description>Converts a FROGS BIOM in fully compatible BIOM.</description>
20 <requirements>
21 <requirement type="package" version="3.1.0">frogs</requirement>
22 </requirements>
23 <stdio>
24 <exit_code range="1:" />
25 <exit_code range=":-1" />
26 </stdio>
27 <command>
28 biom_to_stdBiom.py
29 --input-biom $input_biom
30 --output-biom $output_biom
31 --output-metadata $output_blast_details
32 </command>
33 <inputs>
34 <!-- Files -->
35 <param format="biom1" name="input_biom" type="data" label="Abundance file" help="The FROGS BIOM file to convert (format: BIOM)." optional="false" />
36 </inputs>
37 <outputs>
38 <data format="biom1" name="output_biom" label="${tool.name}: abundance.biom" from_work_dir="abundance.biom"/>
39 <data format="tabular" name="output_blast_details" label="${tool.name}: blast_details.tsv" from_work_dir="blast_details.tsv" />
40 </outputs>
41 <tests>
42 <test>
43 <param name="input_biom" value="references/06-affiliation.biom"/>
44 <output name="output_biom" value="references/11-affiliation_std.biom"/>
45 <output name="output_blast_details" value="references/11-affiliation_multihit.tsv"/>
46 </test>
47 </tests>
48 <help>
49
50 .. image:: static/images/frogs_images/FROGS_logo.png
51 :height: 144
52 :width: 110
53
54
55 .. class:: infomark page-header h2
56
57 What it does
58
59 Converts a BIOM generated by FROGS in generic BIOM.
60
61 The detailed blast affiliations can trigger problem with tools like Qiime. This tool extracts the blast details in a second file and writes a BIOM usable in every tools using BIOM.
62
63 .. class:: h3
64
65 Inputs
66
67 **Abundance file**:
68
69 The abundance of each cluster in each sample (format `BIOM &lt;http://biom-format.org/&gt;`_).
70
71 .. class:: h3
72
73 Outputs
74
75 **Abundance file**:
76
77 The abundance without the ambiguous blast details (format `BIOM &lt;http://biom-format.org/&gt;`_).
78
79 **Blast details file**:
80
81 The details for each alignment on clusters (format `TSV &lt;https://en.wikipedia.org/wiki/Tab-separated_values&gt;`_).
82
83
84 .. class:: infomark page-header h2
85
86 How it works
87
88 FROGS BIOM to std BIOM extracts the blast alignment details in a second file, write a BIOM usable in every tools using BIOM and defined the consensus taxonomy provided by blast as main taxonomy.
89
90
91
92 ----
93
94 **Contact**
95
96 Contacts: frogs@inra.fr
97
98 Repository: https://github.com/geraldinepascal/FROGS
99 website: http://frogs.toulouse.inra.fr/
100
101 Please cite the **FROGS article**: *Escudie F., et al. Bioinformatics, 2018. FROGS: Find, Rapidly, OTUs with Galaxy Solution.*
102
103 </help>
104 <citations>
105 <citation type="doi">10.1093/bioinformatics/btx791</citation>
106 </citations>
107
108 </tool>