Mercurial > repos > thanhlv > humann_renorm_table
comparison humann_genefamilies_genus_level @ 0:f76163304dab draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/humann commit 6b06711cfba45855d5a992ed1c73c472eaef644f
author | thanhlv |
---|---|
date | Mon, 13 Feb 2023 16:21:18 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f76163304dab |
---|---|
1 <!-- The tool is broken with current version of HUMAnN. Once it will be fixed (PR merged), we can update this wrapper and add the XML extension to enable it --> | |
2 <tool id="humann_genefamilies_genus_level" name="Create a genus level" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> | |
3 <description>gene families and pathways from HUMAnN species level gene families</description> | |
4 <macros> | |
5 <import>macros.xml</import> | |
6 </macros> | |
7 <expand macro="edam_ontology"/> | |
8 <expand macro="requirements"/> | |
9 <expand macro="version"/> | |
10 <command detect_errors="exit_code"><![CDATA[ | |
11 humann_genefamilies_genus_level | |
12 --input '$input' | |
13 --output '$gene_families' | |
14 && | |
15 humann | |
16 --input '$gene_families' | |
17 --output '$pathways' | |
18 ]]></command> | |
19 <inputs> | |
20 <param argument="--input" type="data" format="tsv,tabular" label="Species level gene families" help="Direct output from HUMAnN"/> | |
21 </inputs> | |
22 <outputs> | |
23 <data name="gene_families" format="tabular" label="${tool.name} on ${on_string}: Genus level gene families"/> | |
24 <data name="pathways" format="tabular" label="${tool.name} on ${on_string}: Genus level pathways"/> | |
25 </outputs> | |
26 <tests> | |
27 <test expect_num_outputs="1"> | |
28 <param name="input" value="demo_genefamilies.tsv"/> | |
29 <output name="gene_families" ftype="tabular" value="genus-level-gene-families.tsv" compare="sim_size"> | |
30 <assert_contents> | |
31 <has_text text="humann_Abundance"/> | |
32 <has_text text="PWY-5423: oleoresin monoterpene volatiles biosynthesis|unclassified"/> | |
33 <has_n_columns n="2"/> | |
34 </assert_contents> | |
35 </output> | |
36 <output name="pathways" ftype="tabular" value="genus-level-pathways.tsv" compare="sim_size"> | |
37 <assert_contents> | |
38 <has_text text="humann_Abundance"/> | |
39 <has_text text="PWY-5423: oleoresin monoterpene volatiles biosynthesis|unclassified"/> | |
40 <has_n_columns n="2"/> | |
41 </assert_contents> | |
42 </output> | |
43 </test> | |
44 </tests> | |
45 <help><![CDATA[ | |
46 @HELP_HEADER@ | |
47 | |
48 By default, the gene families and pathways output files from HUMAnN are species level. | |
49 This tool generates genus level gene families and pathways | |
50 ]]></help> | |
51 <expand macro="citations"/> | |
52 </tool> |