forked from zipho/galaxy-qualimap2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqualimap_bamqc.xml
48 lines (47 loc) · 1.93 KB
/
qualimap_bamqc.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="utf-8" ?>
<tool id="qualimap_bamqc" name="QualiMap BamQC" version="2.2">
<description>Tool to to facilitate the quality control of alignment sequencing data and its derivatives like feature counts.</description>
<requirements>
<requirement type="package" version="2.2">qualimap</requirement>
</requirements>
<stdio>
<exit_code range=":-1" />
<exit_code range="1:" />
</stdio>
<command interpreter="python">
qualimap_bamqc.py
--input_file $input_realigned_bam_file
--out_results $genome_results
--out_zip $raw_data_qualimapReport
--java_mem_size $mem_size
</command>
<inputs>
<param name="input_realigned_bam_file" type="data" format="bam" label="Realigned BAM dataset" help="Specify realigned BAM dataset"/>
<param name="mem_size" type="text" value="8G" format="txt" label="Java memory size (default Gig)" help="Specify the size of memory to allocate. (Default 8 Gig)"/>
</inputs>
<outputs>
<data format="txt" name="genome_results" label="Qualimap BamQC Results for: ${input_realigned_bam_file}"></data>
<data format="zip" name="raw_data_qualimapReport" label="Qualimap Raw Data Results for: ${input_realigned_bam_file}"></data>
</outputs>
<tests>
<test>
<param name="mem_size" value="2G"></param>
<param name="input_realigned_bam_file" value="test.bam"></param>
<output name="genome_results">
<assert_contents>
<has_text text="BamQC report" />
</assert_contents>
</output>
<output name="raw_data_qualimapReport" ftype="zip">
<assert_contents>
<has_text text="" />
</assert_contents>
</output>
</test>
</tests>
<help>
https://github.com/refinery-platform/qualimap2
</help>
<citations>
</citations>
</tool>