0
|
1 <tool id="snpSift_int" name="SnpSift Intervals" version="1.0">
|
|
2 <description>Filter variants using intervals </description>
|
|
3 <!--
|
|
4 You will need to change the path to wherever your installation is.
|
|
5 You can change the amount of memory used, just change the -Xmx parameter (e.g. use -Xmx2G for 2Gb of memory)
|
|
6 -->
|
|
7 <requirements>
|
1
|
8 <requirement type="package" version="3.0f">snpEff</requirement>
|
0
|
9 <requirement type="set_environment">JAVA_JAR_PATH </requirement>
|
|
10 </requirements>
|
|
11 <command>
|
|
12 cat $input | java -Xmx2G -jar $JAVA_JAR_PATH/SnpSift.jar int $bedFile > $output
|
|
13 </command>
|
|
14 <inputs>
|
|
15 <param format="vcf" name="input" type="data" label="VCF input"/>
|
|
16 <param format="bed" name="bedFile" type="data" label="Intervals (BED file)"/>
|
|
17 </inputs>
|
|
18 <outputs>
|
|
19 <data format="vcf" name="output" />
|
|
20 </outputs>
|
|
21
|
|
22 <help>
|
|
23
|
|
24 You can filter using intervals (BED file)
|
|
25
|
|
26 For details about this tool, please go to http://snpeff.sourceforge.net/SnpSift.html#intervals
|
|
27
|
|
28 </help>
|
|
29 </tool>
|