Files
galaxy/tools/maf/maf_limit_size.xml
T

34 lines
1.2 KiB
XML

<tool id="maf_limit_size1" name="Filter MAF blocks" version="1.0.1" profile="24.2">
<description>by Size</description>
<macros>
<import>macros.xml</import>
</macros>
<expand macro="requirements" />
<required_files>
<include path="maf_limit_size.py"/>
</required_files>
<command>python '$__tool_directory__/maf_limit_size.py' '$input1' '$out_file1' '$min_size' '$max_size'</command>
<inputs>
<param format="maf" name="input1" label="MAF File" type="data"/>
<param name="min_size" label="Minimum Size" value="0" type="integer"/>
<param name="max_size" label="Maximum Size" value="0" type="integer" help="A maximum size less than 1 indicates no limit"/>
</inputs>
<outputs>
<data format="maf" name="out_file1" />
</outputs>
<tests>
<test>
<param name="input1" value="3.maf" ftype="maf" />
<param name="min_size" value="0"/>
<param name="max_size" value="0"/>
<output name="out_file1" file="maf_limit_size1_out.maf" />
</test>
</tests>
<help>
**What it does**
This tool takes a MAF file and a size range and extracts the MAF blocks which fall within the specified range.
</help>
<expand macro="citations" />
</tool>