view qualimap_bamqc.xml @ 2:dcd6ab7a3d8f draft

planemo upload for repository https://github.com/zipho/qualimap2 commit 3835f1d76babcb2cce9b241fa77aeadad871e844
author sanbi-uwc
date Wed, 30 Mar 2016 03:29:02 -0400
parents 80b0209b0727
children b00361fe3c52
line wrap: on
line source

<?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}
            --out_pdf_file ${pdf_file}
            --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"/>
        <data format="pdf" name="pdf_file" label="QualiMap: BamQC PDF output"/>
    </outputs>
    <help>Help!</help>
    <citations>
        <citation></citation>
    </citations>
    <tests>
        <test>
        </test>
    </tests>
</tool>