]> git.donarmstrong.com Git - dbsnp.git/blob - schema/shared_schema/dbSNP_main_view_postgresql.sql
add initial files
[dbsnp.git] / schema / shared_schema / dbSNP_main_view_postgresql.sql
1 SET QUOTED_IDENTIFIER ON 
2 ;SET ANSI_NULLS ON 
3 ;
4 create view vwAllele
5 as
6 select a.allele_id, a.rev_allele_id, a.allele, r.allele rev_allele
7 from dbo.Allele a (index (i_rev_allele_id)) join dbo.Allele r (index (pk_Allele))  on a.rev_allele_id = r.allele_id
8
9 ;SET QUOTED_IDENTIFIER OFF 
10 ;SET ANSI_NULLS ON 
11 ;
12
13 SET QUOTED_IDENTIFIER ON 
14 ;SET ANSI_NULLS ON 
15 ;
16 create view vwAllele_rev_flag (allele_id, rev_flag, fwd_allele_id, fwd_allele)
17 as
18 select allele_id, 0,  allele_id, allele From Allele
19 union 
20 select allele_id, 1, rev_allele_id, rev_allele from vwAllele
21
22
23 ;SET QUOTED_IDENTIFIER OFF 
24 ;SET ANSI_NULLS ON 
25 ;
26
27 SET QUOTED_IDENTIFIER ON 
28 ;SET ANSI_NULLS ON 
29 ;
30 create view vwMotif
31 as
32
33 select distinct m.motif_id, m.motif, r.motif_id rev_motif_id, r.motif rev_motif, m.last_updated_time
34 from Motif m join Motif r on m.motif_id = r.rev_motif_id
35
36 ;SET QUOTED_IDENTIFIER OFF 
37 ;SET ANSI_NULLS ON 
38 ;
39
40 SET QUOTED_IDENTIFIER ON 
41 ;SET ANSI_NULLS ON 
42 ;
43 create view vwMotif_rev ( motif_id, rev_flag, fwd_motif, fwd_motif_id)
44 as
45 /* log: 11/4/04 updated. when ref_flag=1, fwd_motif_id should be motif_id!
46  */
47 select motif_id, 0, motif, motif_id from Motif
48 union 
49 select motif_id, 1, rev_motif,  rev_motif_id from vwMotif
50
51 ;SET QUOTED_IDENTIFIER OFF 
52 ;SET ANSI_NULLS ON 
53 ;
54
55 SET QUOTED_IDENTIFIER ON 
56 ;SET ANSI_NULLS ON 
57 ;
58 CREATE VIEW dbo.vw_ABI_RsMergeArch
59 AS
60 SELECT     human_9606.dbo.RsMergeArch.* FROM         human_9606.dbo.RsMergeArch union
61 SELECT     mouse_10090.dbo.RsMergeArch.* FROM         mouse_10090.dbo.RsMergeArch
62
63
64 ;SET QUOTED_IDENTIFIER OFF 
65 ;SET ANSI_NULLS ON 
66 ;
67
68 SET QUOTED_IDENTIFIER ON 
69 ;SET ANSI_NULLS ON 
70 ;
71 CREATE VIEW dbo.vw_ABI_SNP
72 AS
73 SELECT     ss.* FROM         human_9606.dbo.SNP ss  union 
74 SELECT ss.* FROM         mouse_10090.dbo.SNP ss
75 ;SET QUOTED_IDENTIFIER OFF 
76 ;SET ANSI_NULLS ON 
77 ;
78
79 SET QUOTED_IDENTIFIER OFF 
80 ;SET ANSI_NULLS ON 
81 ;
82 CREATE VIEW dbo.vw_ABI_SubSNP
83 AS
84 SELECT    ss.*
85 FROM         human_9606.dbo.SubSNP ss,  human_9606.dbo.Batch b where b.handle = 'ABI' and b.batch_id = ss.batch_id union
86 SELECT ss.*
87 FROM         mouse_10090.dbo.SubSNP ss,  mouse_10090.dbo.Batch b where b.handle = 'ABI' and b.batch_id = ss.batch_id 
88
89
90
91 ;SET QUOTED_IDENTIFIER OFF 
92 ;SET ANSI_NULLS ON 
93 ;
94
95 SET QUOTED_IDENTIFIER OFF 
96 ;SET ANSI_NULLS OFF 
97 ;
98 create view vw_BatchCita as 
99 select * from arabidopsis_3702..BatchCita union
100 select * from bison_9901..BatchCita union
101 select * from blackbird_39638..BatchCita union
102 select * from bonobo_9597..BatchCita union
103 select * from chicken_9031..BatchCita union
104 select * from chimpanzee_9598..BatchCita union
105 select * from cooperia_27828..BatchCita union
106 select * from corn_4577..BatchCita union
107 select * from cow_30522..BatchCita union
108 select * from cow_9913..BatchCita union
109 select * from dog_9615..BatchCita union
110 select * from flycatcher_46689..BatchCita union
111 select * from flycatcher_59894..BatchCita union
112 select * from gorilla_9593..BatchCita union
113 select * from horse_9796..BatchCita union
114 select * from human_9606..BatchCita union
115 select * from macaque_9544..BatchCita union
116 select * from mosquito_7165..BatchCita union
117 select * from mouse_10090..BatchCita union
118 select * from mouse_spretus_10096..BatchCita union
119 select * from nematode_6239..BatchCita union
120 select * from orangutan_9600..BatchCita union
121 select * from pig_9823..BatchCita union
122 select * from pine_71647..BatchCita union
123 select * from plasmodium_5833..BatchCita union
124 select * from rat_10116..BatchCita union
125 select * from rat_10118..BatchCita union
126 select * from rice_4530..BatchCita union
127 select * from salmon_8030..BatchCita union
128 select * from sheep_9940..BatchCita union
129 select * from soybean_3847..BatchCita union
130 select * from sugarcane_128810..BatchCita union
131 select * from trematode_6183..BatchCita union
132 select * from tubeworm_216498..BatchCita union
133 select * from zebrafish_7955..BatchCita
134
135 ;SET QUOTED_IDENTIFIER OFF 
136 ;SET ANSI_NULLS ON 
137 ;
138
139 SET QUOTED_IDENTIFIER OFF 
140 ;SET ANSI_NULLS OFF 
141 ;
142 create view vw_ContigExon as 
143 select * from bison_9901..vw_ContigExon union
144 select * from chicken_9031..vw_ContigExon union
145 select * from chimpanzee_9598..vw_ContigExon union
146 select * from cow_30522..vw_ContigExon union
147 select * from cow_9913..vw_ContigExon union
148 select * from dog_9615..vw_ContigExon union
149 select * from human_9606..vw_ContigExon union
150 select * from mosquito_7165..vw_ContigExon union
151 select * from mouse_10090..vw_ContigExon union
152 select * from nematode_6239..vw_ContigExon union
153 select * from rat_10116..vw_ContigExon union
154 select * from rice_4530..vw_ContigExon union
155 select * from zebrafish_7955..vw_ContigExon
156
157 ;SET QUOTED_IDENTIFIER OFF 
158 ;SET ANSI_NULLS ON 
159 ;
160
161 SET QUOTED_IDENTIFIER OFF 
162 ;SET ANSI_NULLS OFF 
163 ;
164 create view vw_ContigInfo as 
165 select * from bison_9901..vw_ContigInfo union
166 select * from chicken_9031..vw_ContigInfo union
167 select * from chimpanzee_9598..vw_ContigInfo union
168 select * from cow_30522..vw_ContigInfo union
169 select * from cow_9913..vw_ContigInfo union
170 select * from dog_9615..vw_ContigInfo union
171 select * from human_9606..vw_ContigInfo union
172 select * from mosquito_7165..vw_ContigInfo union
173 select * from mouse_10090..vw_ContigInfo union
174 select * from nematode_6239..vw_ContigInfo union
175 select * from rat_10116..vw_ContigInfo union
176 select * from rice_4530..vw_ContigInfo union
177 select * from zebrafish_7955..vw_ContigInfo
178
179 ;SET QUOTED_IDENTIFIER OFF 
180 ;SET ANSI_NULLS ON 
181 ;
182
183 SET QUOTED_IDENTIFIER OFF 
184 ;SET ANSI_NULLS ON 
185 ;
186 CREATE VIEW dbo.vw_E_Maplink
187 AS
188 select * from bison_9901..vw_MapLink union
189 select * from chicken_9031..vw_MapLink union
190 select * from chimpanzee_9598..vw_MapLink union
191 select * from cow_30522..vw_MapLink union
192 select * from cow_9913..vw_MapLink union
193 select * from dog_9615..vw_MapLink union
194 select * from human_9606..vw_E_MapLink union
195 select * from mosquito_7165..vw_MapLink union
196 select * from mouse_10090..vw_MapLink union
197 select * from nematode_6239..vw_MapLink union
198 select * from rat_10116..vw_MapLink union
199 select * from rice_4530..vw_MapLink union
200 select * from zebrafish_7955..vw_MapLink
201
202
203 ;SET QUOTED_IDENTIFIER OFF 
204 ;SET ANSI_NULLS ON 
205 ;
206
207 SET QUOTED_IDENTIFIER OFF 
208 ;SET ANSI_NULLS OFF 
209 ;
210  create view vw_IndivSourceCode  as  select * from arabidopsis_3702..IndivSourceCode union  select * from bee_7460..IndivSourceCode union  select * from bison_9901..IndivSourceCode union  select * from blackbird_39638..IndivSourceCode union  select * from bonobo_9597..IndivSourceCode union  select * from chicken_9031..IndivSourceCode union  select * from chimpanzee_9598..IndivSourceCode union  select * from cooperia_27828..IndivSourceCode union  select * from corn_4577..IndivSourceCode union  select * from cow_30522..IndivSourceCode union  select * from cow_9913..IndivSourceCode union  select * from dog_9615..IndivSourceCode union  select * from flycatcher_46689..IndivSourceCode union  select * from flycatcher_59894..IndivSourceCode union  select * from fruitfly_7227..IndivSourceCode union  select * from gorilla_9593..IndivSourceCode union  select * from horse_9796..IndivSourceCode union  select * from human_9606..IndivSourceCode union  select * from macaque_9544..IndivSourceCode union  select * from mosquito_7165..IndivSourceCode union  select * from mouse_10090..IndivSourceCode union  select * from mouse_spretus_10096..IndivSourceCode union  select * from nematode_6239..IndivSourceCode union  select * from orangutan_9600..IndivSourceCode union  select * from pig_9823..IndivSourceCode union  select * from pine_71647..IndivSourceCode union  select * from plasmodium_5833..IndivSourceCode union  select * from rat_10116..IndivSourceCode union  select * from rat_10118..IndivSourceCode union  select * from rice_4530..IndivSourceCode union  select * from salmon_8030..IndivSourceCode union  select * from sheep_9940..IndivSourceCode union  select * from soybean_3847..IndivSourceCode union  select * from sugarcane_128810..IndivSourceCode union  select * from trematode_6183..IndivSourceCode union  select * from trout_8022..IndivSourceCode union  select * from tubeworm_216498..IndivSourceCode union  select * from zebrafish_7955..IndivSourceCode
211 ;SET QUOTED_IDENTIFIER OFF 
212 ;SET ANSI_NULLS ON 
213 ;
214
215 SET QUOTED_IDENTIFIER OFF 
216 ;SET ANSI_NULLS OFF 
217 ;
218 create view vw_MapLink as 
219 select * from bison_9901..vw_MapLink union
220 select * from chicken_9031..vw_MapLink union
221 select * from chimpanzee_9598..vw_MapLink union
222 select * from cow_30522..vw_MapLink union
223 select * from cow_9913..vw_MapLink union
224 select * from dog_9615..vw_MapLink union
225 select * from human_9606..vw_MapLink union
226 select * from mosquito_7165..vw_MapLink union
227 select * from mouse_10090..vw_MapLink union
228 select * from nematode_6239..vw_MapLink union
229 select * from rat_10116..vw_MapLink union
230 select * from rice_4530..vw_MapLink union
231 select * from zebrafish_7955..vw_MapLink
232
233 ;SET QUOTED_IDENTIFIER OFF 
234 ;SET ANSI_NULLS ON 
235 ;
236
237 SET QUOTED_IDENTIFIER OFF 
238 ;SET ANSI_NULLS OFF 
239 ;
240  create view vw_Pedigree  as  select * from arabidopsis_3702..Pedigree union  select * from bee_7460..Pedigree union  select * from bison_9901..Pedigree union  select * from blackbird_39638..Pedigree union  select * from bonobo_9597..Pedigree union  select * from chicken_9031..Pedigree union  select * from chimpanzee_9598..Pedigree union  select * from cooperia_27828..Pedigree union  select * from corn_4577..Pedigree union  select * from cow_30522..Pedigree union  select * from cow_9913..Pedigree union  select * from dog_9615..Pedigree union  select * from flycatcher_46689..Pedigree union  select * from flycatcher_59894..Pedigree union  select * from fruitfly_7227..Pedigree union  select * from gorilla_9593..Pedigree union  select * from horse_9796..Pedigree union  select * from human_9606..Pedigree union  select * from macaque_9544..Pedigree union  select * from mosquito_7165..Pedigree union  select * from mouse_10090..Pedigree union  select * from mouse_spretus_10096..Pedigree union  select * from nematode_6239..Pedigree union  select * from orangutan_9600..Pedigree union  select * from pig_9823..Pedigree union  select * from pine_71647..Pedigree union  select * from plasmodium_5833..Pedigree union  select * from rat_10116..Pedigree union  select * from rat_10118..Pedigree union  select * from rice_4530..Pedigree union  select * from salmon_8030..Pedigree union  select * from sheep_9940..Pedigree union  select * from soybean_3847..Pedigree union  select * from sugarcane_128810..Pedigree union  select * from trematode_6183..Pedigree union  select * from trout_8022..Pedigree union  select * from tubeworm_216498..Pedigree union  select * from zebrafish_7955..Pedigree
241 ;SET QUOTED_IDENTIFIER OFF 
242 ;SET ANSI_NULLS ON 
243 ;
244
245 SET QUOTED_IDENTIFIER OFF 
246 ;SET ANSI_NULLS OFF 
247 ;
248  create view vw_Population  as  select * from arabidopsis_3702..Population union  select * from bee_7460..Population union  select * from bison_9901..Population union  select * from blackbird_39638..Population union  select * from bonobo_9597..Population union  select * from chicken_9031..Population union  select * from chimpanzee_9598..Population union  select * from cooperia_27828..Population union  select * from corn_4577..Population union  select * from cow_30522..Population union  select * from cow_9913..Population union  select * from dog_9615..Population union  select * from flycatcher_46689..Population union  select * from flycatcher_59894..Population union  select * from gorilla_9593..Population union  select * from horse_9796..Population union  select * from human_9606..Population union  select * from macaque_9544..Population union  select * from mosquito_7165..Population union  select * from mouse_10090..Population union  select * from mouse_spretus_10096..Population union  select * from nematode_6239..Population union  select * from orangutan_9600..Population union  select * from pig_9823..Population union  select * from pine_71647..Population union  select * from plasmodium_5833..Population union  select * from rat_10116..Population union  select * from rat_10118..Population union  select * from rice_4530..Population union  select * from salmon_8030..Population union  select * from sheep_9940..Population union  select * from soybean_3847..Population union  select * from sugarcane_128810..Population union  select * from trematode_6183..Population union  select * from tubeworm_216498..Population union  select * from zebrafish_7955..Population
249 ;SET QUOTED_IDENTIFIER OFF 
250 ;SET ANSI_NULLS ON 
251 ;
252
253 SET QUOTED_IDENTIFIER ON 
254 ;SET ANSI_NULLS OFF 
255 ;
256 CREATE VIEW dbo.vw_ProteinInfo
257 AS
258 select * from cat_9685.dbo.b127_ProteinInfo_1_1 union
259 select * from zebrafish_7955.dbo.b127_ProteinInfo_0_0 union
260 select * from human_9606.dbo.b127_ProteinInfo_36_2 union
261 select * from bee_7460.dbo.b127_ProteinInfo_0_0 union
262 select * from rice_4530.dbo.b127_ProteinInfo_0_0 union
263 select * from mosquito_7165.dbo.b127_ProteinInfo_0_0 union
264 select * from plasmodium_5833.dbo.b127_ProteinInfo_0_0 union
265 select * from chicken_9031.dbo.b127_ProteinInfo_0_0 union
266 select * from cow_30522.dbo.b127_ProteinInfo_3_1 union
267 select * from chimpanzee_9598.dbo.b127_ProteinInfo_2_1 union
268 select * from cow_9913.dbo.b127_ProteinInfo_3_1 union
269 select * from nematode_6239.dbo.b127_ProteinInfo_0_0 union
270 select * from bison_9901.dbo.b127_ProteinInfo_3_1
271
272
273
274 ;SET QUOTED_IDENTIFIER OFF 
275 ;SET ANSI_NULLS ON 
276 ;
277
278 SET QUOTED_IDENTIFIER ON 
279 ;SET ANSI_NULLS ON 
280 ;
281 CREATE VIEW dbo.vw_PubMedSNP
282 AS
283 SELECT DISTINCT snp_id_cited AS snp_id, pmid, 0 AS score
284 FROM         dbSNP_oper.yuguo.PubMedSNP
285
286 ;SET QUOTED_IDENTIFIER OFF 
287 ;SET ANSI_NULLS ON 
288 ;
289
290 SET QUOTED_IDENTIFIER OFF 
291 ;SET ANSI_NULLS ON 
292 ;
293 CREATE view vw_SNP3D as  
294 select * from arabidopsis_3702..SNP3D union  
295 select * from bee_7460..SNP3D union  
296 select * from bison_9901..SNP3D union  
297 select * from blackbird_39638..SNP3D union  
298 select * from bonobo_9597..SNP3D union  
299 select * from chicken_9031..SNP3D union  
300 select * from chimpanzee_9598..SNP3D union  
301 select * from cooperia_27828..SNP3D union  
302 select * from corn_4577..SNP3D union  
303 select * from cow_30522..SNP3D union 
304  select * from cow_9913..SNP3D union  
305 select * from dog_9615..SNP3D union  
306 select * from flycatcher_46689..SNP3D union  
307 select * from flycatcher_59894..SNP3D union  
308 select * from gorilla_9593..SNP3D union  
309 select * from horse_9796..SNP3D union  
310 select * from human_9606..SNP3D  union  select * from macaque_9544..SNP3D union  select * from mosquito_7165..SNP3D union  select * from mouse_10090..SNP3D union  select * from mouse_spretus_10096..SNP3D union  select * from nematode_6239..SNP3D union  select * from orangutan_9600..SNP3D union  select * from pig_9823..SNP3D union  select * from pine_71647..SNP3D union  select * from plasmodium_5833..SNP3D union  select * from rat_10116..SNP3D union  select * from rat_10118..SNP3D union  select * from rice_4530..SNP3D union  select * from salmon_8030..SNP3D union  select * from sheep_9940..SNP3D union  select * from soybean_3847..SNP3D union  select * from sugarcane_128810..SNP3D union  select * from trematode_6183..SNP3D union  select * from tubeworm_216498..SNP3D union  select * from zebrafish_7955..SNP3D 
311
312
313
314
315
316 ;SET QUOTED_IDENTIFIER OFF 
317 ;SET ANSI_NULLS ON 
318 ;
319
320 SET QUOTED_IDENTIFIER OFF 
321 ;SET ANSI_NULLS OFF 
322 ;
323 CREATE view vw_SNPContigLoc as 
324 select * from mosquito_7165..vw_SNPContigLoc
325 /*
326 union
327 select * from bee_7460..vw_SNPContigLoc
328
329 union 
330 select * from bison_9901..vw_SNPContigLoc
331  union
332 select * from cow_30522..vw_SNPContigLoc
333 union
334 select * from cow_9913..vw_SNPContigLoc
335 union
336 select * from nematode_6239..vw_SNPContigLoc
337 union
338 select * from dog_9615..vw_SNPContigLoc
339 union
340 select * from zebrafish_7955..vw_SNPContigLoc
341 union
342 select * from chicken_9031..vw_SNPContigLoc
343 union
344 select * from human_9606..vw_SNPContigLoc
345 union
346 select * from mouse_10090..vw_SNPContigLoc
347 union
348 select * from rice_4530..vw_SNPContigLoc
349 union
350 select * from chimpanzee_9598..vw_SNPContigLoc
351 union
352 select * from rat_10116..vw_SNPContigLoc
353
354 */
355
356
357
358 ;SET QUOTED_IDENTIFIER OFF 
359 ;SET ANSI_NULLS ON 
360 ;
361
362 SET QUOTED_IDENTIFIER OFF 
363 ;SET ANSI_NULLS OFF 
364 ;
365 CREATE view "dbo"."vw_SNPContigLocusId" as
366 select * from mosquito_7165..vw_SNPContigLocusId 
367 union
368 select * from bee_7460..vw_SNPContigLocusId 
369 union 
370 select * from bison_9901..vw_SNPContigLocusId
371 union 
372 select * from cow_30522..vw_SNPContigLocusId 
373 union
374 select * from cow_9913..vw_SNPContigLocusId 
375 union
376 select * from nematode_6239..vw_SNPContigLocusId 
377 union
378 select * from dog_9615..vw_SNPContigLocusId 
379 union
380 select * from zebrafish_7955..vw_SNPContigLocusId
381 union
382 select * from chicken_9031..vw_SNPContigLocusId
383 union 
384 select * from human_9606..vw_SNPContigLocusId 
385 union
386 select * from mouse_10090..vw_SNPContigLocusId 
387 union
388 select * from rice_4530..vw_SNPContigLocusId 
389 union
390 select * from chimpanzee_9598..vw_SNPContigLocusId
391 union
392 select * from rat_10116..vw_SNPContigLocusId
393
394
395
396 ;SET QUOTED_IDENTIFIER OFF 
397 ;SET ANSI_NULLS ON 
398 ;
399
400 SET QUOTED_IDENTIFIER OFF 
401 ;SET ANSI_NULLS OFF 
402 ;
403 create view vw_SNPMapInfo as 
404 select * from bison_9901..vw_SNPMapInfo union
405 select * from chicken_9031..vw_SNPMapInfo union
406 select * from chimpanzee_9598..vw_SNPMapInfo union
407 select * from cow_30522..vw_SNPMapInfo union
408 select * from cow_9913..vw_SNPMapInfo union
409 select * from dog_9615..vw_SNPMapInfo union
410 select * from human_9606..vw_SNPMapInfo union
411 select * from mosquito_7165..vw_SNPMapInfo union
412 select * from mouse_10090..vw_SNPMapInfo union
413 select * from nematode_6239..vw_SNPMapInfo union
414 select * from rat_10116..vw_SNPMapInfo union
415 select * from rice_4530..vw_SNPMapInfo union
416 select * from zebrafish_7955..vw_SNPMapInfo
417
418 ;SET QUOTED_IDENTIFIER OFF 
419 ;SET ANSI_NULLS ON 
420 ;
421
422 SET QUOTED_IDENTIFIER ON 
423 ;SET ANSI_NULLS ON 
424 ;
425 CREATE VIEW dbo.vw_SNP_Organism
426 AS
427 SELECT DISTINCT 
428                       o.organism, o.tax_id, o.common_name, o.gpipe_abbr, o.create_time, o.last_updated_time, o.comment, o.division_cd, o.database_name, 
429                       o.short_common_name, o.tax_id_rank, o.species_tax_id, o.no_freq_summary, o.entrez_index, o.pub_genome_build
430 FROM         dbo.SNP_tax_id AS s INNER JOIN
431                       dbo.OrganismTax AS o ON s.tax_id = o.tax_id
432
433 ;SET QUOTED_IDENTIFIER OFF 
434 ;SET ANSI_NULLS ON 
435 ;
436
437 SET QUOTED_IDENTIFIER OFF 
438 ;SET ANSI_NULLS OFF 
439 ;
440 create view vw_SnpInSts as 
441 select * from arabidopsis_3702..SnpInSts union
442 select * from bison_9901..SnpInSts union
443 select * from blackbird_39638..SnpInSts union
444 select * from bonobo_9597..SnpInSts union
445 select * from chicken_9031..SnpInSts union
446 select * from chimpanzee_9598..SnpInSts union
447 select * from cooperia_27828..SnpInSts union
448 select * from corn_4577..SnpInSts union
449 select * from cow_30522..SnpInSts union
450 select * from cow_9913..SnpInSts union
451 select * from dog_9615..SnpInSts union
452 select * from flycatcher_46689..SnpInSts union
453 select * from flycatcher_59894..SnpInSts union
454 select * from gorilla_9593..SnpInSts union
455 select * from horse_9796..SnpInSts union
456 select * from human_9606..SnpInSts union
457 select * from macaque_9544..SnpInSts union
458 select * from mosquito_7165..SnpInSts union
459 select * from mouse_10090..SnpInSts union
460 select * from mouse_spretus_10096..SnpInSts union
461 select * from nematode_6239..SnpInSts union
462 select * from orangutan_9600..SnpInSts union
463 select * from pig_9823..SnpInSts union
464 select * from pine_71647..SnpInSts union
465 select * from plasmodium_5833..SnpInSts union
466 select * from rat_10116..SnpInSts union
467 select * from rat_10118..SnpInSts union
468 select * from rice_4530..SnpInSts union
469 select * from salmon_8030..SnpInSts union
470 select * from sheep_9940..SnpInSts union
471 select * from soybean_3847..SnpInSts union
472 select * from sugarcane_128810..SnpInSts union
473 select * from trematode_6183..SnpInSts union
474 select * from tubeworm_216498..SnpInSts union
475 select * from zebrafish_7955..SnpInSts
476
477 ;SET QUOTED_IDENTIFIER OFF 
478 ;SET ANSI_NULLS ON 
479 ;
480
481 SET QUOTED_IDENTIFIER OFF 
482 ;SET ANSI_NULLS OFF 
483 ;
484  create view vw_SubSNPAcc as 
485 select * from cow_30522..SubSNPAcc union
486 select * from cow_9913..SubSNPAcc union
487 select * from human_9606..SubSNPAcc union
488 select * from mouse_10090..SubSNPAcc union
489 select * from trout_8022..SubSNPAcc union
490 select * from arabidopsis_3702..SubSNPAcc union
491 select * from bison_9901..SubSNPAcc union
492 select * from blackbird_39638..SubSNPAcc union
493 select * from bonobo_9597..SubSNPAcc union
494 select * from chicken_9031..SubSNPAcc union
495 select * from chimpanzee_9598..SubSNPAcc union
496 select * from cooperia_27828..SubSNPAcc union
497 select * from corn_4577..SubSNPAcc union
498 select * from cow_30522..SubSNPAcc union
499 select * from cow_9913..SubSNPAcc union
500 select * from dog_9615..SubSNPAcc union
501 select * from flycatcher_46689..SubSNPAcc union
502 select * from flycatcher_59894..SubSNPAcc union
503 select * from gorilla_9593..SubSNPAcc union
504 select * from horse_9796..SubSNPAcc union
505 select * from human_9606..SubSNPAcc union
506 select * from macaque_9544..SubSNPAcc union
507 select * from mosquito_7165..SubSNPAcc union
508 select * from mouse_10090..SubSNPAcc union
509 select * from mouse_spretus_10096..SubSNPAcc union
510 select * from nematode_6239..SubSNPAcc union
511 select * from orangutan_9600..SubSNPAcc union
512 select * from pig_9823..SubSNPAcc union
513 select * from pine_71647..SubSNPAcc union
514 select * from plasmodium_5833..SubSNPAcc union
515 select * from rat_10116..SubSNPAcc union
516 select * from rat_10118..SubSNPAcc union
517 select * from rice_4530..SubSNPAcc union
518 select * from salmon_8030..SubSNPAcc union
519 select * from sheep_9940..SubSNPAcc union
520 select * from soybean_3847..SubSNPAcc union
521 select * from sugarcane_128810..SubSNPAcc union
522 select * from trematode_6183..SubSNPAcc union
523 select * from trout_8022..SubSNPAcc union
524 select * from tubeworm_216498..SubSNPAcc union
525 select * from zebrafish_7955..SubSNPAcc
526
527 ;SET QUOTED_IDENTIFIER OFF 
528 ;SET ANSI_NULLS ON 
529 ;
530
531 SET QUOTED_IDENTIFIER OFF 
532 ;SET ANSI_NULLS OFF 
533 ;
534  create view vw_SubmittedIndividual  as  select * from arabidopsis_3702..SubmittedIndividual union  select * from bee_7460..SubmittedIndividual union  select * from bison_9901..SubmittedIndividual union  select * from blackbird_39638..SubmittedIndividual union  select * from bonobo_9597..SubmittedIndividual union  select * from chicken_9031..SubmittedIndividual union  select * from chimpanzee_9598..SubmittedIndividual union  select * from cooperia_27828..SubmittedIndividual union  select * from corn_4577..SubmittedIndividual union  select * from cow_30522..SubmittedIndividual union  select * from cow_9913..SubmittedIndividual union  select * from dog_9615..SubmittedIndividual union  select * from flycatcher_46689..SubmittedIndividual union  select * from flycatcher_59894..SubmittedIndividual union  select * from fruitfly_7227..SubmittedIndividual union  select * from gorilla_9593..SubmittedIndividual union  select * from horse_9796..SubmittedIndividual union  select * from human_9606..SubmittedIndividual union  select * from macaque_9544..SubmittedIndividual union  select * from mosquito_7165..SubmittedIndividual union  select * from mouse_10090..SubmittedIndividual union  select * from mouse_spretus_10096..SubmittedIndividual union  select * from nematode_6239..SubmittedIndividual union  select * from orangutan_9600..SubmittedIndividual union  select * from pig_9823..SubmittedIndividual union  select * from pine_71647..SubmittedIndividual union  select * from plasmodium_5833..SubmittedIndividual union  select * from rat_10116..SubmittedIndividual union  select * from rat_10118..SubmittedIndividual union  select * from rice_4530..SubmittedIndividual union  select * from salmon_74940..SubmittedIndividual union  select * from salmon_8030..SubmittedIndividual union  select * from sheep_9940..SubmittedIndividual union  select * from soybean_3847..SubmittedIndividual union  select * from sugarcane_128810..SubmittedIndividual union  select * from trematode_6183..SubmittedIndividual union  select * from trout_8022..SubmittedIndividual union  select * from tubeworm_216498..SubmittedIndividual union  select * from zebrafish_7955..SubmittedIndividual
535 ;SET QUOTED_IDENTIFIER OFF 
536 ;SET ANSI_NULLS ON 
537 ;
538
539 SET QUOTED_IDENTIFIER ON 
540 ;SET ANSI_NULLS ON 
541 ;
542 CREATE VIEW dbo.vw_Submitter
543 AS
544 SELECT     *
545 FROM         dbo.Submitter
546
547 ;SET QUOTED_IDENTIFIER OFF 
548 ;SET ANSI_NULLS ON 
549 ;
550
551 SET QUOTED_IDENTIFIER OFF 
552 ;SET ANSI_NULLS OFF 
553 ;
554  create view vw_all_Batch  as  select * from vw_all_Batch_part3 union all  select * from vw_all_Batch_part2 union all  select * from vw_all_Batch_part1
555 ;SET QUOTED_IDENTIFIER OFF 
556 ;SET ANSI_NULLS ON 
557 ;
558
559 SET QUOTED_IDENTIFIER OFF 
560 ;SET ANSI_NULLS OFF 
561 ;
562  create view vw_all_BatchCita  as  select *, 'arabidopsis_3702' as dbName from arabidopsis_3702..BatchCita union all  select *, 'bee_7460' as dbName from bee_7460..BatchCita union all  select *, 'bison_9901' as dbName from bison_9901..BatchCita union all  select *, 'blackbird_39638' as dbName from blackbird_39638..BatchCita union all  select *, 'bonobo_9597' as dbName from bonobo_9597..BatchCita union all  select *, 'chicken_9031' as dbName from chicken_9031..BatchCita union all  select *, 'chimpanzee_9598' as dbName from chimpanzee_9598..BatchCita union all  select *, 'cooperia_27828' as dbName from cooperia_27828..BatchCita union all  select *, 'corn_4577' as dbName from corn_4577..BatchCita union all  select *, 'cow_30522' as dbName from cow_30522..BatchCita union all  select *, 'cow_9913' as dbName from cow_9913..BatchCita union all  select *, 'dog_9615' as dbName from dog_9615..BatchCita union all  select *, 'flycatcher_46689' as dbName from flycatcher_46689..BatchCita union all  select *, 'flycatcher_59894' as dbName from flycatcher_59894..BatchCita union all  select *, 'fruitfly_7227' as dbName from fruitfly_7227..BatchCita union all  select *, 'gorilla_9593' as dbName from gorilla_9593..BatchCita union all  select *, 'horse_9796' as dbName from horse_9796..BatchCita union all  select *, 'human_9606' as dbName from human_9606..BatchCita union all  select *, 'macaque_9544' as dbName from macaque_9544..BatchCita union all  select *, 'mosquito_7165' as dbName from mosquito_7165..BatchCita union all  select *, 'mouse_10090' as dbName from mouse_10090..BatchCita union all  select *, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..BatchCita union all  select *, 'nematode_6239' as dbName from nematode_6239..BatchCita union all  select *, 'orangutan_9600' as dbName from orangutan_9600..BatchCita union all  select *, 'pig_9823' as dbName from pig_9823..BatchCita union all  select *, 'pine_71647' as dbName from pine_71647..BatchCita union all  select *, 'plasmodium_5833' as dbName from plasmodium_5833..BatchCita union all  select *, 'rat_10116' as dbName from rat_10116..BatchCita union all  select *, 'rat_10118' as dbName from rat_10118..BatchCita union all  select *, 'rice_4530' as dbName from rice_4530..BatchCita union all  select *, 'salmon_74940' as dbName from salmon_74940..BatchCita union all  select *, 'salmon_8030' as dbName from salmon_8030..BatchCita union all  select *, 'sheep_9940' as dbName from sheep_9940..BatchCita union all  select *, 'soybean_3847' as dbName from soybean_3847..BatchCita union all  select *, 'sugarcane_128810' as dbName from sugarcane_128810..BatchCita union all  select *, 'trematode_6183' as dbName from trematode_6183..BatchCita union all  select *, 'trout_8022' as dbName from trout_8022..BatchCita union all  select *, 'tubeworm_216498' as dbName from tubeworm_216498..BatchCita union all  select *, 'zebrafish_7955' as dbName from zebrafish_7955..BatchCita uni
563 ;SET QUOTED_IDENTIFIER OFF 
564 ;SET ANSI_NULLS ON 
565 ;
566
567 SET QUOTED_IDENTIFIER OFF 
568 ;SET ANSI_NULLS OFF 
569 ;
570  create view vw_all_Batch_part1  as  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'arabidopsis_3702' as dbName from arabidopsis_3702..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'barrel_medic_3880' as dbName from barrel_medic_3880..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'bee_7460' as dbName from bee_7460..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'bison_9901' as dbName from bison_9901..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'blackbird_39638' as dbName from blackbird_39638..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'bonobo_9597' as dbName from bonobo_9597..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'cat_9685' as dbName from cat_9685..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'chicken_9031' as dbName from chicken_9031..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'chimpanzee_9598' as dbName from chimpanzee_9598..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'chimpanzee_9598' as dbName from chimpanzee_9598..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'chimpanzee_9598' as dbName from chimpanzee_9598..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'cooperia_27828' as dbName from cooperia_27828..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'corn_4577' as dbName from corn_4577..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'cow_30522' as dbName from cow_30522..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'cow_9913' as dbName from cow_9913..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'dog_9615' as dbName from dog_9615..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'flycatcher_46689' as dbName from flycatcher_46689..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'flycatcher_59894' as dbName from flycatcher_59894..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'fruitfly_7227' as dbName from fruitfly_7227..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'fusarium_5518' as dbName from fusarium_5518..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'gorilla_9593' as dbName from gorilla_9593..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'gorilla_9593' as dbName from gorilla_9593..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'grape_29760' as dbName from grape_29760..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'horse_9796' as dbName from horse_9796..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'human_9606' as dbName from human_9606..Batch
571 ;SET QUOTED_IDENTIFIER OFF 
572 ;SET ANSI_NULLS ON 
573 ;
574
575 SET QUOTED_IDENTIFIER OFF 
576 ;SET ANSI_NULLS OFF 
577 ;
578  create view vw_all_Batch_part2  as  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'macaque_9541' as dbName from macaque_9541..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'macaque_9544' as dbName from macaque_9544..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'mosquito_62324' as dbName from mosquito_62324..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'mosquito_7165' as dbName from mosquito_7165..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'mouse_10090' as dbName from mouse_10090..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'nematode_6238' as dbName from nematode_6238..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'nematode_6239' as dbName from nematode_6239..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'onion_4679' as dbName from onion_4679..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'opossum_13616' as dbName from opossum_13616..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'orangutan_9600' as dbName from orangutan_9600..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'pig_9823' as dbName from pig_9823..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'pine_71647' as dbName from pine_71647..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'plasmodium_5833' as dbName from plasmodium_5833..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'platypus_9258' as dbName from platypus_9258..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'rat_10116' as dbName from rat_10116..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'rat_10118' as dbName from rat_10118..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'rice_4530' as dbName from rice_4530..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'salmon_74940' as dbName from salmon_74940..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'salmon_8018' as dbName from salmon_8018..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'salmon_8019' as dbName from salmon_8019..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'salmon_8023' as dbName from salmon_8023..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'salmon_8030' as dbName from salmon_8030..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'sheep_9940' as dbName from sheep_9940..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'soybean_3847' as dbName from soybean_3847..Batch
579 ;SET QUOTED_IDENTIFIER OFF 
580 ;SET ANSI_NULLS ON 
581 ;
582
583 SET QUOTED_IDENTIFIER OFF 
584 ;SET ANSI_NULLS OFF 
585 ;
586  create view vw_all_Batch_part3  as  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'sugarcane_128810' as dbName from sugarcane_128810..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'tilapia_8128' as dbName from tilapia_8128..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'tomato_4081' as dbName from tomato_4081..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'trematode_6183' as dbName from trematode_6183..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'trout_8022' as dbName from trout_8022..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'tubeworm_216498' as dbName from tubeworm_216498..Batch union all  select batch_id,batch_type,handle,loc_batch_id,tax_id,build_id, method_id, submitted_time, 'zebrafish_7955' as dbName from zebrafish_7955..Batch
587 ;SET QUOTED_IDENTIFIER OFF 
588 ;SET ANSI_NULLS ON 
589 ;
590
591 SET QUOTED_IDENTIFIER OFF 
592 ;SET ANSI_NULLS OFF 
593 ;
594  create view vw_all_IndivSourceCode  as  select *, 'arabidopsis_3702' as dbName from arabidopsis_3702..IndivSourceCode union all  select *, 'bee_7460' as dbName from bee_7460..IndivSourceCode union all  select *, 'bison_9901' as dbName from bison_9901..IndivSourceCode union all  select *, 'blackbird_39638' as dbName from blackbird_39638..IndivSourceCode union all  select *, 'bonobo_9597' as dbName from bonobo_9597..IndivSourceCode union all  select *, 'chicken_9031' as dbName from chicken_9031..IndivSourceCode union all  select *, 'chimpanzee_9598' as dbName from chimpanzee_9598..IndivSourceCode union all  select *, 'cooperia_27828' as dbName from cooperia_27828..IndivSourceCode union all  select *, 'corn_4577' as dbName from corn_4577..IndivSourceCode union all  select *, 'cow_30522' as dbName from cow_30522..IndivSourceCode union all  select *, 'cow_9913' as dbName from cow_9913..IndivSourceCode union all  select *, 'dog_9615' as dbName from dog_9615..IndivSourceCode union all  select *, 'flycatcher_46689' as dbName from flycatcher_46689..IndivSourceCode union all  select *, 'flycatcher_59894' as dbName from flycatcher_59894..IndivSourceCode union all  select *, 'fruitfly_7227' as dbName from fruitfly_7227..IndivSourceCode union all  select *, 'gorilla_9593' as dbName from gorilla_9593..IndivSourceCode union all  select *, 'horse_9796' as dbName from horse_9796..IndivSourceCode union all  select *, 'human_9606' as dbName from human_9606..IndivSourceCode union all  select *, 'macaque_9544' as dbName from macaque_9544..IndivSourceCode union all  select *, 'mosquito_7165' as dbName from mosquito_7165..IndivSourceCode union all  select *, 'mouse_10090' as dbName from mouse_10090..IndivSourceCode union all  select *, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..IndivSourceCode union all  select *, 'nematode_6239' as dbName from nematode_6239..IndivSourceCode union all  select *, 'orangutan_9600' as dbName from orangutan_9600..IndivSourceCode union all  select *, 'pig_9823' as dbName from pig_9823..IndivSourceCode union all  select *, 'pine_71647' as dbName from pine_71647..IndivSourceCode union all  select *, 'plasmodium_5833' as dbName from plasmodium_5833..IndivSourceCode union all  select *, 'rat_10116' as dbName from rat_10116..IndivSourceCode union all  select *, 'rat_10118' as dbName from rat_10118..IndivSourceCode union all  select *, 'rice_4530' as dbName from rice_4530..IndivSourceCode union all  select *, 'salmon_74940' as dbName from salmon_74940..IndivSourceCode union all  select *, 'salmon_8030' as dbName from salmon_8030..IndivSourceCode union all  select *, 'sheep_9940' as dbName from sheep_9940..IndivSourceCode union all  select *, 'soybean_3847' as dbName from soybean_3847..IndivSourceCode union all  select *, 'sugarcane_128810' as dbName from sugarcane_128810..IndivSourceCode union all  select *, 'trematode_6183' as dbName from trematode_6183..IndivSourceCode union all  select *, 'trout_8022' as dbName from trout_8022..IndivSourceCode union all  select *, 'tubeworm_216498' as dbName from tubeworm_216498..IndivSourceCode union all  select *, 'zebrafish_7955' as dbName from zebrafish_7955..IndivSourceCode uni
595 ;SET QUOTED_IDENTIFIER OFF 
596 ;SET ANSI_NULLS ON 
597 ;
598
599 SET QUOTED_IDENTIFIER OFF 
600 ;SET ANSI_NULLS OFF 
601 ;
602  create view vw_all_Individual  as  select *, 'arabidopsis_3702' as dbName from arabidopsis_3702..Individual union all  select *, 'bee_7460' as dbName from bee_7460..Individual union all  select *, 'bison_9901' as dbName from bison_9901..Individual union all  select *, 'blackbird_39638' as dbName from blackbird_39638..Individual union all  select *, 'bonobo_9597' as dbName from bonobo_9597..Individual union all  select *, 'chicken_9031' as dbName from chicken_9031..Individual union all  select *, 'chimpanzee_9598' as dbName from chimpanzee_9598..Individual union all  select *, 'cooperia_27828' as dbName from cooperia_27828..Individual union all  select *, 'corn_4577' as dbName from corn_4577..Individual union all  select *, 'cow_30522' as dbName from cow_30522..Individual union all  select *, 'cow_9913' as dbName from cow_9913..Individual union all  select *, 'dog_9615' as dbName from dog_9615..Individual union all  select *, 'flycatcher_46689' as dbName from flycatcher_46689..Individual union all  select *, 'flycatcher_59894' as dbName from flycatcher_59894..Individual union all  select *, 'fruitfly_7227' as dbName from fruitfly_7227..Individual union all  select *, 'gorilla_9593' as dbName from gorilla_9593..Individual union all  select *, 'horse_9796' as dbName from horse_9796..Individual union all  select *, 'human_9606' as dbName from human_9606..Individual union all  select *, 'macaque_9544' as dbName from macaque_9544..Individual union all  select *, 'mosquito_7165' as dbName from mosquito_7165..Individual union all  select *, 'mouse_10090' as dbName from mouse_10090..Individual union all  select *, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..Individual union all  select *, 'nematode_6239' as dbName from nematode_6239..Individual union all  select *, 'onion_4679' as dbName from onion_4679..Individual union all  select *, 'orangutan_9600' as dbName from orangutan_9600..Individual union all  select *, 'pig_9823' as dbName from pig_9823..Individual union all  select *, 'pine_71647' as dbName from pine_71647..Individual union all  select *, 'plasmodium_5833' as dbName from plasmodium_5833..Individual union all  select *, 'rat_10116' as dbName from rat_10116..Individual union all  select *, 'rat_10118' as dbName from rat_10118..Individual union all  select *, 'rice_4530' as dbName from rice_4530..Individual union all  select *, 'salmon_74940' as dbName from salmon_74940..Individual union all  select *, 'salmon_8018' as dbName from salmon_8018..Individual union all  select *, 'salmon_8019' as dbName from salmon_8019..Individual union all  select *, 'salmon_8023' as dbName from salmon_8023..Individual union all  select *, 'salmon_8030' as dbName from salmon_8030..Individual union all  select *, 'sheep_9940' as dbName from sheep_9940..Individual union all  select *, 'soybean_3847' as dbName from soybean_3847..Individual union all  select *, 'sugarcane_128810' as dbName from sugarcane_128810..Individual union all  select *, 'tilapia_8128' as dbName from tilapia_8128..Individual union all  select *, 'trematode_6183' as dbName from trematode_6183..Individual union all  select *, 'trout_8022' as dbName from trout_8022..Individual union all  select *, 'tubeworm_216498' as dbName from tubeworm_216498..Individual union all  select *, 'zebrafish_7955' as dbName from zebrafish_7955..Individual uni
603 ;SET QUOTED_IDENTIFIER OFF 
604 ;SET ANSI_NULLS ON 
605 ;
606
607 SET QUOTED_IDENTIFIER OFF 
608 ;SET ANSI_NULLS OFF 
609 ;
610  create view vw_all_Pedigree  as  select *, 'arabidopsis_3702' as dbName from arabidopsis_3702..Pedigree union all  select *, 'bee_7460' as dbName from bee_7460..Pedigree union all  select *, 'bison_9901' as dbName from bison_9901..Pedigree union all  select *, 'blackbird_39638' as dbName from blackbird_39638..Pedigree union all  select *, 'bonobo_9597' as dbName from bonobo_9597..Pedigree union all  select *, 'chicken_9031' as dbName from chicken_9031..Pedigree union all  select *, 'chimpanzee_9598' as dbName from chimpanzee_9598..Pedigree union all  select *, 'cooperia_27828' as dbName from cooperia_27828..Pedigree union all  select *, 'corn_4577' as dbName from corn_4577..Pedigree union all  select *, 'cow_30522' as dbName from cow_30522..Pedigree union all  select *, 'cow_9913' as dbName from cow_9913..Pedigree union all  select *, 'dog_9615' as dbName from dog_9615..Pedigree union all  select *, 'flycatcher_46689' as dbName from flycatcher_46689..Pedigree union all  select *, 'flycatcher_59894' as dbName from flycatcher_59894..Pedigree union all  select *, 'fruitfly_7227' as dbName from fruitfly_7227..Pedigree union all  select *, 'gorilla_9593' as dbName from gorilla_9593..Pedigree union all  select *, 'horse_9796' as dbName from horse_9796..Pedigree union all  select *, 'human_9606' as dbName from human_9606..Pedigree union all  select *, 'macaque_9544' as dbName from macaque_9544..Pedigree union all  select *, 'mosquito_7165' as dbName from mosquito_7165..Pedigree union all  select *, 'mouse_10090' as dbName from mouse_10090..Pedigree union all  select *, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..Pedigree union all  select *, 'nematode_6239' as dbName from nematode_6239..Pedigree union all  select *, 'onion_4679' as dbName from onion_4679..Pedigree union all  select *, 'orangutan_9600' as dbName from orangutan_9600..Pedigree union all  select *, 'pig_9823' as dbName from pig_9823..Pedigree union all  select *, 'pine_71647' as dbName from pine_71647..Pedigree union all  select *, 'plasmodium_5833' as dbName from plasmodium_5833..Pedigree union all  select *, 'rat_10116' as dbName from rat_10116..Pedigree union all  select *, 'rat_10118' as dbName from rat_10118..Pedigree union all  select *, 'rice_4530' as dbName from rice_4530..Pedigree union all  select *, 'salmon_74940' as dbName from salmon_74940..Pedigree union all  select *, 'salmon_8018' as dbName from salmon_8018..Pedigree union all  select *, 'salmon_8019' as dbName from salmon_8019..Pedigree union all  select *, 'salmon_8023' as dbName from salmon_8023..Pedigree union all  select *, 'salmon_8030' as dbName from salmon_8030..Pedigree union all  select *, 'sheep_9940' as dbName from sheep_9940..Pedigree union all  select *, 'soybean_3847' as dbName from soybean_3847..Pedigree union all  select *, 'sugarcane_128810' as dbName from sugarcane_128810..Pedigree union all  select *, 'tilapia_8128' as dbName from tilapia_8128..Pedigree union all  select *, 'trematode_6183' as dbName from trematode_6183..Pedigree union all  select *, 'trout_8022' as dbName from trout_8022..Pedigree union all  select *, 'tubeworm_216498' as dbName from tubeworm_216498..Pedigree union all  select *, 'zebrafish_7955' as dbName from zebrafish_7955..Pedigree uni
611 ;SET QUOTED_IDENTIFIER OFF 
612 ;SET ANSI_NULLS ON 
613 ;
614
615 SET QUOTED_IDENTIFIER OFF 
616 ;SET ANSI_NULLS OFF 
617 ;
618  create view vw_all_PopLine  as  select *, 'arabidopsis_3702' as dbName from arabidopsis_3702..PopLine union all  select *, 'bee_7460' as dbName from bee_7460..PopLine union all  select *, 'bison_9901' as dbName from bison_9901..PopLine union all  select *, 'blackbird_39638' as dbName from blackbird_39638..PopLine union all  select *, 'bonobo_9597' as dbName from bonobo_9597..PopLine union all  select *, 'chicken_9031' as dbName from chicken_9031..PopLine union all  select *, 'chimpanzee_9598' as dbName from chimpanzee_9598..PopLine union all  select *, 'cooperia_27828' as dbName from cooperia_27828..PopLine union all  select *, 'corn_4577' as dbName from corn_4577..PopLine union all  select *, 'cow_30522' as dbName from cow_30522..PopLine union all  select *, 'cow_9913' as dbName from cow_9913..PopLine union all  select *, 'dog_9615' as dbName from dog_9615..PopLine union all  select *, 'flycatcher_46689' as dbName from flycatcher_46689..PopLine union all  select *, 'flycatcher_59894' as dbName from flycatcher_59894..PopLine union all  select *, 'fruitfly_7227' as dbName from fruitfly_7227..PopLine union all  select *, 'gorilla_9593' as dbName from gorilla_9593..PopLine union all  select *, 'horse_9796' as dbName from horse_9796..PopLine union all  select *, 'human_9606' as dbName from human_9606..PopLine union all  select *, 'macaque_9544' as dbName from macaque_9544..PopLine union all  select *, 'mosquito_7165' as dbName from mosquito_7165..PopLine union all  select *, 'mouse_10090' as dbName from mouse_10090..PopLine union all  select *, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..PopLine union all  select *, 'nematode_6239' as dbName from nematode_6239..PopLine union all  select *, 'orangutan_9600' as dbName from orangutan_9600..PopLine union all  select *, 'pig_9823' as dbName from pig_9823..PopLine union all  select *, 'pine_71647' as dbName from pine_71647..PopLine union all  select *, 'plasmodium_5833' as dbName from plasmodium_5833..PopLine union all  select *, 'rat_10116' as dbName from rat_10116..PopLine union all  select *, 'rat_10118' as dbName from rat_10118..PopLine union all  select *, 'rice_4530' as dbName from rice_4530..PopLine union all  select *, 'salmon_74940' as dbName from salmon_74940..PopLine union all  select *, 'salmon_8030' as dbName from salmon_8030..PopLine union all  select *, 'sheep_9940' as dbName from sheep_9940..PopLine union all  select *, 'soybean_3847' as dbName from soybean_3847..PopLine union all  select *, 'sugarcane_128810' as dbName from sugarcane_128810..PopLine union all  select *, 'trematode_6183' as dbName from trematode_6183..PopLine union all  select *, 'trout_8022' as dbName from trout_8022..PopLine union all  select *, 'tubeworm_216498' as dbName from tubeworm_216498..PopLine union all  select *, 'zebrafish_7955' as dbName from zebrafish_7955..PopLine uni
619 ;SET QUOTED_IDENTIFIER OFF 
620 ;SET ANSI_NULLS ON 
621 ;
622
623 SET QUOTED_IDENTIFIER OFF 
624 ;SET ANSI_NULLS OFF 
625 ;
626  create view vw_all_Population  as  select * from vw_all_Population_part1
627 ;SET QUOTED_IDENTIFIER OFF 
628 ;SET ANSI_NULLS ON 
629 ;
630
631 SET QUOTED_IDENTIFIER OFF 
632 ;SET ANSI_NULLS OFF 
633 ;
634  create view vw_all_Population_part1  as  select *, 'arabidopsis_3702' as dbName from arabidopsis_3702..Population union all  select *, 'bee_7460' as dbName from bee_7460..Population union all  select *, 'bison_9901' as dbName from bison_9901..Population union all  select *, 'blackbird_39638' as dbName from blackbird_39638..Population union all  select *, 'bonobo_9597' as dbName from bonobo_9597..Population union all  select *, 'chicken_9031' as dbName from chicken_9031..Population union all  select *, 'chimpanzee_9598' as dbName from chimpanzee_9598..Population union all  select *, 'cooperia_27828' as dbName from cooperia_27828..Population union all  select *, 'corn_4577' as dbName from corn_4577..Population union all  select *, 'cow_30522' as dbName from cow_30522..Population union all  select *, 'cow_9913' as dbName from cow_9913..Population union all  select *, 'dog_9615' as dbName from dog_9615..Population union all  select *, 'flycatcher_46689' as dbName from flycatcher_46689..Population union all  select *, 'flycatcher_59894' as dbName from flycatcher_59894..Population union all  select *, 'fruitfly_7227' as dbName from fruitfly_7227..Population union all  select *, 'gorilla_9593' as dbName from gorilla_9593..Population union all  select *, 'horse_9796' as dbName from horse_9796..Population union all  select *, 'human_9606' as dbName from human_9606..Population union all  select *, 'macaque_9544' as dbName from macaque_9544..Population union all  select *, 'mosquito_7165' as dbName from mosquito_7165..Population union all  select *, 'mouse_10090' as dbName from mouse_10090..Population union all  select *, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..Population union all  select *, 'nematode_6239' as dbName from nematode_6239..Population union all  select *, 'onion_4679' as dbName from onion_4679..Population union all  select *, 'orangutan_9600' as dbName from orangutan_9600..Population union all  select *, 'pig_9823' as dbName from pig_9823..Population union all  select *, 'pine_71647' as dbName from pine_71647..Population union all  select *, 'plasmodium_5833' as dbName from plasmodium_5833..Population union all  select *, 'rat_10116' as dbName from rat_10116..Population union all  select *, 'rat_10118' as dbName from rat_10118..Population union all  select *, 'rice_4530' as dbName from rice_4530..Population union all  select *, 'salmon_74940' as dbName from salmon_74940..Population union all  select *, 'salmon_8018' as dbName from salmon_8018..Population union all  select *, 'salmon_8019' as dbName from salmon_8019..Population union all  select *, 'salmon_8023' as dbName from salmon_8023..Population union all  select *, 'salmon_8030' as dbName from salmon_8030..Population union all  select *, 'sheep_9940' as dbName from sheep_9940..Population union all  select *, 'soybean_3847' as dbName from soybean_3847..Population union all  select *, 'sugarcane_128810' as dbName from sugarcane_128810..Population union all  select *, 'tilapia_8128' as dbName from tilapia_8128..Population union all  select *, 'trematode_6183' as dbName from trematode_6183..Population union all  select *, 'trout_8022' as dbName from trout_8022..Population union all  select *, 'tubeworm_216498' as dbName from tubeworm_216498..Population union all  select *, 'zebrafish_7955' as dbName from zebrafish_7955..Population
635 ;SET QUOTED_IDENTIFIER OFF 
636 ;SET ANSI_NULLS ON 
637 ;
638
639 SET QUOTED_IDENTIFIER OFF 
640 ;SET ANSI_NULLS OFF 
641 ;
642  create view vw_all_RsMergeArch  as  select * from vw_all_RsMergeArch_part1
643 ;SET QUOTED_IDENTIFIER OFF 
644 ;SET ANSI_NULLS ON 
645 ;
646
647 SET QUOTED_IDENTIFIER OFF 
648 ;SET ANSI_NULLS OFF 
649 ;
650  create view vw_all_RsMergeArch_part1  as  select *, 'arabidopsis_3702' as dbName from arabidopsis_3702..RsMergeArch union all  select *, 'bee_7460' as dbName from bee_7460..RsMergeArch union all  select *, 'bison_9901' as dbName from bison_9901..RsMergeArch union all  select *, 'blackbird_39638' as dbName from blackbird_39638..RsMergeArch union all  select *, 'bonobo_9597' as dbName from bonobo_9597..RsMergeArch union all  select *, 'chicken_9031' as dbName from chicken_9031..RsMergeArch union all  select *, 'chimpanzee_9598' as dbName from chimpanzee_9598..RsMergeArch union all  select *, 'cooperia_27828' as dbName from cooperia_27828..RsMergeArch union all  select *, 'corn_4577' as dbName from corn_4577..RsMergeArch union all  select *, 'cow_30522' as dbName from cow_30522..RsMergeArch union all  select *, 'cow_9913' as dbName from cow_9913..RsMergeArch union all  select *, 'dog_9615' as dbName from dog_9615..RsMergeArch union all  select *, 'flycatcher_46689' as dbName from flycatcher_46689..RsMergeArch union all  select *, 'flycatcher_59894' as dbName from flycatcher_59894..RsMergeArch union all  select *, 'fruitfly_7227' as dbName from fruitfly_7227..RsMergeArch union all  select *, 'gorilla_9593' as dbName from gorilla_9593..RsMergeArch union all  select *, 'horse_9796' as dbName from horse_9796..RsMergeArch union all  select *, 'human_9606' as dbName from human_9606..RsMergeArch union all  select *, 'macaque_9544' as dbName from macaque_9544..RsMergeArch union all  select *, 'mosquito_7165' as dbName from mosquito_7165..RsMergeArch union all  select *, 'mouse_10090' as dbName from mouse_10090..RsMergeArch union all  select *, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..RsMergeArch union all  select *, 'nematode_6239' as dbName from nematode_6239..RsMergeArch union all  select *, 'onion_4679' as dbName from onion_4679..RsMergeArch union all  select *, 'orangutan_9600' as dbName from orangutan_9600..RsMergeArch union all  select *, 'pig_9823' as dbName from pig_9823..RsMergeArch union all  select *, 'pine_71647' as dbName from pine_71647..RsMergeArch union all  select *, 'plasmodium_5833' as dbName from plasmodium_5833..RsMergeArch union all  select *, 'rat_10116' as dbName from rat_10116..RsMergeArch union all  select *, 'rat_10118' as dbName from rat_10118..RsMergeArch union all  select *, 'rice_4530' as dbName from rice_4530..RsMergeArch union all  select *, 'salmon_74940' as dbName from salmon_74940..RsMergeArch union all  select *, 'salmon_8018' as dbName from salmon_8018..RsMergeArch union all  select *, 'salmon_8019' as dbName from salmon_8019..RsMergeArch union all  select *, 'salmon_8023' as dbName from salmon_8023..RsMergeArch union all  select *, 'salmon_8030' as dbName from salmon_8030..RsMergeArch union all  select *, 'sheep_9940' as dbName from sheep_9940..RsMergeArch union all  select *, 'soybean_3847' as dbName from soybean_3847..RsMergeArch union all  select *, 'sugarcane_128810' as dbName from sugarcane_128810..RsMergeArch union all  select *, 'tilapia_8128' as dbName from tilapia_8128..RsMergeArch union all  select *, 'trematode_6183' as dbName from trematode_6183..RsMergeArch union all  select *, 'trout_8022' as dbName from trout_8022..RsMergeArch union all  select *, 'tubeworm_216498' as dbName from tubeworm_216498..RsMergeArch union all  select *, 'zebrafish_7955' as dbName from zebrafish_7955..RsMergeArch
651 ;SET QUOTED_IDENTIFIER OFF 
652 ;SET ANSI_NULLS ON 
653 ;
654
655 SET QUOTED_IDENTIFIER OFF 
656 ;SET ANSI_NULLS OFF 
657 ;
658  create view vw_all_SNP  as  select * from vw_all_SNP_part1
659 ;SET QUOTED_IDENTIFIER OFF 
660 ;SET ANSI_NULLS ON 
661 ;
662
663 SET QUOTED_IDENTIFIER OFF 
664 ;SET ANSI_NULLS OFF 
665 ;
666  create view vw_all_SNP_part1  as  select *, 'arabidopsis_3702' as dbName from arabidopsis_3702..SNP union all  select *, 'bee_7460' as dbName from bee_7460..SNP union all  select *, 'bison_9901' as dbName from bison_9901..SNP union all  select *, 'blackbird_39638' as dbName from blackbird_39638..SNP union all  select *, 'bonobo_9597' as dbName from bonobo_9597..SNP union all  select *, 'chicken_9031' as dbName from chicken_9031..SNP union all  select *, 'chimpanzee_9598' as dbName from chimpanzee_9598..SNP union all  select *, 'cooperia_27828' as dbName from cooperia_27828..SNP union all  select *, 'corn_4577' as dbName from corn_4577..SNP union all  select *, 'cow_30522' as dbName from cow_30522..SNP union all  select *, 'cow_9913' as dbName from cow_9913..SNP union all  select *, 'dog_9615' as dbName from dog_9615..SNP union all  select *, 'flycatcher_46689' as dbName from flycatcher_46689..SNP union all  select *, 'flycatcher_59894' as dbName from flycatcher_59894..SNP union all  select *, 'fruitfly_7227' as dbName from fruitfly_7227..SNP union all  select *, 'gorilla_9593' as dbName from gorilla_9593..SNP union all  select *, 'horse_9796' as dbName from horse_9796..SNP union all  select *, 'human_9606' as dbName from human_9606..SNP union all  select *, 'macaque_9544' as dbName from macaque_9544..SNP union all  select *, 'mosquito_7165' as dbName from mosquito_7165..SNP union all  select *, 'mouse_10090' as dbName from mouse_10090..SNP union all  select *, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..SNP union all  select *, 'nematode_6239' as dbName from nematode_6239..SNP union all  select *, 'onion_4679' as dbName from onion_4679..SNP union all  select *, 'orangutan_9600' as dbName from orangutan_9600..SNP union all  select *, 'pig_9823' as dbName from pig_9823..SNP union all  select *, 'pine_71647' as dbName from pine_71647..SNP union all  select *, 'plasmodium_5833' as dbName from plasmodium_5833..SNP union all  select *, 'rat_10116' as dbName from rat_10116..SNP union all  select *, 'rat_10118' as dbName from rat_10118..SNP union all  select *, 'rice_4530' as dbName from rice_4530..SNP union all  select *, 'salmon_74940' as dbName from salmon_74940..SNP union all  select *, 'salmon_8018' as dbName from salmon_8018..SNP union all  select *, 'salmon_8019' as dbName from salmon_8019..SNP union all  select *, 'salmon_8023' as dbName from salmon_8023..SNP union all  select *, 'salmon_8030' as dbName from salmon_8030..SNP union all  select *, 'sheep_9940' as dbName from sheep_9940..SNP union all  select *, 'soybean_3847' as dbName from soybean_3847..SNP union all  select *, 'sugarcane_128810' as dbName from sugarcane_128810..SNP union all  select *, 'tilapia_8128' as dbName from tilapia_8128..SNP union all  select *, 'trematode_6183' as dbName from trematode_6183..SNP union all  select *, 'trout_8022' as dbName from trout_8022..SNP union all  select *, 'tubeworm_216498' as dbName from tubeworm_216498..SNP union all  select *, 'zebrafish_7955' as dbName from zebrafish_7955..SNP
667 ;SET QUOTED_IDENTIFIER OFF 
668 ;SET ANSI_NULLS ON 
669 ;
670
671 SET QUOTED_IDENTIFIER OFF 
672 ;SET ANSI_NULLS OFF 
673 ;
674  create view vw_all_SubPop  as  select *, 'arabidopsis_3702' as dbName from arabidopsis_3702..SubPop union all  select *, 'bee_7460' as dbName from bee_7460..SubPop union all  select *, 'bison_9901' as dbName from bison_9901..SubPop union all  select *, 'blackbird_39638' as dbName from blackbird_39638..SubPop union all  select *, 'bonobo_9597' as dbName from bonobo_9597..SubPop union all  select *, 'chicken_9031' as dbName from chicken_9031..SubPop union all  select *, 'chimpanzee_9598' as dbName from chimpanzee_9598..SubPop union all  select *, 'cooperia_27828' as dbName from cooperia_27828..SubPop union all  select *, 'corn_4577' as dbName from corn_4577..SubPop union all  select *, 'cow_30522' as dbName from cow_30522..SubPop union all  select *, 'cow_9913' as dbName from cow_9913..SubPop union all  select *, 'dog_9615' as dbName from dog_9615..SubPop union all  select *, 'flycatcher_46689' as dbName from flycatcher_46689..SubPop union all  select *, 'flycatcher_59894' as dbName from flycatcher_59894..SubPop union all  select *, 'fruitfly_7227' as dbName from fruitfly_7227..SubPop union all  select *, 'gorilla_9593' as dbName from gorilla_9593..SubPop union all  select *, 'horse_9796' as dbName from horse_9796..SubPop union all  select *, 'human_9606' as dbName from human_9606..SubPop union all  select *, 'macaque_9544' as dbName from macaque_9544..SubPop union all  select *, 'mosquito_7165' as dbName from mosquito_7165..SubPop union all  select *, 'mouse_10090' as dbName from mouse_10090..SubPop union all  select *, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..SubPop union all  select *, 'nematode_6239' as dbName from nematode_6239..SubPop union all  select *, 'orangutan_9600' as dbName from orangutan_9600..SubPop union all  select *, 'pig_9823' as dbName from pig_9823..SubPop union all  select *, 'pine_71647' as dbName from pine_71647..SubPop union all  select *, 'plasmodium_5833' as dbName from plasmodium_5833..SubPop union all  select *, 'rat_10116' as dbName from rat_10116..SubPop union all  select *, 'rat_10118' as dbName from rat_10118..SubPop union all  select *, 'rice_4530' as dbName from rice_4530..SubPop union all  select *, 'salmon_74940' as dbName from salmon_74940..SubPop union all  select *, 'salmon_8030' as dbName from salmon_8030..SubPop union all  select *, 'sheep_9940' as dbName from sheep_9940..SubPop union all  select *, 'soybean_3847' as dbName from soybean_3847..SubPop union all  select *, 'sugarcane_128810' as dbName from sugarcane_128810..SubPop union all  select *, 'trematode_6183' as dbName from trematode_6183..SubPop union all  select *, 'trout_8022' as dbName from trout_8022..SubPop union all  select *, 'tubeworm_216498' as dbName from tubeworm_216498..SubPop union all  select *, 'zebrafish_7955' as dbName from zebrafish_7955..SubPop uni
675 ;SET QUOTED_IDENTIFIER OFF 
676 ;SET ANSI_NULLS ON 
677 ;
678
679 SET QUOTED_IDENTIFIER OFF 
680 ;SET ANSI_NULLS OFF 
681 ;
682  create view vw_all_SubSNP  as  select * from arabidopsis_3702..SubSNP union all  select * from bee_7460..SubSNP union all  select * from bison_9901..SubSNP union all  select * from blackbird_39638..SubSNP union all  select * from bonobo_9597..SubSNP union all  select * from chicken_9031..SubSNP union all  select * from chimpanzee_9598..SubSNP union all  select * from cooperia_27828..SubSNP union all  select * from corn_4577..SubSNP union all  select * from cow_30522..SubSNP union all  select * from cow_9913..SubSNP union all  select * from dog_9615..SubSNP union all  select * from flycatcher_46689..SubSNP union all  select * from flycatcher_59894..SubSNP union all  select * from fruitfly_7227..SubSNP union all  select * from gorilla_9593..SubSNP union all  select * from horse_9796..SubSNP union all  select * from human_9606..SubSNP union all  select * from macaque_9544..SubSNP union all  select * from mosquito_7165..SubSNP union all  select * from mouse_10090..SubSNP union all  select * from mouse_spretus_10096..SubSNP union all  select * from nematode_6239..SubSNP union all  select * from orangutan_9600..SubSNP union all  select * from pig_9823..SubSNP union all  select * from pine_71647..SubSNP union all  select * from plasmodium_5833..SubSNP union all  select * from rat_10116..SubSNP union all  select * from rat_10118..SubSNP union all  select * from rice_4530..SubSNP union all  select * from salmon_74940..SubSNP union all  select * from salmon_8030..SubSNP union all  select * from sheep_9940..SubSNP union all  select * from soybean_3847..SubSNP union all  select * from sugarcane_128810..SubSNP union all  select * from trematode_6183..SubSNP union all  select * from trout_8022..SubSNP union all  select * from tubeworm_216498..SubSNP union all  select * from zebrafish_7955..SubSNP uni
683 ;SET QUOTED_IDENTIFIER OFF 
684 ;SET ANSI_NULLS ON 
685 ;
686
687 SET QUOTED_IDENTIFIER OFF 
688 ;SET ANSI_NULLS OFF 
689 ;
690  create view vw_all_SubSNPDeletedBySubmitter  as  select * from vw_all_SubSNPDeletedBySubmitter_part2 union all  select * from vw_all_SubSNPDeletedBySubmitter_part1
691 ;SET QUOTED_IDENTIFIER OFF 
692 ;SET ANSI_NULLS ON 
693 ;
694
695 SET QUOTED_IDENTIFIER OFF 
696 ;SET ANSI_NULLS OFF 
697 ;
698  create view vw_all_SubSNPDeletedBySubmitter_part1  as  select *, 'arabidopsis_3702' as dbName from arabidopsis_3702..SubSNPDeletedBySubmitter union all  select *, 'bee_7460' as dbName from bee_7460..SubSNPDeletedBySubmitter union all  select *, 'bison_9901' as dbName from bison_9901..SubSNPDeletedBySubmitter union all  select *, 'blackbird_39638' as dbName from blackbird_39638..SubSNPDeletedBySubmitter union all  select *, 'bonobo_9597' as dbName from bonobo_9597..SubSNPDeletedBySubmitter union all  select *, 'chicken_9031' as dbName from chicken_9031..SubSNPDeletedBySubmitter union all  select *, 'chimpanzee_9598' as dbName from chimpanzee_9598..SubSNPDeletedBySubmitter union all  select *, 'cooperia_27828' as dbName from cooperia_27828..SubSNPDeletedBySubmitter union all  select *, 'corn_4577' as dbName from corn_4577..SubSNPDeletedBySubmitter union all  select *, 'cow_30522' as dbName from cow_30522..SubSNPDeletedBySubmitter union all  select *, 'cow_9913' as dbName from cow_9913..SubSNPDeletedBySubmitter union all  select *, 'dog_9615' as dbName from dog_9615..SubSNPDeletedBySubmitter union all  select *, 'flycatcher_46689' as dbName from flycatcher_46689..SubSNPDeletedBySubmitter union all  select *, 'flycatcher_59894' as dbName from flycatcher_59894..SubSNPDeletedBySubmitter union all  select *, 'fruitfly_7227' as dbName from fruitfly_7227..SubSNPDeletedBySubmitter union all  select *, 'gorilla_9593' as dbName from gorilla_9593..SubSNPDeletedBySubmitter union all  select *, 'horse_9796' as dbName from horse_9796..SubSNPDeletedBySubmitter union all  select *, 'human_9606' as dbName from human_9606..SubSNPDeletedBySubmitter union all  select *, 'macaque_9544' as dbName from macaque_9544..SubSNPDeletedBySubmitter union all  select *, 'mosquito_62324' as dbName from mosquito_62324..SubSNPDeletedBySubmitter union all  select *, 'mosquito_7165' as dbName from mosquito_7165..SubSNPDeletedBySubmitter union all  select *, 'mouse_10090' as dbName from mouse_10090..SubSNPDeletedBySubmitter union all  select *, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..SubSNPDeletedBySubmitter union all  select *, 'nematode_6239' as dbName from nematode_6239..SubSNPDeletedBySubmitter union all  select *, 'onion_4679' as dbName from onion_4679..SubSNPDeletedBySubmitter union all  select *, 'orangutan_9600' as dbName from orangutan_9600..SubSNPDeletedBySubmitter union all  select *, 'pig_9823' as dbName from pig_9823..SubSNPDeletedBySubmitter union all  select *, 'pine_71647' as dbName from pine_71647..SubSNPDeletedBySubmitter union all  select *, 'plasmodium_5833' as dbName from plasmodium_5833..SubSNPDeletedBySubmitter union all  select *, 'rat_10116' as dbName from rat_10116..SubSNPDeletedBySubmitter union all  select *, 'rat_10118' as dbName from rat_10118..SubSNPDeletedBySubmitter union all  select *, 'rice_4530' as dbName from rice_4530..SubSNPDeletedBySubmitter union all  select *, 'salmon_74940' as dbName from salmon_74940..SubSNPDeletedBySubmitter union all  select *, 'salmon_8018' as dbName from salmon_8018..SubSNPDeletedBySubmitter union all  select *, 'salmon_8019' as dbName from salmon_8019..SubSNPDeletedBySubmitter union all  select *, 'salmon_8023' as dbName from salmon_8023..SubSNPDeletedBySubmitter union all  select *, 'salmon_8030' as dbName from salmon_8030..SubSNPDeletedBySubmitter union all  select *, 'sheep_9940' as dbName from sheep_9940..SubSNPDeletedBySubmitter union all  select *, 'soybean_3847' as dbName from soybean_3847..SubSNPDeletedBySubmitter union all  select *, 'sugarcane_128810' as dbName from sugarcane_128810..SubSNPDeletedBySubmitter union all  select *, 'tilapia_8128' as dbName from tilapia_8128..SubSNPDeletedBySubmitter union all  select *, 'trematode_6183' as dbName from trematode_6183..SubSNPDeletedBySubmitter
699 ;SET QUOTED_IDENTIFIER OFF 
700 ;SET ANSI_NULLS ON 
701 ;
702
703 SET QUOTED_IDENTIFIER OFF 
704 ;SET ANSI_NULLS OFF 
705 ;
706  create view vw_all_SubSNPDeletedBySubmitter_part2  as  select *, 'trout_8022' as dbName from trout_8022..SubSNPDeletedBySubmitter union all  select *, 'tubeworm_216498' as dbName from tubeworm_216498..SubSNPDeletedBySubmitter union all  select *, 'zebrafish_7955' as dbName from zebrafish_7955..SubSNPDeletedBySubmitter
707 ;SET QUOTED_IDENTIFIER OFF 
708 ;SET ANSI_NULLS ON 
709 ;
710
711 SET QUOTED_IDENTIFIER OFF 
712 ;SET ANSI_NULLS OFF 
713 ;
714  create view vw_all_SubmittedIndividual  as  select *, 'arabidopsis_3702' as dbName from arabidopsis_3702..SubmittedIndividual union all  select *, 'bee_7460' as dbName from bee_7460..SubmittedIndividual union all  select *, 'bison_9901' as dbName from bison_9901..SubmittedIndividual union all  select *, 'blackbird_39638' as dbName from blackbird_39638..SubmittedIndividual union all  select *, 'bonobo_9597' as dbName from bonobo_9597..SubmittedIndividual union all  select *, 'chicken_9031' as dbName from chicken_9031..SubmittedIndividual union all  select *, 'chimpanzee_9598' as dbName from chimpanzee_9598..SubmittedIndividual union all  select *, 'cooperia_27828' as dbName from cooperia_27828..SubmittedIndividual union all  select *, 'corn_4577' as dbName from corn_4577..SubmittedIndividual union all  select *, 'cow_30522' as dbName from cow_30522..SubmittedIndividual union all  select *, 'cow_9913' as dbName from cow_9913..SubmittedIndividual union all  select *, 'dog_9615' as dbName from dog_9615..SubmittedIndividual union all  select *, 'flycatcher_46689' as dbName from flycatcher_46689..SubmittedIndividual union all  select *, 'flycatcher_59894' as dbName from flycatcher_59894..SubmittedIndividual union all  select *, 'fruitfly_7227' as dbName from fruitfly_7227..SubmittedIndividual union all  select *, 'gorilla_9593' as dbName from gorilla_9593..SubmittedIndividual union all  select *, 'horse_9796' as dbName from horse_9796..SubmittedIndividual union all  select *, 'human_9606' as dbName from human_9606..SubmittedIndividual union all  select *, 'macaque_9544' as dbName from macaque_9544..SubmittedIndividual union all  select *, 'mosquito_7165' as dbName from mosquito_7165..SubmittedIndividual union all  select *, 'mouse_10090' as dbName from mouse_10090..SubmittedIndividual union all  select *, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..SubmittedIndividual union all  select *, 'nematode_6239' as dbName from nematode_6239..SubmittedIndividual union all  select *, 'orangutan_9600' as dbName from orangutan_9600..SubmittedIndividual union all  select *, 'pig_9823' as dbName from pig_9823..SubmittedIndividual union all  select *, 'pine_71647' as dbName from pine_71647..SubmittedIndividual union all  select *, 'plasmodium_5833' as dbName from plasmodium_5833..SubmittedIndividual union all  select *, 'rat_10116' as dbName from rat_10116..SubmittedIndividual union all  select *, 'rat_10118' as dbName from rat_10118..SubmittedIndividual union all  select *, 'rice_4530' as dbName from rice_4530..SubmittedIndividual union all  select *, 'salmon_74940' as dbName from salmon_74940..SubmittedIndividual union all  select *, 'salmon_8018' as dbName from salmon_8018..SubmittedIndividual union all  select *, 'salmon_8019' as dbName from salmon_8019..SubmittedIndividual union all  select *, 'salmon_8023' as dbName from salmon_8023..SubmittedIndividual union all  select *, 'salmon_8030' as dbName from salmon_8030..SubmittedIndividual union all  select *, 'sheep_9940' as dbName from sheep_9940..SubmittedIndividual union all  select *, 'soybean_3847' as dbName from soybean_3847..SubmittedIndividual union all  select *, 'sugarcane_128810' as dbName from sugarcane_128810..SubmittedIndividual union all  select *, 'trematode_6183' as dbName from trematode_6183..SubmittedIndividual union all  select *, 'trout_8022' as dbName from trout_8022..SubmittedIndividual union all  select *, 'tubeworm_216498' as dbName from tubeworm_216498..SubmittedIndividual union all  select *, 'zebrafish_7955' as dbName from zebrafish_7955..SubmittedIndividual uni
715 ;SET QUOTED_IDENTIFIER OFF 
716 ;SET ANSI_NULLS ON 
717 ;
718
719 SET QUOTED_IDENTIFIER OFF 
720 ;SET ANSI_NULLS OFF 
721 ;
722  create view vw_all_dn_batchCount  as  select *, 'arabidopsis_3702' as dbName from arabidopsis_3702..dn_batchCount union all  select *, 'bee_7460' as dbName from bee_7460..dn_batchCount union all  select *, 'bison_9901' as dbName from bison_9901..dn_batchCount union all  select *, 'blackbird_39638' as dbName from blackbird_39638..dn_batchCount union all  select *, 'bonobo_9597' as dbName from bonobo_9597..dn_batchCount union all  select *, 'chicken_9031' as dbName from chicken_9031..dn_batchCount union all  select *, 'chimpanzee_9598' as dbName from chimpanzee_9598..dn_batchCount union all  select *, 'cooperia_27828' as dbName from cooperia_27828..dn_batchCount union all  select *, 'corn_4577' as dbName from corn_4577..dn_batchCount union all  select *, 'cow_30522' as dbName from cow_30522..dn_batchCount union all  select *, 'cow_9913' as dbName from cow_9913..dn_batchCount union all  select *, 'dog_9615' as dbName from dog_9615..dn_batchCount union all  select *, 'flycatcher_46689' as dbName from flycatcher_46689..dn_batchCount union all  select *, 'flycatcher_59894' as dbName from flycatcher_59894..dn_batchCount union all  select *, 'fruitfly_7227' as dbName from fruitfly_7227..dn_batchCount union all  select *, 'gorilla_9593' as dbName from gorilla_9593..dn_batchCount union all  select *, 'horse_9796' as dbName from horse_9796..dn_batchCount union all  select *, 'human_9606' as dbName from human_9606..dn_batchCount union all  select *, 'macaque_9544' as dbName from macaque_9544..dn_batchCount union all  select *, 'mosquito_7165' as dbName from mosquito_7165..dn_batchCount union all  select *, 'mouse_10090' as dbName from mouse_10090..dn_batchCount union all  select *, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..dn_batchCount union all  select *, 'nematode_6239' as dbName from nematode_6239..dn_batchCount union all  select *, 'orangutan_9600' as dbName from orangutan_9600..dn_batchCount union all  select *, 'pig_9823' as dbName from pig_9823..dn_batchCount union all  select *, 'pine_71647' as dbName from pine_71647..dn_batchCount union all  select *, 'plasmodium_5833' as dbName from plasmodium_5833..dn_batchCount union all  select *, 'rat_10116' as dbName from rat_10116..dn_batchCount union all  select *, 'rat_10118' as dbName from rat_10118..dn_batchCount union all  select *, 'rice_4530' as dbName from rice_4530..dn_batchCount union all  select *, 'salmon_74940' as dbName from salmon_74940..dn_batchCount union all  select *, 'salmon_8018' as dbName from salmon_8018..dn_batchCount union all  select *, 'salmon_8019' as dbName from salmon_8019..dn_batchCount union all  select *, 'salmon_8023' as dbName from salmon_8023..dn_batchCount union all  select *, 'salmon_8030' as dbName from salmon_8030..dn_batchCount union all  select *, 'sheep_9940' as dbName from sheep_9940..dn_batchCount union all  select *, 'soybean_3847' as dbName from soybean_3847..dn_batchCount union all  select *, 'sugarcane_128810' as dbName from sugarcane_128810..dn_batchCount union all  select *, 'trematode_6183' as dbName from trematode_6183..dn_batchCount union all  select *, 'trout_8022' as dbName from trout_8022..dn_batchCount union all  select *, 'tubeworm_216498' as dbName from tubeworm_216498..dn_batchCount union all  select *, 'zebrafish_7955' as dbName from zebrafish_7955..dn_batchCount uni
723 ;SET QUOTED_IDENTIFIER OFF 
724 ;SET ANSI_NULLS ON 
725 ;
726
727 SET QUOTED_IDENTIFIER OFF 
728 ;SET ANSI_NULLS OFF 
729 ;
730  create view vw_all_dn_handleCount  as  select * from vw_all_dn_handleCount_part2 union all  select * from vw_all_dn_handleCount_part1
731 ;SET QUOTED_IDENTIFIER OFF 
732 ;SET ANSI_NULLS ON 
733 ;
734
735 SET QUOTED_IDENTIFIER OFF 
736 ;SET ANSI_NULLS OFF 
737 ;
738  create view vw_all_dn_handleCount_part1  as  select *, 'arabidopsis_3702' as dbName from arabidopsis_3702..dn_handleCount union all  select *, 'barrel_medic_3880' as dbName from barrel_medic_3880..dn_handleCount union all  select *, 'bee_7460' as dbName from bee_7460..dn_handleCount union all  select *, 'bison_9901' as dbName from bison_9901..dn_handleCount union all  select *, 'blackbird_39638' as dbName from blackbird_39638..dn_handleCount union all  select *, 'bonobo_9597' as dbName from bonobo_9597..dn_handleCount union all  select *, 'cat_9685' as dbName from cat_9685..dn_handleCount union all  select *, 'chicken_9031' as dbName from chicken_9031..dn_handleCount union all  select *, 'chimpanzee_9598' as dbName from chimpanzee_9598..dn_handleCount union all  select *, 'cooperia_27828' as dbName from cooperia_27828..dn_handleCount union all  select *, 'corn_4577' as dbName from corn_4577..dn_handleCount union all  select *, 'cow_30522' as dbName from cow_30522..dn_handleCount union all  select *, 'cow_9913' as dbName from cow_9913..dn_handleCount union all  select *, 'dog_9615' as dbName from dog_9615..dn_handleCount union all  select *, 'flycatcher_46689' as dbName from flycatcher_46689..dn_handleCount union all  select *, 'flycatcher_59894' as dbName from flycatcher_59894..dn_handleCount union all  select *, 'fruitfly_7227' as dbName from fruitfly_7227..dn_handleCount union all  select *, 'fusarium_5518' as dbName from fusarium_5518..dn_handleCount union all  select *, 'goat_9925' as dbName from goat_9925..dn_handleCount union all  select *, 'gorilla_9593' as dbName from gorilla_9593..dn_handleCount union all  select *, 'grape_29760' as dbName from grape_29760..dn_handleCount union all  select *, 'horse_9796' as dbName from horse_9796..dn_handleCount union all  select *, 'human_9606' as dbName from human_9606..dn_handleCount union all  select *, 'macaque_9541' as dbName from macaque_9541..dn_handleCount union all  select *, 'macaque_9544' as dbName from macaque_9544..dn_handleCount union all  select *, 'mosquito_62324' as dbName from mosquito_62324..dn_handleCount union all  select *, 'mosquito_7165' as dbName from mosquito_7165..dn_handleCount union all  select *, 'mouse_10090' as dbName from mouse_10090..dn_handleCount union all  select *, 'mouse_spretus_10096' as dbName from mouse_spretus_10096..dn_handleCount union all  select *, 'nematode_51029' as dbName from nematode_51029..dn_handleCount union all  select *, 'nematode_6238' as dbName from nematode_6238..dn_handleCount union all  select *, 'nematode_6239' as dbName from nematode_6239..dn_handleCount union all  select *, 'onion_4679' as dbName from onion_4679..dn_handleCount union all  select *, 'opossum_13616' as dbName from opossum_13616..dn_handleCount union all  select *, 'orangutan_9600' as dbName from orangutan_9600..dn_handleCount union all  select *, 'pig_9823' as dbName from pig_9823..dn_handleCount union all  select *, 'pine_71647' as dbName from pine_71647..dn_handleCount union all  select *, 'plasmodium_5833' as dbName from plasmodium_5833..dn_handleCount union all  select *, 'platypus_9258' as dbName from platypus_9258..dn_handleCount union all  select *, 'rat_10116' as dbName from rat_10116..dn_handleCount union all  select *, 'rat_10118' as dbName from rat_10118..dn_handleCount union all  select *, 'rice_4530' as dbName from rice_4530..dn_handleCount union all  select *, 'salmon_74940' as dbName from salmon_74940..dn_handleCount union all  select *, 'salmon_8018' as dbName from salmon_8018..dn_handleCount union all  select *, 'salmon_8019' as dbName from salmon_8019..dn_handleCount union all  select *, 'salmon_8023' as dbName from salmon_8023..dn_handleCount union all  select *, 'salmon_8030' as dbName from salmon_8030..dn_handleCount
739 ;SET QUOTED_IDENTIFIER OFF 
740 ;SET ANSI_NULLS ON 
741 ;
742
743 SET QUOTED_IDENTIFIER OFF 
744 ;SET ANSI_NULLS OFF 
745 ;
746  create view vw_all_dn_handleCount_part2  as  select *, 'sheep_9940' as dbName from sheep_9940..dn_handleCount union all  select *, 'soybean_3847' as dbName from soybean_3847..dn_handleCount union all  select *, 'staphylococcus_1280' as dbName from staphylococcus_1280..dn_handleCount union all  select *, 'sugarcane_128810' as dbName from sugarcane_128810..dn_handleCount union all  select *, 'tilapia_8128' as dbName from tilapia_8128..dn_handleCount union all  select *, 'tomato_4081' as dbName from tomato_4081..dn_handleCount union all  select *, 'trematode_6183' as dbName from trematode_6183..dn_handleCount union all  select *, 'trout_8022' as dbName from trout_8022..dn_handleCount union all  select *, 'tubeworm_216498' as dbName from tubeworm_216498..dn_handleCount union all  select *, 'white_shrimp_6689' as dbName from white_shrimp_6689..dn_handleCount union all  select *, 'zebrafish_7955' as dbName from zebrafish_7955..dn_handleCount union all  select *, 'zostera_29655' as dbName from zostera_29655..dn_handleCount
747 ;SET QUOTED_IDENTIFIER OFF 
748 ;SET ANSI_NULLS ON 
749 ;
750
751 SET QUOTED_IDENTIFIER ON 
752 ;SET ANSI_NULLS ON 
753 ;
754 CREATE VIEW dbo.vw_snp_nucleotide
755 AS
756 select * from human_9606..vw_snp_nucleotide 
757
758 /*
759 select * from mosquito_7165..vw_snp_nucleotide 
760 union
761 select * from bee_7460..vw_snp_nucleotide 
762 union 
763 select * from bison_9901..vw_snp_nucleotide
764  union
765 select * from cow_30522..vw_snp_nucleotide 
766 union
767 select * from cow_9913..vw_snp_nucleotide 
768 union
769 select * from nematode_6239..vw_snp_nucleotide 
770 union
771 select * from dog_9615..vw_snp_nucleotide 
772 union
773 select * from zebrafish_7955..vw_snp_nucleotide
774 union
775 select * from chicken_9031..vw_snp_nucleotide
776 union
777 select * from mouse_10090..vw_snp_nucleotide 
778 union
779 select * from rice_4530..vw_snp_nucleotide 
780 union
781 select * from chimpanzee_9598..vw_snp_nucleotide
782 union
783 select * from rat_10116..vw_snp_nucleotide
784
785 */
786
787
788 ;SET QUOTED_IDENTIFIER OFF 
789 ;SET ANSI_NULLS ON 
790 ;
791