|
0
|
1 <tool id="join_nucmer" name="join_nucmer" version="">
|
|
1
|
2 <description>Join multiple mummer output files in a phenetic matrix</description>
|
|
0
|
3 <command>
|
|
|
4 <![CDATA[
|
|
|
5 perl $__tool_directory__/join_nucmer.pl $output_file ${" ".join(map(str, $input_file))}
|
|
|
6 ]]>
|
|
|
7 </command>
|
|
|
8
|
|
|
9 <inputs>
|
|
|
10 <param name="input_file" format="tsv" type="data" multiple="true" label="show-snps tabular output" help="join mutiple nucmer output files" />
|
|
|
11 </inputs>
|
|
|
12
|
|
|
13 <outputs>
|
|
|
14 <data format="tsv" name="output_file" label="${tool.name} on ${on_string} consolidated variants file" />
|
|
|
15 </outputs>
|
|
|
16 <stdio>
|
|
|
17 <exit_code range="1:" level="fatal" />
|
|
|
18 </stdio>
|
|
|
19 <help>
|
|
|
20 **What it does?**
|
|
|
21
|
|
|
22 This tool is used to merge variant calls, in nucmer format, into a single tabular file. The output file will have as may columns as
|
|
|
23 the number of genomes provided in input. And as many rows as the number of variants observed in the genomes. For every genome assembly and
|
|
|
24 variant a simple binary code 1= present, 0=absent will be used to indicate whether that genome carries a specific variant.
|
|
|
25 This table should be provided to the FunAnn tool to obtain the functional annotation of the variants.
|
|
|
26
|
|
|
27 </help>
|
|
|
28
|
|
|
29 <tests>
|
|
|
30 <test>
|
|
|
31 </test>
|
|
|
32 </tests>
|
|
|
33
|
|
|
34 </tool>
|