Mercurial > repos > iuc > snpeff
annotate snpEff.xml @ 2:e09ce114d240 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
author | iuc |
---|---|
date | Fri, 19 Feb 2016 08:26:25 -0500 |
parents | 500832f27cbc |
children | b24873564cf6 |
rev | line source |
---|---|
1 | 1 <tool id="snpEff" name="SnpEff" version="@WRAPPER_VERSION@.0"> |
0 | 2 <description>Variant effect and annotation</description> |
3 <expand macro="requirements" /> | |
4 <macros> | |
5 <import>snpEff_macros.xml</import> | |
6 </macros> | |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
7 <expand macro="requirements" /> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
8 <expand macro="stdio" /> |
0 | 9 <command> |
1 | 10 <![CDATA[ |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
11 java -Xmx6G -jar "\$SNPEFF_JAR_PATH/snpEff.jar" eff |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
12 -c "\$SNPEFF_JAR_PATH/snpEff.config" |
1 | 13 -i $inputFormat -o ${outputConditional.outputFormat} -upDownStreamLen $udLength |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
14 #if $spliceSiteSize and str($spliceSiteSize) != '': |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
15 -spliceSiteSize "$spliceSiteSize" |
0 | 16 #end if |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
17 #if $annotations and str($annotations) != '': |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
18 #echo " " |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
19 #echo ' '.join(str($annotations).split(',')) |
0 | 20 #end if |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
21 #if $filterOut and str($filterOut) != '': |
0 | 22 #echo " " |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
23 #echo ' '.join(str($filterOut).split(',')) |
0 | 24 #end if |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
25 #if $filter.specificEffects == 'yes' and $filter.effects: |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
26 #for $eff in str($filter.effects).split(','): |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
27 -no $eff |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
28 #end for |
0 | 29 #end if |
30 #if str( $transcripts ) != 'None': | |
31 -onlyTr $transcripts | |
32 #end if | |
33 #if str( $intervals ) != 'None': ### fix this for multiple dataset input | |
34 -interval $intervals | |
35 #end if | |
36 #if $statsFile: | |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
37 -stats $statsFile |
0 | 38 #end if |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
39 #if str($offset) != 'default': |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
40 ${offset} |
0 | 41 #end if |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
42 #if str($chr).strip() != '': |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
43 -chr "$chr" |
0 | 44 #end if |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
45 $noLog |
0 | 46 #if $snpDb.genomeSrc == 'cached': |
47 -dataDir ${snpDb.genomeVersion.fields.path} | |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
48 #if $snpDb.extra_annotations and str($snpDb.extra_annotations) != '': |
0 | 49 #echo " " |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
50 #echo ' '.join(str($snpDb.extra_annotations).split(',')) |
0 | 51 #end if |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
52 #if $snpDb.regulation and str($snpDb.regulation) != '': |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
53 -reg #echo ' -reg '.join(str($snpDb.regulation).split(','))# |
0 | 54 #end if |
55 $snpDb.genomeVersion | |
56 #elif $snpDb.genomeSrc == 'history': | |
57 -dataDir ${snpDb.snpeff_db.extra_files_path} | |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
58 #if $snpDb.extra_annotations and str($snpDb.extra_annotations) != '': |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
59 #set xannotations = [' '] + str($snpDb.extra_annotations).split(',') |
0 | 60 #echo " " |
61 #echo ' -'.join($xannotations) | |
62 #end if | |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
63 #if $snpDb.regulation and str($snpDb.regulation) != '': |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
64 -reg #echo ' -reg '.join(str($snpDb.regulation).split(','))# |
0 | 65 #end if |
66 ${snpDb.snpeff_db.metadata.genome_version} | |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
67 #else |
0 | 68 -download |
69 $snpDb.genome_version | |
70 #end if | |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
71 "$input" > "$snpeff_output"; |
1 | 72 #if $statsFile: |
73 #import os | |
74 #set $genes_file = str($statsFile) + '.genes.txt' | |
75 #set $genes_file_name = os.path.split($genes_file)[-1] | |
76 mkdir $statsFile.files_path; | |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
77 mv "$genes_file" #echo os.path.join($statsFile.files_path, $genes_file_name)#; |
1 | 78 #end if |
79 #if $outputConditional.outputFormat == 'gatk' and $outputConditional.gatk_v1 | |
80 ## Replace real SnpEff version with 2.0.5 to prevent this GATK 1.x error: "The version of SnpEff used to generate the SnpEff input file (x.x) is not currently supported by the GATK. Supported versions are: [2.0.5]" | |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
81 sed -i -e 's/^\#\#SnpEffVersion="\(\S*\s\)/\#\#SnpEffVersion="2.0.5 - real is \1/' "$snpeff_output" |
1 | 82 #end if |
83 ]]> | |
0 | 84 </command> |
85 <inputs> | |
86 <param format="vcf,tabular,pileup,bed" name="input" type="data" label="Sequence changes (SNPs, MNPs, InDels)"/> | |
87 | |
88 <param name="inputFormat" type="select" label="Input format"> | |
89 <option value="vcf" selected="true">VCF</option> | |
90 <option value="txt">Tabular (Deprecated)</option> | |
91 <option value="pileup">Pileup (Deprecated)</option> | |
92 <option value="bed">BED (Deprecated)</option> | |
93 </param> | |
94 | |
1 | 95 <conditional name="outputConditional"> |
96 <param name="outputFormat" type="select" label="Output format"> | |
97 <option value="vcf" selected="true">VCF (only if input is VCF)</option> | |
98 <option value="gatk">GATK-compatible VCF (only if input is VCF)</option> | |
99 <option value="txt">Tabular</option> | |
100 <option value="bed">BED</option> | |
101 <option value="bedAnn">BED annotations</option> | |
102 </param> | |
103 <when value="vcf" /> | |
104 <when value="gatk"> | |
105 <param name="gatk_v1" type="boolean" checked="true" label="Compatible with GATK 1.x" /> | |
106 </when> | |
107 <when value="txt" /> | |
108 <when value="bed" /> | |
109 <when value="bedAnn" /> | |
110 </conditional> | |
0 | 111 |
112 <conditional name="snpDb"> | |
113 <param name="genomeSrc" type="select" label="Genome source"> | |
114 <option value="cached">Locally installed reference genome</option> | |
115 <option value="history">Reference genome from your history</option> | |
116 <option value="named">Named on demand</option> | |
117 </param> | |
118 <when value="cached"> | |
119 <param name="genomeVersion" type="select" label="Genome"> | |
120 <!--GENOME DESCRIPTION--> | |
1 | 121 <options from_data_table="snpeffv_genomedb"> |
122 <filter type="static_value" name="snpeff_version" value="@SNPEFF_VERSION@" column="1"/> | |
123 <filter type="unique_value" column="2" /> | |
0 | 124 </options> |
125 </param> | |
1 | 126 <param name="extra_annotations" type="select" display="checkboxes" multiple="true" label="Additional annotations"> |
0 | 127 <help>These are available for only a few genomes</help> |
1 | 128 <options from_data_table="snpeffv_annotations"> |
129 <filter type="param_value" ref="genomeVersion" key="genome" column="2" /> | |
130 <filter type="unique_value" column="3" /> | |
0 | 131 </options> |
132 </param> | |
1 | 133 <param name="regulation" type="select" display="checkboxes" multiple="true" label="Non-coding and regulatory annotation"> |
0 | 134 <help>These are available for only a few genomes</help> |
1 | 135 <options from_data_table="snpeffv_regulationdb"> |
136 <filter type="param_value" ref="genomeVersion" key="genome" column="2" /> | |
137 <filter type="unique_value" column="3" /> | |
0 | 138 </options> |
139 </param> | |
140 </when> | |
141 <when value="history"> | |
1 | 142 <param format="snpeffdb" name="snpeff_db" type="data" label="@SNPEFF_VERSION@ Genome Data"> |
143 <options options_filter_attribute="metadata.snpeff_version" > | |
144 <filter type="add_value" value="@SNPEFF_VERSION@" /> | |
145 </options> | |
146 <validator type="expression" message="This version of SnpEff will only work with @SNPEFF_VERSION@ Genome databases.">value is not None and value.metadata.snpeff_version == "@SNPEFF_VERSION@"</validator> | |
147 </param> | |
0 | 148 <!-- From metadata --> |
1 | 149 <param name="extra_annotations" type="select" display="checkboxes" multiple="true" label="Additional annotations"> |
0 | 150 <help>These are available for only a few genomes</help> |
151 <options> | |
152 <filter type="data_meta" ref="snpeff_db" key="annotation" /> | |
153 </options> | |
154 </param> | |
1 | 155 <param name="regulation" type="select" display="checkboxes" multiple="true" label="Non-coding and regulatory annotation"> |
0 | 156 <help>These are available for only a few genomes</help> |
157 <options> | |
158 <filter type="data_meta" ref="snpeff_db" key="regulation" /> | |
159 </options> | |
160 </param> | |
161 </when> | |
162 <when value="named"> | |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
163 <param name="genome_version" type="text" value="" label="Snpff Genome Version Name (e.g. GRCh38.76)"> |
1 | 164 <help>@SNPEFF_DATABASE_URL@</help> |
165 <validator type="regex" message="A genome version name is required">\S+</validator> | |
166 </param> | |
0 | 167 </when> |
168 </conditional> | |
169 | |
170 <param name="udLength" type="select" label="Upstream / Downstream length"> | |
171 <option value="0">No upstream / downstream intervals (0 bases)</option> | |
172 <option value="200">200 bases</option> | |
173 <option value="500">500 bases</option> | |
174 <option value="1000">1000 bases</option> | |
175 <option value="2000">2000 bases</option> | |
176 <option value="5000" selected="true">5000 bases</option> | |
177 <option value="10000">10000 bases</option> | |
178 <option value="20000">20000 bases</option> | |
179 </param> | |
180 | |
181 <param name="spliceSiteSize" type="select" optional="true" label="Set size for splice sites (donor and acceptor) in bases" help="Default: 2"> | |
182 <option value="1">1 base</option> | |
1 | 183 <option value="2" selected="true">2 bases</option> |
0 | 184 <option value="3">3 bases</option> |
185 <option value="4">4 bases</option> | |
186 <option value="5">5 bases</option> | |
187 <option value="6">6 bases</option> | |
188 <option value="7">7 bases</option> | |
189 <option value="8">8 bases</option> | |
190 <option value="9">9 bases</option> | |
191 </param> | |
192 | |
193 <param name="annotations" type="select" display="checkboxes" multiple="true" label="Annotation options"> | |
1 | 194 <option value="-cancer">Perform 'cancer' comparisons (somatic vs. germline)</option> |
0 | 195 <option value="-canon">Only use canonical transcripts</option> |
196 <option value="-geneId">Use gene ID instead of gene name (VCF output)</option> | |
1 | 197 <option value="-lof">Add loss of function (LOF) and nonsense mediated decay (NMD) tags</option> |
0 | 198 <option value="-oicr">Add OICR tag in VCF file</option> |
199 <option value="-onlyReg">Only use regulation tracks</option> | |
1 | 200 <option value="-classic">Use Classic Effect names and amino acid variant annotations (NON_SYNONYMOUS_CODING vs missense_variant and G180R vs p.Gly180Arg/c.538G>C)</option> |
201 <option value="-hgvs">Override classic and use HGVS annotations for amino acid annotations (p.Gly180Arg/c.538G>C vs G180R)</option> | |
202 <option value="-sequenceOntology">Override classic and use Sequence Ontolgy terms for effects (missense_variant vs NON_SYNONYMOUS_CODING)</option> | |
0 | 203 </param> |
204 <param name="intervals" format="bed" type="data" optional="true" label="Use custom interval file for annotation"/> | |
205 <param name="transcripts" format="tabular" type="data" optional="true" label="Only use the transcripts in this file." help="Format is one transcript ID per line."/> | |
206 <param name="filterOut" type="select" display="checkboxes" multiple="true" label="Filter output"> | |
207 <option value="-no-downstream">Do not show DOWNSTREAM changes</option> | |
208 <option value="-no-intergenic">Do not show INTERGENIC changes</option> | |
209 <option value="-no-intron">Do not show INTRON changes</option> | |
210 <option value="-no-upstream">Do not show UPSTREAM changes</option> | |
211 <option value="-no-utr">Do not show 5_PRIME_UTR or 3_PRIME_UTR changes</option> | |
212 </param> | |
2
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
213 <conditional name="filter"> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
214 <param name="specificEffects" type="select" label="Filter out specific Effects"> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
215 <option value="no">No</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
216 <option value="yes">Yes</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
217 </param> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
218 <when value="no"/> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
219 <when value="yes"> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
220 <param name="effects" type="select" display="checkboxes" multiple="true" label="Filter output: do not report these Effects"> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
221 <option value="CDS">CDS (coding_sequence_variant) The variant hits a CDS. MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
222 <option value="CHROMOSOME_LARGE_DELETION">CHROMOSOME_LARGE_DELETION (chromosome) A large parte (over 1%) of the chromosome was deleted. HIGH</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
223 <option value="CODON_CHANGE">CODON_CHANGE (coding_sequence_variant) One or many codons are changed e.g.: An MNP of size multiple of 3 MODERATE</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
224 <option value="CODON_INSERTION">CODON_INSERTION (inframe_insertion) One or many codons are inserted e.g.: An insert multiple of three in a codon boundary MODERATE</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
225 <option value="CODON_CHANGE_PLUS_CODON_INSERTION">CODON_CHANGE_PLUS_CODON_INSERTION (disruptive_inframe_insertion) One codon is changed and one or many codons are inserted e.g.: An insert of size multiple of three, not at codon boundary MODERATE</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
226 <option value="CODON_DELETION">CODON_DELETION (inframe_deletion) One or many codons are deleted e.g.: A deletion multiple of three at codon boundary MODERATE</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
227 <option value="CODON_CHANGE_PLUS_CODON_DELETION">CODON_CHANGE_PLUS_CODON_DELETION (disruptive_inframe_deletion) One codon is changed and one or more codons are deleted e.g.: A deletion of size multiple of three, not at codon boundary MODERATE</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
228 <option value="DOWNSTREAM">DOWNSTREAM (downstream_gene_variant) Downstream of a gene (default length: 5K bases) MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
229 <option value="EXON">EXON (exon_variant) The variant hits an exon (from a non-coding transcript) or a retained intron. MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
230 <option value="EXON_DELETED">EXON_DELETED (exon_loss_variant) A deletion removes the whole exon. HIGH</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
231 <option value="FRAME_SHIFT">FRAME_SHIFT (frameshift_variant) Insertion or deletion causes a frame shift e.g.: An indel size is not multple of 3 HIGH</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
232 <option value="GENE">GENE (gene_variant) The variant hits a gene. MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
233 <option value="INTERGENIC">INTERGENIC (intergenic_region) The variant is in an intergenic region MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
234 <option value="INTERGENIC_CONSERVED">INTERGENIC_CONSERVED (conserved_intergenic_variant) The variant is in a highly conserved intergenic region MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
235 <option value="INTRAGENIC">INTRAGENIC (intragenic_variant) The variant hits a gene, but no transcripts within the gene MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
236 <option value="INTRON">INTRON (intron_variant) Variant hits and intron. Technically, hits no exon in the transcript. MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
237 <option value="INTRON_CONSERVED">INTRON_CONSERVED (conserved_intron_variant) The variant is in a highly conserved intronic region MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
238 <option value="MICRO_RNA">MICRO_RNA (miRNA) Variant affects an miRNA MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
239 <option value="NON_SYNONYMOUS_CODING">NON_SYNONYMOUS_CODING (missense_variant) Variant causes a codon that produces a different amino acid e.g.: Tgg/Cgg, W/R MODERATE</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
240 <option value="NON_SYNONYMOUS_START">NON_SYNONYMOUS_START (initiator_codon_variant) Variant causes start codon to be mutated into another start codon (the new codon produces a different AA). e.g.: Atg/Ctg, M/L (ATG and CTG can be START codons) LOW</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
241 <option value="NON_SYNONYMOUS_STOP">NON_SYNONYMOUS_STOP (stop_retained_variant) Variant causes stop codon to be mutated into another stop codon (the new codon produces a different AA). e.g.: Atg/Ctg, M/L (ATG and CTG can be START codons) LOW</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
242 <option value="RARE_AMINO_ACID">RARE_AMINO_ACID (rare_amino_acid_variant) The variant hits a rare amino acid thus is likely to produce protein loss of function HIGH</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
243 <option value="SPLICE_SITE_ACCEPTOR">SPLICE_SITE_ACCEPTOR (splice_acceptor_variant) The variant hits a splice acceptor site (defined as two bases before exon start, except for the first exon). HIGH</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
244 <option value="SPLICE_SITE_DONOR">SPLICE_SITE_DONOR (splice_donor_variant) The variant hits a Splice donor site (defined as two bases after coding exon end, except for the last exon). HIGH</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
245 <option value="SPLICE_SITE_REGION">SPLICE_SITE_REGION (splice_region_variant) A sequence variant in which a change has occurred within the region of the splice site, either within 1-3 bases of the exon or 3-8 bases of the intron. LOW</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
246 <option value="SPLICE_SITE_BRANCH">SPLICE_SITE_BRANCH (splice_region_variant) A varaint affective putative (Lariat) branch point, located in the intron. LOW</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
247 <option value="SPLICE_SITE_BRANCH_U12">SPLICE_SITE_BRANCH_U12 (splice_region_variant) A varaint affective putative (Lariat) branch point from U12 splicing machinery, located in the intron. MODERATE</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
248 <option value="STOP_LOST">STOP_LOST (stop_lost) Variant causes stop codon to be mutated into a non-stop codon e.g.: Tga/Cga, */R HIGH</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
249 <option value="START_GAINED">START_GAINED (5_prime_UTR_premature start_codon_gain_variant) A variant in 5'UTR region produces a three base sequence that can be a START codon. LOW</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
250 <option value="START_LOST">START_LOST (start_lost) Variant causes start codon to be mutated into a non-start codon. e.g.: aTg/aGg, M/R HIGH</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
251 <option value="STOP_GAINED">STOP_GAINED (stop_gained) Variant causes a STOP codon e.g.: Cag/Tag, Q/* HIGH</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
252 <option value="SYNONYMOUS_CODING">SYNONYMOUS_CODING (synonymous_variant) Variant causes a codon that produces the same amino acid e.g.: Ttg/Ctg, L/L LOW</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
253 <option value="SYNONYMOUS_START">SYNONYMOUS_START (start_retained) Variant causes start codon to be mutated into another start codon. e.g.: Ttg/Ctg, L/L (TTG and CTG can be START codons) LOW</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
254 <option value="SYNONYMOUS_STOP">SYNONYMOUS_STOP (stop_retained_variant) Variant causes stop codon to be mutated into another stop codon. e.g.: taA/taG, */* LOW</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
255 <option value="TRANSCRIPT">TRANSCRIPT (transcript_variant) The variant hits a transcript. MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
256 <option value="REGULATION">REGULATION (regulatory_region_variant) The variant hits a known regulatory feature (non-coding). MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
257 <option value="UPSTREAM">UPSTREAM (upstream_gene_variant) Upstream of a gene (default length: 5K bases) MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
258 <option value="UTR_3_PRIME">UTR_3_PRIME (3_prime_UTR_variant) Variant hits 3'UTR region MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
259 <option value="UTR_3_DELETED">UTR_3_DELETED (3_prime_UTR_truncation + exon_loss) The variant deletes an exon which is in the 3'UTR of the transcript MODERATE</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
260 <option value="UTR_5_PRIME">UTR_5_PRIME (5_prime_UTR_variant) Variant hits 5'UTR region MODIFIER</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
261 <option value="UTR_5_DELETED">UTR_5_DELETED (5_prime_UTR_truncation + exon_loss_variant) The variant deletes an exon which is in the 5'UTR of the transcript MODERATE</option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
262 <option value="NEXT_PROT">NEXT_PROT (sequence_feature + exon_loss_variant) A 'NextProt' based annotation. Details are provided in the 'feature type' sub-field (ANN), or in the effect details (EFF). MODERATE </option> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
263 |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
264 </param> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
265 </when> |
e09ce114d240
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff
iuc
parents:
1
diff
changeset
|
266 </conditional> |
0 | 267 |
268 <param name="offset" type="select" display="radio" optional="true" label="Chromosomal position"> | |
1 | 269 <option value="default" selected="true">Use default (based on input type)</option> |
0 | 270 <option value="-0">Force zero-based positions (both input and output)</option> |
271 <option value="-1">Force one-based positions (both input and output)</option> | |
272 </param> | |
273 <param name="chr" type="text" optionl="true" label="Text to prepend to chromosome name"> | |
274 <help> | |
275 By default SnpEff simplifies all chromosome names. For instance 'chr1' is just '1'. | |
276 You can prepend any string you want to the chromosome name. | |
277 </help> | |
278 <validator type="regex" message="No whitespace allowed">^\S*$</validator> | |
279 </param> | |
280 <param name="generate_stats" type="boolean" truevalue="" falsevalue="-noStats" checked="true" label="Produce Summary Stats"/> | |
281 <param name="noLog" type="boolean" truevalue="-noLog" falsevalue="" checked="true" label="Do not report usage statistics to server"/> | |
282 </inputs> | |
283 <outputs> | |
284 <data format="vcf" name="snpeff_output" > | |
285 <change_format> | |
1 | 286 <when input="outputConditional.outputFormat" value="txt" format="tabular" /> |
287 <when input="outputConditional.outputFormat" value="bed" format="bed" /> | |
288 <when input="outputConditional.outputFormat" value="bedAnn" format="bed" /> | |
0 | 289 </change_format> |
290 </data> | |
1 | 291 <data format="html" name="statsFile" label="${tool.name} on ${on_string} - stats"> |
0 | 292 <filter>generate_stats == True</filter> |
293 </data> | |
294 </outputs> | |
295 <tests> | |
296 <!-- Check that an effect was added in out VCF --> | |
297 <!-- Check for a HTML header indicating that this was successful --> | |
298 <!-- | |
299 <output name="statsFile"> | |
300 <assert_contents> | |
301 <has_text text="SnpEff: Variant analysis" /> | |
302 </assert_contents> | |
303 </output> | |
304 --> | |
305 <!-- Setting filterOut throws exception in twilltestcase.py | |
306 <test> | |
307 <param name="input" ftype="vcf" value="vcf_homhet.vcf"/> | |
308 <param name="inputFormat" value="vcf"/> | |
309 <param name="outputFormat" value="vcf"/> | |
310 <param name="genomeSrc" value="named"/> | |
311 <param name="genome_version" value="testCase"/> | |
312 <param name="udLength" value="0"/> | |
313 <param name="generate_stats" value="False"/> | |
314 <param name="filterOut" value="+-no-upstream"/> | |
315 <output name="snpeff_output"> | |
316 <assert_contents> | |
317 <has_text text="EFF=" /> | |
318 </assert_contents> | |
319 </output> | |
320 </test> | |
321 --> | |
322 | |
323 <test> | |
324 <param name="input" ftype="vcf" value="vcf_homhet.vcf"/> | |
325 <param name="inputFormat" value="vcf"/> | |
326 <param name="outputFormat" value="vcf"/> | |
327 <param name="genomeSrc" value="named"/> | |
328 <param name="genome_version" value="testCase"/> | |
329 <param name="udLength" value="0"/> | |
330 <!-- | |
331 <param name="filterOut" value=""/> | |
332 --> | |
333 <param name="generate_stats" value="False"/> | |
334 <output name="snpeff_output"> | |
335 <assert_contents> | |
336 <!-- Check that deleletions were evaluated --> | |
337 <has_text_matching expression="Y\t59030478\t.*EFF=INTERGENIC" /> | |
338 <!-- Check that insertion on last line was NOT evaluated --> | |
339 <has_text_matching expression="Y\t59032947\t.*SF=5\tGT" /> | |
340 </assert_contents> | |
341 </output> | |
342 </test> | |
343 | |
344 <!-- Check that NO UPSTREAM effect was added --> | |
345 <!-- Setting filterOut throws exception in twilltestcase.py | |
346 <test> | |
347 <param name="input" ftype="vcf" value="vcf_homhet.vcf"/> | |
348 <param name="inputFormat" value="vcf"/> | |
349 <param name="outputFormat" value="vcf"/> | |
350 <param name="genomeSrc" value="named"/> | |
351 <param name="genome_version" value="testCase"/> | |
352 <param name="udLength" value="0"/> | |
353 <param name="filterOut" value="+-no-upstream"/> | |
354 <param name="generate_stats" value="False"/> | |
355 <output name="snpeff_output"> | |
356 <assert_contents> | |
357 <not_has_text text="UPSTREAM" /> | |
358 </assert_contents> | |
359 </output> | |
360 </test> | |
361 --> | |
362 | |
363 </tests> | |
364 <help> | |
365 | |
366 This tool calculate the effect of variants (SNPs/MNPs/Insertions) and deletions. | |
367 | |
368 @EXTERNAL_DOCUMENTATION@ | |
369 | |
370 @CITATION_SECTION@ | |
371 | |
372 </help> | |
1 | 373 <expand macro="citations" /> |
0 | 374 </tool> |
375 |