Mercurial > repos > refinery-platform > qualimap2_bamqc
comparison qualimap_bamqc.xml @ 0:a6d048668f7f draft
planemo upload for repository https://github.com/refinery-platform/qualimap2 commit 88b5467f336ac3b6b5d3a6e824273a183e5184b6
author | refinery-platform |
---|---|
date | Mon, 30 Jul 2018 09:56:10 -0400 |
parents | |
children | 166fdd8fa100 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:a6d048668f7f |
---|---|
1 <?xml version="1.0" encoding="utf-8" ?> | |
2 <tool id="qualimap_bamqc" name="QualiMap BamQC" version="2.2"> | |
3 <description>Tool to to facilitate the quality control of alignment sequencing data and its derivatives like feature counts.</description> | |
4 <requirements> | |
5 <requirement type="package" version="2.2">qualimap</requirement> | |
6 </requirements> | |
7 <stdio> | |
8 <exit_code range=":-1" /> | |
9 <exit_code range="1:" /> | |
10 </stdio> | |
11 <command interpreter="python"> | |
12 qualimap_bamqc.py | |
13 --input_file $input_realigned_bam_file | |
14 --out_results $genome_results | |
15 --out_zip $raw_data_qualimapReport | |
16 --java_mem_size $mem_size | |
17 </command> | |
18 <inputs> | |
19 <param name="input_realigned_bam_file" type="data" format="bam" label="Realigned BAM dataset" help="Specify realigned BAM dataset"/> | |
20 <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)"/> | |
21 </inputs> | |
22 <outputs> | |
23 <data format="txt" name="genome_results" label="Qualimap BamQC Results for: ${input_realigned_bam_file}"></data> | |
24 <data format="zip" name="raw_data_qualimapReport" label="Qualimap Raw Data Results for: ${input_realigned_bam_file}"></data> | |
25 </outputs> | |
26 | |
27 <tests> | |
28 <test> | |
29 <param name="mem_size" value="2G"></param> | |
30 <param name="input_realigned_bam_file" value="test.bam"></param> | |
31 <output name="genome_results"> | |
32 <assert_contents> | |
33 <has_text text="BamQC report" /> | |
34 </assert_contents> | |
35 </output> | |
36 <output name="raw_data_qualimapReport" ftype="zip"> | |
37 <assert_contents> | |
38 <has_text text="" /> | |
39 </assert_contents> | |
40 </output> | |
41 </test> | |
42 </tests> | |
43 <help> | |
44 https://github.com/scottx611x/qualimap2 | |
45 </help> | |
46 <citations> | |
47 </citations> | |
48 </tool> |