|
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 <command>
|
|
|
8 cat $input | java -Xmx2G -jar /home/pcingola/tools/SnpSift.jar int $bedFile > $output
|
|
|
9 </command>
|
|
|
10 <inputs>
|
|
|
11 <param format="Tabular" name="input" type="data" label="VCF input"/>
|
|
|
12 <param format="Tabular" name="bedFile" type="data" label="Intervals (BED file)"/>
|
|
|
13 </inputs>
|
|
|
14 <outputs>
|
|
|
15 <data format="tabular" name="output" />
|
|
|
16 </outputs>
|
|
|
17
|
|
|
18 <help>
|
|
|
19
|
|
|
20 You can filter using intervals (BED file)
|
|
|
21
|
|
|
22 For details about this tool, please go to http://snpeff.sourceforge.net/SnpSift.html#intervals
|
|
|
23
|
|
|
24 </help>
|
|
|
25 </tool>
|