comparison tools/qualimap_parser/qualimap_parser.xml @ 0:45533fb9d2f4 draft default tip

Primary version
author matnguyen
date Tue, 04 Sep 2018 02:49:49 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:45533fb9d2f4
1 <tool id="parse_qualimap" name="Parse Qualimap reports" version="0.1.0">
2 <description>and output a list of outliers</description>
3 <command><![CDATA[
4 $__tool_directory__/qualimap_parser -n #for $report in $reports# ${report.element_identifier} #end for#
5 -i #for $report in $reports# $report #end for#
6 ]]></command>
7 <inputs>
8 <param name="reports" type="data" format="txt" label="Qualimap Genome Report" help="" optional="false" multiple="True" />
9 </inputs>
10 <outputs>
11 <data name="output_file" label="Outliers from dataset after mapping" format="txt" from_work_dir="outlier_list.txt"/>
12 </outputs>
13
14 <tests>
15 <test>
16
17 </test>
18 </tests>
19
20 <help><![CDATA[
21 Parses Qualimap reports and outputs a list of outliers based on percentage of the reference genome covered and mean mapping quality.
22
23 Command line:
24 qualimap_parser -n <accessions> -i <reports>
25
26 ]]></help>
27
28 <citations>
29 Manuscript in preparation
30 </citations>
31 </tool>