Mercurial > repos > iuc > snpsift
annotate snpSift_int.xml @ 14:80da7fae14b8 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:10:54 -0500 |
| parents | ed810da439cc |
| children | 8bd645802765 |
| rev | line source |
|---|---|
|
14
80da7fae14b8
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12355cea76843e3ed6f09d96c3e9fe22afe4a4f
iuc
parents:
13
diff
changeset
|
1 <tool id="snpSift_int" name="SnpSift Intervals" version="@WRAPPER_VERSION@.1"> |
| 0 | 2 <description>Filter variants using intervals</description> |
|
13
ed810da439cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12a2e9dd273b4c23db48bbb747f32700887710e
iuc
parents:
11
diff
changeset
|
3 <!-- |
| 0 | 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> | |
|
11
b884686a80dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit 344140b8df53b8b7024618bb04594607a045c03a
iuc
parents:
0
diff
changeset
|
9 <expand macro="requirements" /> |
|
b884686a80dc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit 344140b8df53b8b7024618bb04594607a045c03a
iuc
parents:
0
diff
changeset
|
10 <expand macro="stdio" /> |
|
13
ed810da439cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12a2e9dd273b4c23db48bbb747f32700887710e
iuc
parents:
11
diff
changeset
|
11 <expand macro="version_command" /> |
|
ed810da439cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12a2e9dd273b4c23db48bbb747f32700887710e
iuc
parents:
11
diff
changeset
|
12 <command><![CDATA[ |
|
14
80da7fae14b8
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12355cea76843e3ed6f09d96c3e9fe22afe4a4f
iuc
parents:
13
diff
changeset
|
13 @CONDA_SNPSIFT_JAR_PATH@ && |
|
80da7fae14b8
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12355cea76843e3ed6f09d96c3e9fe22afe4a4f
iuc
parents:
13
diff
changeset
|
14 java -Xmx2G -jar "\$SNPSIFT_JAR_PATH/SnpSift.jar" intervals -i "$input" $exclude "$bedFile" > "$output" |
|
13
ed810da439cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12a2e9dd273b4c23db48bbb747f32700887710e
iuc
parents:
11
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)"/> | |
|
13
ed810da439cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12a2e9dd273b4c23db48bbb747f32700887710e
iuc
parents:
11
diff
changeset
|
20 <param name="exclude" type="boolean" truevalue="-x" falsevalue="" checked="false" label="Exclude Intervals" |
| 0 | 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> | |
|
13
ed810da439cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12a2e9dd273b4c23db48bbb747f32700887710e
iuc
parents:
11
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 | |
|
13
ed810da439cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12a2e9dd273b4c23db48bbb747f32700887710e
iuc
parents:
11
diff
changeset
|
57 ]]> |
| 0 | 58 </help> |
|
13
ed810da439cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit d12a2e9dd273b4c23db48bbb747f32700887710e
iuc
parents:
11
diff
changeset
|
59 <expand macro="citations" /> |
| 0 | 60 </tool> |
