view snpSift_int.xml @ 8:5fab4f81391d draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit df8a21df77acffe40c0bc0fe0409ca1b529cd7fc"
author iuc
date Sat, 11 Sep 2021 07:17:51 +0000
parents 09d6806c609e
children
line wrap: on
line source

<tool id="snpSift_int" name="SnpSift Intervals" version="@WRAPPER_VERSION@.galaxy0">
    <description>Filter variants using intervals</description>
    <!--
        You can change the amount of memory used, just change the -Xmx parameter (e.g. use -Xmx2G for 2Gb of memory)
    -->
    <macros>
        <import>snpSift_macros.xml</import>
    </macros>
    <expand macro="requirements" />
    <expand macro="stdio" />
    <expand macro="version_command" />
    <command><![CDATA[
SnpSift -Xmx2G intervals
-i '$input'
$exclude
'$bedFile'
> '$output'
    ]]></command>
    <inputs>
        <param name="input" type="data" format="vcf" label="Variant input file in VCF format"/>
        <param name="bedFile" type="data" format="bed" label="Intervals (BED file)"/>
        <param name="exclude" type="boolean" truevalue="-x" falsevalue="" checked="false" label="Exclude Intervals"
            help="Filter out (exclude) VCF entries that match any interval in the BED files"/>
    </inputs>
    <outputs>
        <data name="output" format="vcf" />
    </outputs>
    <tests>
        <test>
            <param name="input" ftype="vcf" value="annotate_5.vcf"/>
            <param name="bedFile" ftype="bed" value="interval.bed"/>
            <param name="exclude" value="False"/>
            <output name="output">
                <assert_contents>
                    <has_text text="872687" />
                    <not_has_text text="1195966" />
                </assert_contents>
            </output>
        </test>
        <test>
            <param name="input" ftype="vcf" value="annotate_5.vcf"/>
            <param name="bedFile" ftype="bed" value="interval.bed"/>
            <param name="exclude" value="True"/>
            <output name="output">
                <assert_contents>
                    <has_text text="1195966" />
                    <not_has_text text="872687" />
                </assert_contents>
            </output>
        </test>
    </tests>
    <help><![CDATA[
You can filter using intervals (BED file).

@EXTERNAL_DOCUMENTATION@
- http://snpeff.sourceforge.net/SnpSift.html#intervals
    ]]></help>
    <expand macro="citations" />
</tool>