Mercurial > repos > jjohnson > snpeff
annotate snpEff.xml @ 7:b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
author | Jim Johnson <jj@umn.edu> |
---|---|
date | Thu, 28 Mar 2013 12:29:45 -0500 |
parents | 3b0c657b852b |
children | 13b6ad2ddace |
rev | line source |
---|---|
0 | 1 <tool id="snpEff" name="SnpEff" version="3.1"> |
2 <description>Variant effect and annotation</description> | |
3 <!-- | |
4 You will need to change the path to wherever your installation is. | |
5 You can change the amount of memory used by snpEff, just change the -Xmx parameter (e.g. use -Xmx2G for 2Gb of memory) | |
6 <command>java -Xmx6G -jar /path/to/your/snpEff/snpEff.jar eff -c /path/to/your/snpEff/snpEff/snpEff.config $inputFormat $offset -upDownStreamLen $udLength $filterIn $filterHomHet -no $filterOut -stats $statsFile $genomeVersion $input > $output </command> | |
7 --> | |
8 <requirements> | |
9 <requirement type="package" version="3.1">snpEff</requirement> | |
10 </requirements> | |
11 <command> | |
3 | 12 SNPEFF_DATA_DIR=`grep '^data_dir' \$JAVA_JAR_PATH/snpEff.config | sed 's/.*data_dir.*[=:]//'`; |
13 eval "if [ ! -e \$SNPEFF_DATA_DIR/$genomeVersion ] ; | |
0 | 14 then java -Xmx6G -jar \$JAVA_JAR_PATH/snpEff.jar download -c \$JAVA_JAR_PATH/snpEff.config $genomeVersion ; |
3 | 15 fi"; |
7
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
16 java -Xmx6G -jar \$JAVA_JAR_PATH/snpEff.jar eff -c \$JAVA_JAR_PATH/snpEff.config -i $inputFormat -o $outputFormat -upDownStreamLen $udLength |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
17 #if $filterIn and $filterIn.__str__ != 'no_filter': |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
18 -$filterIn |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
19 #end if |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
20 #if $filterHomHet and $filterHomHet.__str__ != 'no_filter': |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
21 -$filterHomHet |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
22 #end if |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
23 #if $filterOut and $filterOut.__str__ != '': |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
24 #echo ' '.join($filterOut.__str__.split(',')) |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
25 #end if |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
26 #if $statsFile: |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
27 -stats $statsFile |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
28 #end if |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
29 #if $offset.__str__ != '': |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
30 -${offset} |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
31 #end if |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
32 $genomeVersion $input > $snpeff_output |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
33 </command> |
0 | 34 <inputs> |
35 <param format="vcf,tabular,pileup,bed" name="input" type="data" label="Sequence changes (SNPs, MNPs, InDels)"/> | |
36 | |
37 <param name="inputFormat" type="select" label="Input format"> | |
38 <option value="vcf">VCF</option> | |
39 <option value="txt">Tabular</option> | |
40 <option value="pileup">Pileup</option> | |
41 <option value="bed">BED</option> | |
42 </param> | |
43 | |
44 <param name="outputFormat" type="select" label="Output format"> | |
45 <option value="txt">Tabular</option> | |
46 <option value="vcf">VCF (only if input is VCF)</option> | |
47 <option value="bed">BED</option> | |
48 <option value="bedAnn">BED Annotations</option> | |
49 </param> | |
50 | |
51 <param name="genomeVersion" type="select" label="Genome"> | |
52 <options from_file="snpeffect_genomedb.loc"> | |
53 <column name="name" index="1"/> | |
54 <column name="value" index="0"/> | |
55 </options> | |
56 </param> | |
57 | |
58 <param name="udLength" type="select" label="Upstream / Downstream length"> | |
59 <option value="0">No upstream / downstream intervals (0 bases)</option> | |
60 <option value="200">200 bases</option> | |
61 <option value="500">500 bases</option> | |
62 <option value="1000">1000 bases</option> | |
63 <option value="2000">2000 bases</option> | |
64 <option value="5000" selected="true">5000 bases</option> | |
65 <option value="10000">10000 bases</option> | |
66 <option value="20000">20000 bases</option> | |
67 </param> | |
68 | |
69 <param name="filterHomHet" type="select" display="radio" label="Filter homozygous / heterozygous changes"> | |
7
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
70 <option value="no_filter" selected="true">No filter (analyze everything)</option> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
71 <option value="hom">Analyze homozygous sequence changes only </option> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
72 <option value="het">Analyze heterozygous sequence changes only </option> |
0 | 73 </param> |
74 | |
75 <param name="filterIn" type="select" display="radio" label="Filter sequence changes"> | |
7
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
76 <option value="no_filter" selected="true">No filter (analyze everything)</option> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
77 <option value="del">Analyze deletions only </option> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
78 <option value="ins">Analyze insertions only </option> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
79 <option value="nmp">Only MNPs (multiple nucleotide polymorphisms) </option> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
80 <option value="snp">Only SNPs (single nucleotide polymorphisms) </option> |
0 | 81 </param> |
82 | |
7
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
83 <param name="filterOut" type="select" display="checkboxes" multiple="true" optional="true" label="Filter output"> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
84 <option value="-no-downstream">Do not show DOWNSTREAM changes </option> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
85 <option value="-no-intergenic">Do not show INTERGENIC changes </option> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
86 <option value="-no-intron">Do not show INTRON changes </option> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
87 <option value="-no-upstream">Do not show UPSTREAM changes </option> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
88 <option value="-no-utr">Do not show 5_PRIME_UTR or 3_PRIME_UTR changes </option> |
0 | 89 </param> |
90 | |
91 <param name="offset" type="select" display="radio" optional="true" label="Chromosomal position"> | |
7
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
92 <option value="" selected="true">Use default (based on input type)</option> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
93 <option value="0">Force zero-based positions (both input and output)</option> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
94 <option value="1">Force one-based positions (both input and output)</option> |
0 | 95 </param> |
7
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
96 <param name="generate_stats" type="boolean" truevalue="" falsevalue="-noStats" checked="true" label="Produce Summary Stats"/> |
0 | 97 </inputs> |
98 <outputs> | |
7
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
99 <data format="tabular" name="snpeff_output" > |
0 | 100 <change_format> |
101 <when input="outputFormat" value="txt" format="tabular" /> | |
102 <when input="outputFormat" value="vcf" format="vcf" /> | |
103 <when input="outputFormat" value="bed" format="bed" /> | |
104 <when input="outputFormat" value="bedAnn" format="bed" /> | |
105 </change_format> | |
106 </data> | |
7
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
107 |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
108 <data format="html" name="statsFile"> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
109 <filter>generate_stats == True</filter> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
110 </data> |
0 | 111 </outputs> |
112 <stdio> | |
113 <exit_code range=":-1" level="fatal" description="Error: Cannot open file" /> | |
114 <exit_code range="1:" level="fatal" description="Error" /> | |
115 </stdio> | |
7
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
116 <tests> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
117 <test> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
118 <param name="input" ftype="vcf" value="vcf_homhet.vcf"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
119 <param name="inputFormat" value="vcf"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
120 <param name="outputFormat" value="vcf"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
121 <param name="genomeVersion" value="testCase"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
122 <param name="udLength" value="0"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
123 <param name="filterHomHet" value="no_filter"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
124 <param name="filterIn" value="no_filter"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
125 <param name="filterOut" value="-no-upstream"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
126 <output name="snpeff_output"> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
127 <assert_contents> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
128 <!-- Check that an effect was added --> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
129 <has_text text="EFF=NON_SYNONYMOUS_CODING" /> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
130 </assert_contents> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
131 </output> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
132 <output name="statsFile"> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
133 <assert_contents> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
134 <!-- Check for a HTML header indicating that this was successful --> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
135 <has_text text="SnpEff: Variant analysis" /> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
136 </assert_contents> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
137 </output> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
138 </test> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
139 <test> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
140 <param name="input" ftype="vcf" value="vcf_homhet.vcf"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
141 <param name="inputFormat" value="vcf"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
142 <param name="outputFormat" value="vcf"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
143 <param name="genomeVersion" value="testCase"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
144 <param name="udLength" value="0"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
145 <param name="filterHomHet" value="het"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
146 <param name="filterIn" value="no_filter"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
147 <!-- |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
148 <param name="filterOut" value=""/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
149 --> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
150 <param name="generate_stats" value="False"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
151 <output name="snpeff_output"> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
152 <assert_contents> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
153 <!-- Check that NO effects were added since -het is set --> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
154 <not_has_text text="EFF=NON_SYNONYMOUS_CODING" /> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
155 </assert_contents> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
156 </output> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
157 </test> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
158 <test> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
159 <param name="input" ftype="vcf" value="vcf_homhet.vcf"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
160 <param name="inputFormat" value="vcf"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
161 <param name="outputFormat" value="vcf"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
162 <param name="genomeVersion" value="testCase"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
163 <param name="udLength" value="0"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
164 <param name="filterHomHet" value="no_filter"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
165 <param name="filterIn" value="del"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
166 <!-- |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
167 <param name="filterOut" value=""/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
168 --> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
169 <param name="generate_stats" value="False"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
170 <output name="snpeff_output"> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
171 <assert_contents> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
172 <!-- Check that deleletions were evaluated --> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
173 <has_text_matching expression="Y\t59030478\t.*EFF=INTERGENIC" /> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
174 <!-- Check that insertion on last line was NOT evaluated --> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
175 <has_text_matching expression="Y\t59032947\t.*SF=5\tGT" /> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
176 </assert_contents> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
177 </output> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
178 </test> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
179 <test> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
180 <param name="input" ftype="vcf" value="vcf_homhet.vcf"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
181 <param name="inputFormat" value="vcf"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
182 <param name="outputFormat" value="vcf"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
183 <param name="genomeVersion" value="testCase"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
184 <param name="udLength" value="0"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
185 <param name="filterHomHet" value="no_filter"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
186 <param name="filterIn" value="no_filter"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
187 <param name="filterOut" value="-no-upstream"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
188 <param name="generate_stats" value="False"/> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
189 <output name="snpeff_output"> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
190 <assert_contents> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
191 <!-- Check that NO UPSTREAM effect was added --> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
192 <not_has_text text="UPSTREAM" /> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
193 </assert_contents> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
194 </output> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
195 </test> |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
196 |
b26a1aff7f81
Fix issues with snpEff commandline template and add test cases
Jim Johnson <jj@umn.edu>
parents:
3
diff
changeset
|
197 </tests> |
0 | 198 <help> |
199 | |
200 This tool calculate the effect of variants (SNPs/MNPs/Insertions) and deletions. | |
201 | |
202 For details about this tool, please go to http://snpEff.sourceforge.net | |
203 | |
204 </help> | |
205 </tool> | |
206 |