comparison table_annovar.xml @ 2:9c75a9b5ecd2

Add help to tool.
author jeremy goecks <jeremy.goecks@emory.edu>
date Mon, 27 Jan 2014 11:32:02 -0500
parents 75b252cf390e
children 7d2a81d29ca4
comparison
equal deleted inserted replaced
1:a6c64723f5ce 2:9c75a9b5ecd2
1 <tool id="table_annovar" name="Annotate VCF" version="0.1"> 1 <tool id="table_annovar" name="ANNOVAR Annotate VCF" version="0.1">
2 <description>with functional information using ANNOVAR</description> 2 <description>with functional information using ANNOVAR</description>
3 3
4 <requirements> 4 <requirements>
5 <requirement type="package">annovar</requirement> 5 <requirement type="package">annovar</requirement>
6 </requirements> 6 </requirements>
36 #set operation = ','.join( $operation ) 36 #set operation = ','.join( $operation )
37 37
38 ## Reduce variants. 38 ## Reduce variants.
39 ; table_annovar.pl input.avinput ${__get_data_table_entry__('annovar_indexes', 'dbkey', $input.dbkey, 'path')} -protocol ${protocol} -operation ${operation} -nastring NA -buildver ${input.dbkey} --outfile output 39 ; table_annovar.pl input.avinput ${__get_data_table_entry__('annovar_indexes', 'dbkey', $input.dbkey, 'path')} -protocol ${protocol} -operation ${operation} -nastring NA -buildver ${input.dbkey} --outfile output
40 40
41 ## Copy annotated table to output. 41 ## Process annotated table to remove "NA" strings from numerical columns and copy to output.
42 ; cp output.${input.dbkey}_multianno.txt ${output} 42 ; cat output.${input.dbkey}_multianno.txt | replace_NA.py > ${output}
43 </command> 43 </command>
44 44
45 <inputs> 45 <inputs>
46 <param name="input" type="data" format="vcf" metadata_name="dbkey" label="Variants" help=""> 46 <param name="input" type="data" format="vcf" metadata_name="dbkey" label="Variants" help="">
47 <validator type="unspecified_build" /> 47 <validator type="unspecified_build" />
79 79
80 <tests> 80 <tests>
81 </tests> 81 </tests>
82 82
83 <help> 83 <help>
84 **What it does**
85
86 This tool will annotate variants using specified gene annotations, regions, and filtering databases. Input is a VCF dataset, and output is a table of annotations for each variant in the
87 VCF dataset.
88
89 **ANNOVAR Website and Documentation**
90
91 Website: http://www.openbioinformatics.org/annovar/
92
93 Paper: http://nar.oxfordjournals.org/content/38/16/e164
94
95 **Important Usage Note**
96
97 ANNOVAR is open-source and free for non-profit use. If you use it for commercial purposes, please contact BIOBASE (info@biobase-international.com) directly for license related issues. Also see http://www.openbioinformatics.org/annovar/annovar_faq.html#license
98
84 </help> 99 </help>
85 </tool> 100 </tool>