-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqualimap_bamqc.xml
33 lines (33 loc) · 1.29 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
<?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_genome_file $genomecov_file
--out_dir $genomecov_file.files_path
--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="genomecov" name="genomecov_file" label="QualiMap: BamQC GenomeCov output"/>
</outputs>
<help>Help!</help>
<citations>
<citation></citation>
</citations>
<tests>
<test>
</test>
</tests>
</tool>