annotate snpSift_vcfCheck.xml @ 9:88f4997ccb02 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit 93465571cf180554c3548338a68fa0f1604985dc-dirty
author jjohnson
date Mon, 11 Apr 2016 09:31:49 -0400
parents 2f40467536cf
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
baf6602903e1 Uploaded
jjohnson
parents: 3
diff changeset
1 <tool id="snpSift_vcfCheck" name="SnpSift vcfCheck" version="@WRAPPER_VERSION@.0">
3
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
2 <description>basic checks for Vcf specification compliance</description>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
3 <macros>
4
baf6602903e1 Uploaded
jjohnson
parents: 3
diff changeset
4 <import>snpSift_macros.xml</import>
3
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
5 </macros>
4
baf6602903e1 Uploaded
jjohnson
parents: 3
diff changeset
6 <expand macro="requirements" />
baf6602903e1 Uploaded
jjohnson
parents: 3
diff changeset
7 <expand macro="stdio" />
baf6602903e1 Uploaded
jjohnson
parents: 3
diff changeset
8 <expand macro="version_command" />
baf6602903e1 Uploaded
jjohnson
parents: 3
diff changeset
9 <command><![CDATA[
8
2f40467536cf planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit 93465571cf180554c3548338a68fa0f1604985dc-dirty
jjohnson
parents: 4
diff changeset
10 java -Xmx2G -jar "\$SNPEFF_JAR_PATH/SnpSift.jar" vcfCheck "$input" > "$output"
4
baf6602903e1 Uploaded
jjohnson
parents: 3
diff changeset
11 ]]>
3
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
12 </command>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
13 <inputs>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
14 <param format="vcf" name="input" type="data" label="Variant input file in VCF format to check"/>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
15 </inputs>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
16 <outputs>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
17 <data format="vcf" name="output" />
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
18 </outputs>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
19 <tests>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
20 <test>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
21 <param name="input" ftype="vcf" value="test-data/test_bad.vcf"/>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
22 <output name="output">
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
23 <assert_contents>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
24 <has_text text="Errors" />
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
25 </assert_contents>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
26 </output>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
27 </test>
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
28 </tests>
4
baf6602903e1 Uploaded
jjohnson
parents: 3
diff changeset
29 <help><![CDATA[
3
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
30
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
31 Perform some basic check ups on VCF files to spot common problems.
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
32
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
33 SnpSift vcfCheck checks for some common problems where VCF files are not following the specification. Given that many common VCF problems cause analysis tools and pipelines to behave unexpectedly, this command is intended as a simple debugging tool.
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
34
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
35 @EXTERNAL_DOCUMENTATION@
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
36 http://snpeff.sourceforge.net/SnpSift.html#vcfCheck
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
37
4
baf6602903e1 Uploaded
jjohnson
parents: 3
diff changeset
38 ]]>
3
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
39 </help>
8
2f40467536cf planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift commit 93465571cf180554c3548338a68fa0f1604985dc-dirty
jjohnson
parents: 4
diff changeset
40 <expand macro="citations" />
3
1739678def32 Add vcfCheck and test cases
Jim Johnson <jj@umn.edu>
parents:
diff changeset
41 </tool>