Mercurial > repos > refinery-platform > qualimap2_bamqc
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/qualimap_bamqc.xml Mon Jul 30 09:56:10 2018 -0400 @@ -0,0 +1,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/scottx611x/qualimap2 + </help> + <citations> + </citations> +</tool>