Mercurial > repos > iuc > snpsift
annotate snpSift_int.xml @ 2:bf8c1526871b draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12355cea76843e3ed6f09d96c3e9fe22afe4a4f
author | iuc |
---|---|
date | Mon, 05 Dec 2016 12:11:18 -0500 |
parents | 98708b88af9f |
children | 20c7d583fec1 |
rev | line source |
---|---|
2
bf8c1526871b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12355cea76843e3ed6f09d96c3e9fe22afe4a4f
iuc
parents:
1
diff
changeset
|
1 <tool id="snpSift_int" name="SnpSift Intervals" version="@WRAPPER_VERSION@.1"> |
0 | 2 <description>Filter variants using intervals</description> |
3 <!-- | |
4 You can change the amount of memory used, just change the -Xmx parameter (e.g. use -Xmx2G for 2Gb of memory) | |
5 --> | |
6 <macros> | |
7 <import>snpSift_macros.xml</import> | |
8 </macros> | |
1
98708b88af9f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit 21b46ae2c90ba7e569b2b3a9eaf938f8dedb2c31
iuc
parents:
0
diff
changeset
|
9 <expand macro="requirements" /> |
98708b88af9f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit 21b46ae2c90ba7e569b2b3a9eaf938f8dedb2c31
iuc
parents:
0
diff
changeset
|
10 <expand macro="stdio" /> |
98708b88af9f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit 21b46ae2c90ba7e569b2b3a9eaf938f8dedb2c31
iuc
parents:
0
diff
changeset
|
11 <expand macro="version_command" /> |
98708b88af9f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit 21b46ae2c90ba7e569b2b3a9eaf938f8dedb2c31
iuc
parents:
0
diff
changeset
|
12 <command><![CDATA[ |
2
bf8c1526871b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12355cea76843e3ed6f09d96c3e9fe22afe4a4f
iuc
parents:
1
diff
changeset
|
13 @CONDA_SNPSIFT_JAR_PATH@ && |
bf8c1526871b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12355cea76843e3ed6f09d96c3e9fe22afe4a4f
iuc
parents:
1
diff
changeset
|
14 java -Xmx2G -jar "\$SNPSIFT_JAR_PATH/SnpSift.jar" intervals -i "$input" $exclude "$bedFile" > "$output" |
1
98708b88af9f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit 21b46ae2c90ba7e569b2b3a9eaf938f8dedb2c31
iuc
parents:
0
diff
changeset
|
15 ]]> |
0 | 16 </command> |
17 <inputs> | |
18 <param format="vcf" name="input" type="data" label="Variant input file in VCF format"/> | |
19 <param format="bed" name="bedFile" type="data" label="Intervals (BED file)"/> | |
20 <param name="exclude" type="boolean" truevalue="-x" falsevalue="" checked="false" label="Exclude Intervals" | |
21 help="Filter out (exclude) VCF entries that match any interval in the BED files"/> | |
22 </inputs> | |
23 <outputs> | |
24 <data format="vcf" name="output" /> | |
25 </outputs> | |
26 <tests> | |
27 <test> | |
28 <param name="input" ftype="vcf" value="annotate_5.vcf"/> | |
29 <param name="bedFile" ftype="bed" value="interval.bed"/> | |
30 <param name="exclude" value="False"/> | |
31 <output name="output"> | |
32 <assert_contents> | |
33 <has_text text="872687" /> | |
34 <not_has_text text="1195966" /> | |
35 </assert_contents> | |
36 </output> | |
37 </test> | |
38 <test> | |
39 <param name="input" ftype="vcf" value="annotate_5.vcf"/> | |
40 <param name="bedFile" ftype="bed" value="interval.bed"/> | |
41 <param name="exclude" value="True"/> | |
42 <output name="output"> | |
43 <assert_contents> | |
44 <has_text text="1195966" /> | |
45 <not_has_text text="872687" /> | |
46 </assert_contents> | |
47 </output> | |
48 </test> | |
49 </tests> | |
1
98708b88af9f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit 21b46ae2c90ba7e569b2b3a9eaf938f8dedb2c31
iuc
parents:
0
diff
changeset
|
50 <help><![CDATA[ |
0 | 51 |
52 You can filter using intervals (BED file). | |
53 | |
54 @EXTERNAL_DOCUMENTATION@ | |
55 http://snpeff.sourceforge.net/SnpSift.html#intervals | |
56 | |
1
98708b88af9f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit 21b46ae2c90ba7e569b2b3a9eaf938f8dedb2c31
iuc
parents:
0
diff
changeset
|
57 ]]> |
0 | 58 </help> |
1
98708b88af9f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit 21b46ae2c90ba7e569b2b3a9eaf938f8dedb2c31
iuc
parents:
0
diff
changeset
|
59 <expand macro="citations" /> |
0 | 60 </tool> |