|
0
|
1 <tool id="concat_cov_iupac" name="Concatening cov and iupac" version="1.2">
|
|
|
2 <description>
|
|
|
3 Concatenate coverage stats (get_coverage_stats) and iupac percentage results (get_iupac_percentage)
|
|
|
4 </description>
|
|
|
5 <stdio>
|
|
|
6 <exit_code range="1:" />
|
|
|
7 </stdio>
|
|
|
8 <command><![CDATA[
|
|
|
9 python '$__tool_directory__/concat_cov_and_iupac_results.py'
|
|
|
10 -c "$covfile"
|
|
|
11 -i "$iupacfile"
|
|
|
12 -o "$output"
|
|
|
13 ]]></command>
|
|
|
14 <inputs>
|
|
|
15 <param name="covfile" type="data" format="txt" label="Coverage statistics file" help="Output file from get_coverage_stats"/>
|
|
|
16 <param name="iupacfile" type="data" format="txt" label="IUPAC percentage file" help="Output file from get_iupac_percentage"/>
|
|
|
17 </inputs>
|
|
|
18 <outputs>
|
|
|
19 <data format="txt" name="output" label="${tool.name} on ${on_string}"/>
|
|
|
20 </outputs>
|
|
|
21 <help>
|
|
|
22 <![CDATA[
|
|
|
23
|
|
|
24 Homemade script concatenate coverage statistics file and iupac percentage file.
|
|
|
25
|
|
|
26 ]]>
|
|
|
27 </help>
|
|
|
28 </tool>
|