-
Notifications
You must be signed in to change notification settings - Fork 0
/
genomes.html
1096 lines (1035 loc) · 101 KB
/
genomes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js ie6 ie" xmlns="http://www.w3.org/1999/xhtml" lang="en" dir="ltr"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 ie" xmlns="http://www.w3.org/1999/xhtml" lang="en" dir="ltr"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 ie" xmlns="http://www.w3.org/1999/xhtml" lang="en" dir="ltr"> <![endif]-->
<!--[if IE 9]> <html class="no-js ie9 ie" xmlns="http://www.w3.org/1999/xhtml" lang="en" dir="ltr"> <![endif]-->
<!--[if gt IE 9]><!--> <html class="no-js" xmlns="http://www.w3.org/1999/xhtml" lang="en" dir="ltr"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:og="http://ogp.me/ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:sioc="http://rdfs.org/sioc/ns#"
xmlns:sioct="http://rdfs.org/sioc/types#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"> <!--<![endif]-->
<!-- Mirrored from legacy.vectorbase.org/genomes by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 10 May 2021 21:49:43 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="images/favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="shortlink" href="node/9767330.html" />
<link rel="canonical" href="genomes.html" />
<meta name="Generator" content="Drupal 7 (http://drupal.org)" />
<title>Genomes | VectorBase</title>
<link type="text/css" rel="stylesheet" href="sites/default/files/ftp/css/css_xE-rWrJf-fncB6ztZfd2huxqgxu4WO-qwma6Xer30m4.css" media="all" />
<link type="text/css" rel="stylesheet" href="sites/default/files/ftp/css/css_mxbvRAV0_YoXwGCXbsQzCkegc1pXHICzfd8PPQD9YE4.css" media="all" />
<link type="text/css" rel="stylesheet" href="sites/default/files/ftp/css/css_PICr0GKGg7bWv71lKRa_OEkomgs62T8kc1nkoHGPaHQ.css" media="all" />
<link type="text/css" rel="stylesheet" href="sites/default/files/ftp/css/css_eufK8PJpxJVaRetPZyI9u26Sa07yMCpM7nLkBEvpRHA.css" media="all" />
<link type="text/css" rel="stylesheet" href="sites/default/files/ftp/css/css_cP6Vh1gUqUILwv-7MkMGbDM2EBjPjnFQHo4vhLrssf8.css" media="all" />
<link type="text/css" rel="stylesheet" href="sites/default/files/ftp/css/css_rprouKRjRbkIKo9d6RXSljtPMncKZiBQLHESwU_LbNM.css" media="all" />
<script type="text/javascript" src="sites/default/files/ftp/js/js_gabcqQuKQ3_nd37NqOuWd9WQRIYOjCKdKTvRCaIo06I.js"></script>
<script type="text/javascript" src="sites/default/files/ftp/js/js_zJeG4OGffO4aampI_xLmtj3WRIcE06V9UF8xhvTJKAM.js"></script>
<script type="text/javascript" src="sites/default/files/ftp/js/js_cLEvhoD3_g4lSZ6lfYzcDtmVdms3cZizAjb5jA3ABGQ.js"></script>
<script type="text/javascript" src="sites/default/files/ftp/js/js_08ByJhRYjSGp07AndqqBMgkJe1tY-8dUHOOO8Jy0NMY.js"></script>
<script type="text/javascript" src="sites/default/files/ftp/js/js_mw06s-gYd-ANxp8zZ_N-xVkvD8F3Tf5OMGUGwU-H6zY.js"></script>
<script type="text/javascript" src="sites/default/files/ftp/js/js_EXqXMFbvpy4r2fvHe4U7HNe5y1ZFdcqUrqUlbWUBfb4.js"></script>
<script type="text/javascript" src="sites/default/files/ftp/js/js_rsGiM5M1ffe6EhN-RnhM5f3pDyJ8ZAPFJNKpfjtepLk.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
(function(i,s,o,g,r,a,m){i["GoogleAnalyticsObject"]=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,"script","https://www.google-analytics.com/analytics.js","ga");ga("create", "UA-6417661-1", {"cookieDomain":".legacy.vectorbase.org"});// URL decode, just in case
var hrefResult=decodeURIComponent(window.location.href);
var pathResult=decodeURIComponent(window.location.pathname);
// check URL has search
if (pathResult.includes("https://legacy.vectorbase.org/search/site/")) {
// split pathname with /, then take the last value as search/query parameter
var splitPathresult=pathResult.split("index.html");
var searchValue=splitPathresult[splitPathresult.length-1];
//strip quotes from searchValue
searchValue=searchValue.replace(/['"]+/g, '');
// in case Category (?) exists - needs to check .href, not .pathname
if (hrefResult.includes("?")) {
// split pathname with /, then take the last value as search/query parameter
var splitPathresult=pathResult.split("index.html");
var searchValue=splitPathresult[splitPathresult.length-1];
// split pathname with ?, then take the last value as GA (Google Analytics) category
var splitHref=hrefResult.split("?");
var categoryValue=splitHref[splitHref.length-1];
// if the first character of Category is ampersand, &, remove it, just in case
if (categoryValue[0] == "&") {
categoryValue = categoryValue.substr(1);
}
//strip quotes from categoryValue
categoryValue=categoryValue.replace(/['"]+/g, '');
// make ga command
var gaCommandUrl = '/search/site?search=' + searchValue + '&' + categoryValue;
// set page instead of send pageview
ga('set', 'page', gaCommandUrl);
} else {
var gaCommandUrl = '/search/site?search=' + searchValue;
// set page instead of send pageview
ga('set', 'page', gaCommandUrl);
}
}ga("send", "pageview");
//--><!]]>
</script>
<script type="text/javascript" src="sites/default/files/ftp/js/js_Cv5tN7wsTPTtQjF3wZdxqcOLDGuxEFfWQy50Tyq9mEw.js"></script>
<script type="text/javascript" src="sites/default/files/ftp/js/js_tl9xHQ_hdQMKNylSuI2Op9wFOQu73kVboIrZvWiiTwY.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"acquia_marina","theme_token":"UshLAuHto6l2PGzBVy0sd0390mp-TRxr21oRjCdmij4","js":{"public:\/\/google_tag\/google_tag.script.js":1,"sites\/all\/modules\/added\/devel\/jquery-1.4.4-uncompressed.js":1,"misc\/jquery.once.js":1,"misc\/drupal.js":1,"misc\/ui\/jquery.ui.core.min.js":1,"misc\/ui\/jquery.ui.widget.min.js":1,"misc\/ui\/jquery.ui.position.min.js":1,"misc\/ui\/jquery.ui.autocomplete.min.js":1,"misc\/jquery.cookie.js":1,"misc\/jquery.form.js":1,"misc\/ajax.js":1,"sites\/all\/libraries\/jquery\/jquery-1.10.2.min.js":1,"sites\/all\/modules\/added\/jqmulti\/js\/switch.js":1,"sites\/all\/modules\/added\/attach\/attach.js":1,"sites\/all\/modules\/added\/google_analytics\/googleanalytics.js":1,"0":1,"misc\/progress.js":1,"modules\/file\/file.js":1,"sites\/all\/modules\/custom\/vbsearch\/js\/vbsearch_basic.js":1,"sites\/all\/modules\/custom\/vbsearch\/modules\/vbsearch_autocomplete\/vbsearch_autocomplete.js":1,"sites\/all\/libraries\/superfish\/jquery.hoverIntent.minified.js":1,"sites\/all\/libraries\/superfish\/superfish.js":1,"sites\/all\/libraries\/superfish\/supersubs.js":1,"sites\/all\/modules\/added\/superfish\/superfish.js":1,"sites\/all\/themes\/fusion\/fusion_core\/js\/script.js":1,"sites\/all\/themes\/acquia_marina\/js\/jquery.browser.js":1,"sites\/all\/themes\/acquia_marina\/js\/advanced-search.js":1,"sites\/all\/themes\/acquia_marina\/js\/jquery.corner.js":1,"sites\/all\/themes\/acquia_marina\/js\/acquia-marina-script.js":1,"sites\/all\/themes\/acquia_marina\/js\/tablesorter\/jquery.tablesorter.js":1,"sites\/all\/themes\/acquia_marina\/js\/jquery.animate-shadow-min.js":1},"css":{"modules\/system\/system.base.css":1,"modules\/system\/system.menus.css":1,"modules\/system\/system.messages.css":1,"modules\/system\/system.theme.css":1,"misc\/ui\/jquery.ui.core.css":1,"misc\/ui\/jquery.ui.theme.css":1,"misc\/ui\/jquery.ui.autocomplete.css":1,"sites\/all\/modules\/added\/attach\/attach.css":1,"sites\/all\/modules\/added\/calendar\/css\/calendar_multiday.css":1,"modules\/comment\/comment.css":1,"sites\/all\/modules\/custom\/cvbrowser\/css\/cvbrowser.css":1,"sites\/all\/modules\/added\/date\/date_api\/date.css":1,"sites\/all\/modules\/added\/date\/date_popup\/themes\/datepicker.1.7.css":1,"modules\/field\/theme\/field.css":1,"modules\/node\/node.css":1,"modules\/search\/search.css":1,"modules\/user\/user.css":1,"sites\/all\/modules\/added\/views\/css\/views.css":1,"sites\/all\/modules\/added\/ctools\/css\/ctools.css":1,"sites\/all\/modules\/custom\/error_log\/error_log.css":1,"sites\/all\/modules\/custom\/fast_gallery\/fast_gallery.css":1,"sites\/all\/modules\/custom\/iptc_editor\/iptc_editor.css":1,"sites\/all\/modules\/custom\/lexicon\/css\/lexicon.css":1,"sites\/all\/modules\/custom\/submenu_arrows\/submenu_arrows.css":1,"sites\/all\/modules\/custom\/rna_seq\/css\/rna_seq.css":1,"modules\/file\/file.css":1,"file":1,"sites\/all\/modules\/custom\/vbsearch\/css\/vbsearch.css":1,"sites\/all\/modules\/custom\/vbsearch\/modules\/vbsearch_autocomplete\/vbsearch_autocomplete.css":1,"sites\/all\/libraries\/superfish\/css\/superfish.css":1,"sites\/all\/libraries\/superfish\/style\/default.css":1,"sites\/all\/themes\/fusion\/fusion_core\/css\/fusion-style.css":1,"sites\/all\/themes\/fusion\/fusion_core\/css\/fusion-typography.css":1,"sites\/all\/themes\/fusion\/fusion_core\/skins\/core\/fusion-core-skins.css":1,"sites\/all\/themes\/acquia_marina\/css\/search.css":1,"sites\/all\/themes\/acquia_marina\/css\/fusion-acquia-marina-style.css":1,"sites\/all\/themes\/acquia_marina\/css\/slideshow.css":1,"sites\/all\/themes\/fusion\/fusion_core\/css\/grid16-960.css":1,"sites\/all\/themes\/acquia_marina\/css\/local.css":1}},"googleanalytics":{"trackOutbound":1,"trackMailto":1,"trackDownload":1,"trackDownloadExtensions":"7z|aac|arc|arj|asf|asx|avi|bin|csv|doc(x|m)?|dot(x|m)?|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt(x|m)?|pot(x|m)?|pps(x|m)?|ppam|sld(x|m)?|thmx|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls(x|m|b)?|xlt(x|m)|xlam|xml|z|zip","trackDomainMode":1},"blast":{"blastPath":"sites\/all\/modules\/custom\/blast"},"clustalw":{"clustalwPath":"sites\/all\/modules\/custom\/clustalw"},"hmmer":{"hmmerPath":"sites\/all\/modules\/custom\/hmmer"},"xgrid":{"xgridPath":"sites\/all\/modules\/custom\/xgrid"},"file":{"elements":{"#edit-field-file-search-und-0-upload":"txt"}},"ajax":{"edit-field-file-search-und-0-upload-button":{"wrapper":"edit-field-file-search-und-0-ajax-wrapper","effect":"fade","progress":{"type":"throbber","message":null},"event":"mousedown","keypress":true,"prevent":"click","url":"https:\/\/legacy.vectorbase.org\/file\/ajax\/file_search\/field_file_search\/und\/0\/form-Ea-0YhQNoUy4h7jujL1nZ9XKIOhrdP2gzcQr8cha0rs","submit":{"_triggering_element_name":"field_file_search_und_0_upload_button","_triggering_element_value":"Upload"}}},"urlIsAjaxTrusted":{"https:\/\/legacy.vectorbase.org\/file\/ajax\/file_search\/field_file_search\/und\/0\/form-Ea-0YhQNoUy4h7jujL1nZ9XKIOhrdP2gzcQr8cha0rs":true,"\/genomes":true,"https:\/\/legacy.vectorbase.org\/user?destination=node\/9767330":true},"superfish":{"1":{"id":"1","sf":{"animation":{"opacity":"show"},"speed":"\u0027fast\u0027","autoArrows":false,"dropShadows":false,"disableHI":false},"plugins":{"supposition":false,"bgiframe":false,"supersubs":{"minWidth":"12","maxWidth":"27","extraWidth":1}}}}});
//--><!]]>
</script>
</head>
<body id="pid-genomes" class="html not-front not-logged-in one-sidebar sidebar-first page-node page-node- page-node-9767330 node-type-page win gecko font-size-12 grid-type-960 grid-width-16 sidebars-split" >
<div id="skip-link">
<a href="#main-content-area">Skip to main content area</a>
</div>
<!-- page-top region -->
<div id="page-top" class="region region-page-top page-top">
<div id="page-top-inner" class="page-top-inner inner">
<noscript aria-hidden="true"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-N8WDMVJ" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager">Google Tag Manager</iframe></noscript> </div><!-- /page-top-inner -->
</div><!-- /page-top -->
<div id="page" class="page">
<div id="page-inner" class="page-inner">
<!-- header-group region: width = grid_width -->
<div id="header-group-wrapper" class="header-group-wrapper full-width clearfix">
<div id="header-group" class="header-group region grid16-16">
<div id="header-group-inner" class="header-group-inner inner clearfix">
<div id="header-site-info" class="header-site-info">
<div id="header-site-info-inner" class="header-site-info-inner gutter">
<div id="logo">
<a href="index.html" title="Home"><img src="sites/default/files/ftp/images/dot_ked_100_trans.png" alt="Home" /></a>
</div>
<div id="site-name-wrapper" class="clearfix">
<div id="site-name"><a href="index.html" title="Home" rel="home">VectorBase</a></div>
<span id="slogan">Bioinformatics Resource for Invertebrate Vectors of Human Pathogens</span>
</div><!-- /site-name-wrapper -->
</div><!-- /header-site-info-inner -->
</div><!-- /header-site-info -->
<div id="block-search-form" class="block block-search my_search first odd">
<div class="inner clearfix gutter">
<div class="inner-wrapper">
<div class="inner-inner">
<div class="content clearfix">
<form enctype="multipart/form-data" action="https://legacy.vectorbase.org/genomes" method="post" id="search-block-form" accept-charset="UTF-8"><div>
<div id="search" class="container-inline">
<div id="search-inner">
<div class="form-item form-type-textfield form-item-search-block-form">
<label class="element-invisible" for="edit-search-block-form--2">Search </label>
<input title="Enter the terms you wish to search for." placeholder="Enter search terms" type="text" id="edit-search-block-form--2" name="search_block_form" value="" size="15" maxlength="128" class="form-text" />
</div>
<div class="field-type-file field-name-field-file-search field-widget-file-generic form-wrapper" id="edit-field-file-search"><div id="edit-field-file-search-und-0-ajax-wrapper"><div class="form-item form-type-managed-file form-item-field-file-search-und-0">
<label for="edit-field-file-search-und-0-upload">File Search </label>
<div class="file-widget form-managed-file clearfix"><input type="file" id="edit-field-file-search-und-0-upload" name="files[field_file_search_und_0]" size="22" class="form-file" /><input type="submit" id="edit-field-file-search-und-0-upload-button" name="field_file_search_und_0_upload_button" value="Upload" class="form-submit" /><input type="hidden" name="field_file_search[und][0][fid]" value="0" />
<input type="hidden" name="field_file_search[und][0][display]" value="1" />
</div>
<div class="description">Files must be less than <strong>5 KB</strong>.<br />Allowed file types: <strong>txt</strong>.</div>
</div>
</div></div><div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Go" class="form-submit" /><a href="https://legacy.vectorbase.org/search/site/%2A?as=True" id="advanced-search-link">Advanced Search</a><a href="# " id="edit-toggle-basic-search-type">Switch Search Type</a></div><input type="hidden" name="form_build_id" value="form-Ea-0YhQNoUy4h7jujL1nZ9XKIOhrdP2gzcQr8cha0rs" />
<input type="hidden" name="form_id" value="search_block_form" />
</div>
</div>
</div></form> </div>
</div><!-- /inner-inner -->
</div><!-- /inner-wrapper -->
</div><!-- /block-inner -->
</div><!-- /block --><div id="block-login_block-login_block" class="block block-login-block last even">
<div class="inner clearfix gutter">
<div class="inner-wrapper">
<div class="inner-inner">
<div class="content clearfix">
<form action="https://legacy.vectorbase.org/user?destination=node/9767330" method="post" id="login-block-form" accept-charset="UTF-8"><div><input type="hidden" name="form_build_id" value="form-V1m9xgGFPvRquh_7APErvphF0beWUI2WcoPxVOjDAmQ" />
<input type="hidden" name="form_id" value="login_block_block" />
<div class="form-actions form-wrapper" id="edit-actions--2"><input type="submit" id="edit-submit--2" name="op" value="Login" class="form-submit" /></div></div></form> </div>
</div><!-- /inner-inner -->
</div><!-- /inner-wrapper -->
</div><!-- /block-inner -->
</div><!-- /block --><div id="content-messages-inner" class="content-messages-inner gutter"><div class="messages error" style="clear:both;">This legacy VectorBase site will be shut down at the end of May 2021. Please visit our <a rel="noreferrer" href="https://vectorbase.org/">new website</a> as part of VEuPathDB.</div></div> </div><!-- /header-group-inner -->
<!-- main-menu region -->
<div id="main-menu-wrapper" class="main-menu-wrapper full-width clearfix">
<div id="main-menu" class="region region-main-menu main-menu grid16-16">
<div id="main-menu-inner" class="main-menu-inner inner">
<div id="block-superfish-1" class="block block-superfish first last odd">
<div class="inner clearfix gutter">
<div class="inner-wrapper">
<div class="inner-inner">
<div class="content clearfix">
<ul id="superfish-1" class="menu sf-menu sf-navigation sf-horizontal sf-style-default"><li id="menu-9388-1" class="first odd sf-item-1 sf-depth-1 sf-no-children"><a href="zika.html" title="Zika Resource Page link" class="sf-depth-1">Zika</a></li><li id="menu-1005-1" class="middle even sf-item-2 sf-depth-1 menuparent"><a href="about.html" title="Information about this invertebrate vector Bioinformatics Resource Center (BRC) " class="sf-depth-1 menuparent">About</a><ul><li id="menu-3846-1" class="first odd sf-item-1 sf-depth-2 sf-no-children"><a href="swg.html" title="Details of VectorBase Scientific Working Group" class="sf-depth-2">VectorBase Scientific Working Group</a></li><li id="menu-3847-1" class="middle even sf-item-2 sf-depth-2 sf-no-children"><a href="sug.html" title="Details of VectorBase Scientific User Group" class="sf-depth-2">VectorBase Scientific User Group</a></li><li id="menu-3848-1" class="middle odd sf-item-3 sf-depth-2 sf-no-children"><a href="personnel.html" title="Details of Personnel" class="sf-depth-2">Personnel</a></li><li id="menu-14054-1" class="last even sf-item-4 sf-depth-2 sf-no-children"><a href="privacy.html" class="sf-depth-2">Data Privacy</a></li></ul></li><li id="menu-962-1" class="middle odd sf-item-3 sf-depth-1 menuparent"><a href="organisms.html" title="" class="sf-depth-1 menuparent">Organisms</a><ul><li id="menu-6928-1" class="first odd sf-item-1 sf-depth-2 menuparent"><a href="taxonomy/aedes.html" title="" class="sf-depth-2 menuparent"><table class="menuarrow"><tr><td class="menuarrowtext"><i>Aedes</i> </td><td class="menuarrowicon"><img class="menuarrow" src="sites/default/files/ftp/triang.png" alt="submenu arrow"></td></tr></table></a><ul class="sf-megamenu"><li class="sf-megamenu-wrapper first odd sf-item-1 sf-depth-2 menuparent"><ol><li id="menu-781-1" class="first odd sf-item-1 sf-depth-3 sf-no-children"><a href="organisms/aedes-aegypti.html" title="" class="sf-depth-3"><i>Aedes aegypti</i></a></li><li id="menu-6929-1" class="last even sf-item-2 sf-depth-3 sf-no-children"><a href="organisms/aedes-albopictus.html" class="sf-depth-3"><i>Aedes albopictus</i></a></li></ol></li></ul></li><li id="menu-3164-1" class="middle even sf-item-2 sf-depth-2 menuparent"><a href="taxonomy/anopheles.html" title="" class="sf-depth-2 menuparent"><table class="menuarrow"><tr><td class="menuarrowtext"><i>Anopheles</i> </td><td class="menuarrowicon"><img class="menuarrow" src="sites/default/files/ftp/triang.png" alt="submenu arrow"></td></tr></table></a><ul class="sf-megamenu"><li class="sf-megamenu-wrapper middle even sf-item-2 sf-depth-2 menuparent"><ol><li id="menu-3156-1" class="first odd sf-item-1 sf-depth-3 sf-no-children"><a href="organisms/anopheles-albimanus.html" class="sf-depth-3"><i>Anopheles albimanus</i></a></li><li id="menu-3157-1" class="middle even sf-item-2 sf-depth-3 sf-no-children"><a href="organisms/anopheles-arabiensis.html" class="sf-depth-3"><i>Anopheles arabiensis</i></a></li><li id="menu-3342-1" class="middle odd sf-item-3 sf-depth-3 sf-no-children"><a href="organisms/anopheles-atroparvus.html" class="sf-depth-3"><i>Anopheles atroparvus</i></a></li><li id="menu-3158-1" class="middle even sf-item-4 sf-depth-3 sf-no-children"><a href="organisms/anopheles-christyi.html" title="" class="sf-depth-3"><i>Anopheles christyi</i></a></li><li id="menu-3687-1" class="middle odd sf-item-5 sf-depth-3 sf-no-children"><a href="organisms/anopheles-coluzzii.html" title="" class="sf-depth-3"><i>Anopheles coluzzii</i></a></li><li id="menu-3344-1" class="middle even sf-item-6 sf-depth-3 sf-no-children"><a href="organisms/anopheles-culicifacies.html" class="sf-depth-3"><i>Anopheles culicifacies</i></a></li><li id="menu-1781-1" class="middle odd sf-item-7 sf-depth-3 sf-no-children"><a href="organisms/anopheles-darlingi.html" title="" class="sf-depth-3"><i>Anopheles darlingi</i></a></li><li id="menu-3161-1" class="middle even sf-item-8 sf-depth-3 sf-no-children"><a href="organisms/anopheles-dirus.html" class="sf-depth-3"><i>Anopheles dirus</i></a></li><li id="menu-3159-1" class="middle odd sf-item-9 sf-depth-3 sf-no-children"><a href="organisms/anopheles-epiroticus.html" title="" class="sf-depth-3"><i>Anopheles epiroticus</i></a></li><li id="menu-3346-1" class="middle even sf-item-10 sf-depth-3 sf-no-children"><a href="organisms/anopheles-farauti.html" title="" class="sf-depth-3"><i>Anopheles farauti</i></a></li><li id="menu-3160-1" class="middle odd sf-item-11 sf-depth-3 sf-no-children"><a href="organisms/anopheles-funestus.html" class="sf-depth-3"><i>Anopheles funestus</i></a></li><li id="menu-776-1" class="middle even sf-item-12 sf-depth-3 sf-no-children"><a href="organisms/anopheles-gambiae.html" class="sf-depth-3"><i>Anopheles gambiae</i></a></li><li id="menu-3348-1" class="middle odd sf-item-13 sf-depth-3 sf-no-children"><a href="organisms/anopheles-maculatus.html" class="sf-depth-3"><i>Anopheles maculatus</i></a></li><li id="menu-3343-1" class="middle even sf-item-14 sf-depth-3 sf-no-children"><a href="organisms/anopheles-melas.html" class="sf-depth-3"><i>Anopheles melas</i></a></li><li id="menu-3345-1" class="middle odd sf-item-15 sf-depth-3 sf-no-children"><a href="organisms/anopheles-merus.html" class="sf-depth-3"><i>Anopheles merus</i></a></li><li id="menu-3163-1" class="middle even sf-item-16 sf-depth-3 sf-no-children"><a href="organisms/anopheles-minimus.html" class="sf-depth-3"><i>Anopheles minimus</i></a></li><li id="menu-3162-1" class="middle odd sf-item-17 sf-depth-3 sf-no-children"><a href="organisms/anopheles-quadriannulatus.html" class="sf-depth-3"><i>Anopheles quadriannulatus</i></a></li><li id="menu-3347-1" class="middle even sf-item-18 sf-depth-3 sf-no-children"><a href="organisms/anopheles-sinensis.html" class="sf-depth-3"><i>Anopheles sinensis</i></a></li><li id="menu-1780-1" class="last odd sf-item-19 sf-depth-3 sf-no-children"><a href="organisms/anopheles-stephensi.html" class="sf-depth-3"><i>Anopheles stephensi</i></a></li></ol></li></ul></li><li id="menu-2869-1" class="middle odd sf-item-3 sf-depth-2 sf-no-children"><a href="organisms/biomphalaria-glabrata.html" class="sf-depth-2"><i>Biomphalaria glabrata</i></a></li><li id="menu-7815-1" class="middle even sf-item-4 sf-depth-2 sf-no-children"><a href="organisms/cimex-lectularius.html" title="" class="sf-depth-2"><i>Cimex lectularius</i></a></li><li id="menu-974-1" class="middle odd sf-item-5 sf-depth-2 sf-no-children"><a href="organisms/culex-quinquefasciatus.html" title="" class="sf-depth-2"><i>Culex quinquefasciatus</i></a></li><li id="menu-4123-1" class="middle even sf-item-6 sf-depth-2 menuparent"><a href="taxonomy/glossina.html" title="" class="sf-depth-2 menuparent"><table class="menuarrow"><tr><td class="menuarrowtext"><i>Glossina</i> </td><td class="menuarrowicon"><img class="menuarrow" src="sites/default/files/ftp/triang.png" alt="submenu arrow"></td></tr></table></a><ul class="sf-megamenu"><li class="sf-megamenu-wrapper middle even sf-item-6 sf-depth-2 menuparent"><ol><li id="menu-4124-1" class="first odd sf-item-1 sf-depth-3 sf-no-children"><a href="organisms/glossina-austeni.html" title="Vector of Animal African Trypanosomiasis" class="sf-depth-3"><i>Glossina austeni</i></a></li><li id="menu-4125-1" class="middle even sf-item-2 sf-depth-3 sf-no-children"><a href="organisms/glossina-brevipalpis.html" title="Ancestral vector of Animal African Trypanosomiasis (AAT)" class="sf-depth-3"><i>Glossina brevipalpis</i></a></li><li id="menu-4126-1" class="middle odd sf-item-3 sf-depth-3 sf-no-children"><a href="organisms/glossina-fuscipes.html" title="Vector of Trypanosoma brucei rhodesiense in East Africa" class="sf-depth-3"><i>Glossina fuscipes</i></a></li><li id="menu-993-1" class="middle even sf-item-4 sf-depth-3 sf-no-children"><a href="organisms/glossina-morsitans.html" title="Vector of Human African Trypanosomiasis (sleeping sickness)" class="sf-depth-3"><i>Glossina morsitans</i></a></li><li id="menu-4127-1" class="middle odd sf-item-5 sf-depth-3 sf-no-children"><a href="organisms/glossina-pallidipes.html" title="Major vector of Trypanosoma brucei brucei, Minor vector of Trypanosoma brucei rhodesiense" class="sf-depth-3"><i>Glossina pallidipes</i></a></li><li id="menu-5190-1" class="last even sf-item-6 sf-depth-3 sf-no-children"><a href="organisms/glossina-palpalis.html" title="" class="sf-depth-3"><i>Glossina palpalis</i></a></li></ol></li></ul></li><li id="menu-971-1" class="middle odd sf-item-7 sf-depth-2 sf-no-children"><a href="organisms/ixodes-scapularis.html" title="" class="sf-depth-2"><i>Ixodes scapularis</i></a></li><li id="menu-15064-1" class="middle even sf-item-8 sf-depth-2 sf-no-children"><a href="organisms/leptotrombidium-deliense.html" title="" class="sf-depth-2"><i>Leptotrombidium deliense</i></a></li><li id="menu-2867-1" class="middle odd sf-item-9 sf-depth-2 sf-no-children"><a href="organisms/lutzomyia-longipalpis.html" title="" class="sf-depth-2"><i>Lutzomyia longipalpis</i></a></li><li id="menu-3850-1" class="middle even sf-item-10 sf-depth-2 sf-no-children"><a href="organisms/musca-domestica.html" title="Musca domestica" class="sf-depth-2"><i>Musca domestica</i></a></li><li id="menu-975-1" class="middle odd sf-item-11 sf-depth-2 sf-no-children"><a href="organisms/pediculus-humanus.html" title="" class="sf-depth-2"><i>Pediculus humanus</i></a></li><li id="menu-2868-1" class="middle even sf-item-12 sf-depth-2 sf-no-children"><a href="organisms/phlebotomus-papatasi.html" title="" class="sf-depth-2"><i>Phlebotomus papatasi</i></a></li><li id="menu-976-1" class="middle odd sf-item-13 sf-depth-2 sf-no-children"><a href="organisms/rhodnius-prolixus.html" title="" class="sf-depth-2"><i>Rhodnius prolixus</i></a></li><li id="menu-6654-1" class="middle even sf-item-14 sf-depth-2 sf-no-children"><a href="organisms/sarcoptes-scabiei-var-canis.html" class="sf-depth-2"><i>Sarcoptes scabiei</i> var. <i>canis</i></a></li><li id="menu-6138-1" class="middle odd sf-item-15 sf-depth-2 sf-no-children"><a href="organisms/stomoxys-calcitrans.html" title="Stomoxys calcitrans" class="sf-depth-2"><i>Stomoxys calcitrans</i></a></li><li id="menu-1786-1" class="last even sf-item-16 sf-depth-2 sf-no-children"><a href="organisms.html" title="" class="sf-depth-2">All organisms...</a></li></ul></li><li id="menu-988-1" class="middle even sf-item-4 sf-depth-1 menuparent"><a href="navigation/downloads.html" title="Download VectorBase data" class="sf-depth-1 menuparent">Downloads</a><ul><li id="menu-1775-1" class="first odd sf-item-1 sf-depth-2 sf-no-children"><a href="downloads.html" title="Raw data files stored by VectorBase." class="sf-depth-2">Data files</a></li><li id="menu-1336-1" class="middle even sf-item-2 sf-depth-2 sf-no-children"><a href="content/software-downloads.html" title="Open source software from VectorBase developers" class="sf-depth-2">Software</a></li><li id="menu-1397-1" class="middle odd sf-item-3 sf-depth-2 sf-no-children"><a href="image-gallery.html" title="" class="sf-depth-2">Images</a></li><li id="menu-1787-1" class="last even sf-item-4 sf-depth-2 sf-no-children"><a href="downloadsee7a.html" title="" class="sf-depth-2">Ontologies</a></li></ul></li><li id="menu-1002-1" class="middle odd sf-item-5 sf-depth-1 menuparent"><a href="navigation/tools.html" title="" class="sf-depth-1 menuparent">Tools</a><ul><li id="menu-1004-1" class="first odd sf-item-1 sf-depth-2 sf-no-children"><a href="blast.html" title="Sequence similarity searching" class="sf-depth-2">BLAST</a></li><li id="menu-1009-1" class="middle even sf-item-2 sf-depth-2 sf-no-children"><a href="clustalw.html" title="Align two or more sequences" class="sf-depth-2">ClustalW</a></li><li id="menu-1010-1" class="middle odd sf-item-3 sf-depth-2 sf-no-children"><a href="hmmer.html" title="Sensitive profile-based sequence search" class="sf-depth-2">HMMER</a></li><li id="menu-1008-1" class="last even sf-item-4 sf-depth-2 sf-no-children"><a href="ontology-browser.html" title="" class="sf-depth-2">Ontology Browser</a></li></ul></li><li id="menu-973-1" class="active-trail middle even sf-item-6 sf-depth-1 menuparent"><a href="navigation/data.html" title="" class="sf-depth-1 menuparent">Data</a><ul><li id="menu-3166-1" class="active-trail first odd sf-item-1 sf-depth-2 sf-no-children"><a href="genomes.html" class="sf-depth-2 active">Genomes</a></li><li id="menu-2270-1" class="middle even sf-item-2 sf-depth-2 sf-no-children"><a href="transcriptomes.html" class="sf-depth-2">Transcriptomes</a></li><li id="menu-9464-1" class="middle odd sf-item-3 sf-depth-2 sf-no-children"><a href="proteomes.html" class="sf-depth-2">Proteomes</a></li><li id="menu-1461-1" class="middle even sf-item-4 sf-depth-2 sf-no-children"><a href="mitochondrial-genomes.html" class="sf-depth-2">Mitochondrial sequences</a></li><li id="menu-4324-1" class="last odd sf-item-5 sf-depth-2 sf-no-children"><a href="releases.html" class="sf-depth-2">Release notes</a></li></ul></li><li id="menu-1001-1" class="middle odd sf-item-7 sf-depth-1 menuparent"><a href="navigation/help.html" title="" class="sf-depth-1 menuparent">Help</a><ul><li id="menu-970-1" class="first odd sf-item-1 sf-depth-2 sf-no-children"><a href="faqs.html" title="Frequently asked questions (with answers)" class="sf-depth-2">FAQs</a></li><li id="menu-4033-1" class="middle even sf-item-2 sf-depth-2 sf-no-children"><a href="tutorials.html" class="sf-depth-2">Tutorials</a></li><li id="menu-1631-1" class="middle odd sf-item-3 sf-depth-2 sf-no-children"><a href="glossary.html" class="sf-depth-2">Glossary</a></li><li id="menu-1334-1" class="middle even sf-item-4 sf-depth-2 sf-no-children"><a href="faqs/how-cite-vectorbase.html" title="" class="sf-depth-2">How to cite VectorBase</a></li><li id="menu-1616-1" class="middle odd sf-item-5 sf-depth-2 sf-no-children"><a href="data-policies.html" class="sf-depth-2">Data access and Submission policies</a></li><li id="menu-3845-1" class="last even sf-item-6 sf-depth-2 sf-no-children"><a href="solr-information.html" title="Description of indexed solr fields" class="sf-depth-2">SOLR Fields</a></li></ul></li><li id="menu-1013-1" class="middle even sf-item-8 sf-depth-1 menuparent"><a href="navigation/community.html" title="" class="sf-depth-1 menuparent">Community</a><ul><li id="menu-1777-1" class="first odd sf-item-1 sf-depth-2"><a href="content/submit-data.html" class="sf-depth-2">Submit Data</a><ul class="sf-megamenu"><li class="sf-megamenu-wrapper first odd sf-item-1 sf-depth-2"></li></ul></li><li id="menu-1016-1" class="middle even sf-item-2 sf-depth-2 sf-no-children"><a href="mailing-lists.html" title="" class="sf-depth-2">Mailing lists</a></li><li id="menu-1608-1" class="middle odd sf-item-3 sf-depth-2 sf-no-children"><a href="publications.html" class="sf-depth-2">Publications</a></li><li id="menu-10744-1" class="middle even sf-item-4 sf-depth-2 sf-no-children"><a href="workshops.html" class="sf-depth-2">Workshops/Meetings</a></li><li id="menu-12943-1" class="middle odd sf-item-5 sf-depth-2 sf-no-children"><a href="jobpostings.html" class="sf-depth-2">Job postings</a></li><li id="menu-4034-1" class="middle even sf-item-6 sf-depth-2 sf-no-children"><a href="news.html" class="sf-depth-2">News</a></li><li id="menu-4035-1" class="middle odd sf-item-7 sf-depth-2 sf-no-children"><a href="newsletters.html" class="sf-depth-2">Newsletters</a></li><li id="menu-2269-1" class="middle even sf-item-8 sf-depth-2 sf-no-children"><a href="useful-links.html" title="" class="sf-depth-2">Useful links</a></li><li id="menu-1014-1" class="middle odd sf-item-9 sf-depth-2 sf-no-children"><a href="http://www.facebook.com/pages/VectorBase/189608142260" title="" class="sf-depth-2"><table class="menuarrow"><tr><td class="menuarrowtext">Facebook </td><td class="menuarrowicon"><img src="sites/default/files/ftp/fb24.png" alt="link icon"></td></tr></table></a></li><li id="menu-1015-1" class="last even sf-item-10 sf-depth-2 sf-no-children"><a href="http://twitter.com/VectorBase" title="" class="sf-depth-2"><table class="menuarrow"><tr><td class="menuarrowtext">Twitter </td><td class="menuarrowicon"><img src="sites/default/files/ftp/tw24.png" alt="link icon"></td></tr></table></a></li></ul></li><li id="menu-994-1" class="last odd sf-item-9 sf-depth-1 sf-no-children"><a href="contact.html" title="Send us comments, suggestions, or questions" class="sf-depth-1">Contact Us</a></li></ul> </div>
</div><!-- /inner-inner -->
</div><!-- /inner-wrapper -->
</div><!-- /block-inner -->
</div><!-- /block --> </div><!-- /main-menu-inner -->
</div><!-- /main-menu -->
</div><!-- /main-menu-wrapper -->
</div><!-- /header-group -->
</div><!-- /header-group-wrapper -->
<div id="preface-top-outer"> </div>
<!-- main region: width = grid_width -->
<div id="main-wrapper" class="main-wrapper full-width clearfix">
<div id="main" class="main region grid16-16">
<div id="main-inner" class="main-inner inner clearfix">
<!-- sidebar-first region -->
<div id="sidebar-first" class="region region-sidebar-first sidebar-first nested grid16-4 sidebar">
<div id="sidebar-first-inner" class="sidebar-first-inner inner">
<div id="block-views-d60d189e188bf482cd4bfc341e3ae6ad" class="block block-views first last odd">
<div class="inner clearfix gutter">
<div class="inner-wrapper">
<div class="inner-inner">
<div class="content clearfix">
<div class="view view-basic-page-type-verticle-grey-text view-id-basic_page_type_verticle_grey_text view-display-id-block view-dom-id-26a74979e2373a9ef81db17b40ae0bb8">
<div class="view-content">
<div class="views-row views-row-1 views-row-odd views-row-first views-row-last">
<div class="views-field views-field-field-page-type"> <div class="field-content rotate-90">Genomes</div> </div> </div>
</div>
</div> </div>
</div><!-- /inner-inner -->
</div><!-- /inner-wrapper -->
</div><!-- /block-inner -->
</div><!-- /block --> </div><!-- /sidebar-first-inner -->
</div><!-- /sidebar-first -->
<!-- main group: width = grid_width - sidebar_first_width -->
<div id="main-group" class="main-group region nested grid16-12">
<div id="main-group-inner" class="main-group-inner inner">
<div id="main-content" class="main-content region nested">
<div id="main-content-inner" class="main-content-inner inner">
<!-- content group: width = grid_width - sidebar_first_width - sidebar_second_width -->
<div id="content-group" class="content-group region nested grid16-12">
<div id="content-group-inner" style="background-color:white;" class="content-group-inner inner">
<div id="breadcrumbs" class="breadcrumbs block">
<div id="breadcrumbs-inner" class="breadcrumbs-inner gutter">
<a href="index.html">Home</a> » <a href="navigation/data.html" title="">Data</a> » Genomes
</div><!-- /breadcrumbs-inner -->
</div><!-- /breadcrumbs -->
<div id="content-region" class="content-region region nested">
<div id="content-region-inner" class="content-region-inner inner">
<a name="main-content-area" id="main-content-area"></a>
<!--DKDK highlighted -->
<h1 class="title gutter">Genomes </h1>
<!-- content region -->
<div id="content" class="region region-content content nested grid16-12">
<div id="content-inner" class="content-inner inner">
<div id="block-system-main" class="block block-system first odd">
<div class="inner clearfix gutter">
<div class="inner-wrapper">
<div class="inner-inner">
<div class="content clearfix">
<div class="ds-1col node node-page odd full-node view-mode-full clearfix">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"> <p>VectorBase is committed to a new release every two months with all data freely available for public use based on NIH/NIAID policy. A list of these changes and the state of current versions on this date (e.g., current gene sets) can be found on the <a href="releases.html">Releases</a> section of VectorBase.</p>
<p>For your species of interest, click on Organism, Strain, <a href="glossary.html#Assembly" title="When the genome or transcriptome of a species is sequenced, typically many short random fragments are sequenced and reassembled by a computer algorithm into longer contiguous sequences called contigs. Genomic contigs may be assembled into longer sequences called scaffolds and sometimes, if the depth of sequencing is high enough, there may be enough information to assemble most of the scaffolds into chromosomes." class="lexicon-term">Assembly</a>, or <a href="glossary.html#Gene_set" title="The set of predicted genes which represent the reference for an assembly. Gene sets contain both protein-coding and ncRNA loci. " class="lexicon-term">Gene set</a> to find the Genome Browser link (which looks like this: <img style="height:20px;vertical-align:middle;" src="sites/default/files/ftp/images/browse_genome.png" /> ).</p>
<p></p><div class="view view-genomes view-id-genomes view-display-id-released_block organism-summaries view-dom-id-c630b1b4ce0574cfe47bee1c5d311d28">
<div class="view-header">
<h3 style="text-align:center;">Released genomes, with gene predictions</h3>
</div>
<div class="view-content">
<table class="views-table cols-8"><thead><tr><th class="views-field views-field-title-2 active" scope="col">
<a href="genomes0e50.html?order=title_2&sort=desc" title="sort by Organism" class="active">Organism<img typeof="foaf:Image" src="https://legacy.vectorbase.org/misc/arrow-desc.png" width="13" height="13" alt="sort descending" title="sort descending" /></a> </th>
<th class="views-field views-field-field-strain" scope="col">
Strain </th>
<th class="views-field views-field-title" scope="col">
Assembly </th>
<th class="views-field views-field-title-1" scope="col">
Gene set </th>
<th class="views-field views-field-field-gene-count" scope="col">
<a href="genomes58ee.html?order=field_gene_count&sort=asc" title="sort by Gene Count" class="active">Gene Count</a> </th>
<th class="views-field views-field-field-genbank-wgs-project" scope="col">
<a href="glossary.html#GenBank_WGS" title="GenBank accession for a Whole Genome Shotgun (WGS) project. This is the master accession which should link to both contigs and scaffold data for the species. If an assembly is changed the WGS accession will be modified. It is possible that the assembly improvement involves re-scaffolding and the underlying contig sequences can be unchanged." class="lexicon-term">GenBank WGS</a> Project </th>
<th class="views-field views-field-field-genbank-assembly-id" scope="col">
GenBank Assembly ID </th>
<th class="views-field views-field-field-genome-size" scope="col">
<a href="genomesad1e.html?order=field_genome_size&sort=asc" title="sort by Genome Size (bp)" class="active">Genome Size (bp)</a> </th>
</tr></thead><tbody><tr class="odd views-row-first"><td class="views-field views-field-title-2 active">
<em><a href="organisms/aedes-aegypti.html">Aedes aegypti</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/aedes-aegypti/lvp_agwg.html">Liverpool AGWG </a> </td>
<td class="views-field views-field-title">
<a href="organisms/aedes-aegypti/lvp_agwg/aaegl5.html">AaegL5</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/lvpagwg/aaegl52.html">AaegL5.2</a> </td>
<td class="views-field views-field-field-gene-count">
19 763 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="https://www.ncbi.nlm.nih.gov/nuccore/NIGP00000000.1/">NIGP01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="https://www.ncbi.nlm.nih.gov/assembly/GCF_002204515.2">GCA_002204515.1 </a> </td>
<td class="views-field views-field-field-genome-size">
1 278 731 969 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/aedes-albopictus.html">Aedes albopictus</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/aedes-albopictus/foshan.html">Foshan</a> </td>
<td class="views-field views-field-title">
<a href="organisms/aedes-albopictus/foshan/aalof1.html">AaloF1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/aedes-albopictus/foshan/aalof12.html">AaloF1.2</a> </td>
<td class="views-field views-field-field-gene-count">
18 294 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/JXUM00000000.1/">JXUM01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_001444175.1/">GCA_001444175.1</a> </td>
<td class="views-field views-field-field-genome-size">
1 923 476 627 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-albimanus.html">Anopheles albimanus</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-albimanus/stecla.html">STECLA</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-albimanus/stecla/aalbs2.html">AalbS2</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-albimanus/stecla/aalbs26.html">AalbS2.6</a> </td>
<td class="views-field views-field-field-gene-count">
12 504 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="https://www.ncbi.nlm.nih.gov/nuccore/APCK00000000.1/">APCK01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="https://www.ncbi.nlm.nih.gov/assembly/1163571/">GCA_000349125.2</a> </td>
<td class="views-field views-field-field-genome-size">
173 339 240 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-arabiensis.html">Anopheles arabiensis</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-arabiensis/dongola.html">Dongola</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-arabiensis/dongola/aarad1.html">AaraD1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/dongola/aarad111.html">AaraD1.11</a> </td>
<td class="views-field views-field-field-gene-count">
13 685 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/APCN00000000.1/">APCN01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/genome/?term=GCA_000349185.1">GCA_000349185.1</a> </td>
<td class="views-field views-field-field-genome-size">
246 567 867 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-atroparvus.html">Anopheles atroparvus</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-atroparvus/ebro.html">EBRO</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-atroparvus/ebro/aatre3.html">AatrE3</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-atroparvus/ebro/aatre31.html">AatrE3.1</a> </td>
<td class="views-field views-field-field-gene-count">
14 078 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/AXCP00000000.1">AXCP01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/genome/?term=GCA_000473505.1">GCA_000473505.1</a> </td>
<td class="views-field views-field-field-genome-size">
224 290 125 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-christyi.html">Anopheles christyi</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-christyi/achkn1017.html">ACHKN1017</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-christyi/achkn1017/achra1.html">AchrA1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-christyi/achkn1017/achra17.html">AchrA1.7</a> </td>
<td class="views-field views-field-field-gene-count">
11 185 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore?term=APCM00000000">APCM01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000349165.1">GCA_000349165.1</a> </td>
<td class="views-field views-field-field-genome-size">
172 658 580 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-coluzzii.html">Anopheles coluzzii</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-coluzzii/ngousso.html">Ngousso</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-coluzzii/ngousso/acoln1.html">AcolN1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/ngousso/acoln10.html">AcolN1.0</a> </td>
<td class="views-field views-field-field-gene-count">
13 299 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="https://www.ncbi.nlm.nih.gov/nuccore/RWKB00000000.1/">RWKB01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_004136515.2">GCA_004136515.2</a> </td>
<td class="views-field views-field-field-genome-size">
251 398 820 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-coluzzii.html">Anopheles coluzzii</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-coluzzii/mali-nih.html">Mali-NIH</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-coluzzii/mali-nih/acolm1.html">AcolM1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/mali-nih/acolm18.html">AcolM1.8</a> </td>
<td class="views-field views-field-field-gene-count">
14 796 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/ABKP00000000.2">ABKP02</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000150765.1/">GCA_000150765.1</a> </td>
<td class="views-field views-field-field-genome-size">
224 455 335 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-culicifacies.html">Anopheles culicifacies A </a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-culicifacies/37.html">A-37</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-culicifacies/37/acula1.html">AculA1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-culicifacies/37/acula16.html">AculA1.6</a> </td>
<td class="views-field views-field-field-gene-count">
14 727 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/AXCM00000000.1">AXCM01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/genome/?term=GCA_000473375.1">GCA_000473375.1</a> </td>
<td class="views-field views-field-field-genome-size">
202 998 806 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-darlingi.html">Anopheles darlingi</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-darlingi/coari.html">Coari</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-darlingi/coari/adarc3.html">AdarC3</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-darlingi/coari/adarc38.html">AdarC3.8</a> </td>
<td class="views-field views-field-field-gene-count">
11 002 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/ADMH00000000.2">ADMH02</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000211455.3">GCA_000211455.3</a> </td>
<td class="views-field views-field-field-genome-size">
136 935 538 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-dirus.html">Anopheles dirus</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-dirus/wrair2.html">WRAIR2</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-dirus/wrair2/adirw1.html">AdirW1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-dirus/wrair2/adirw18.html">AdirW1.8</a> </td>
<td class="views-field views-field-field-gene-count">
13 251 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/APCL00000000.1/">APCL01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/genome/?term=GCA_000349145.1">GCA_000349145.1</a> </td>
<td class="views-field views-field-field-genome-size">
216 307 690 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-epiroticus.html">Anopheles epiroticus</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-epiroticus/epiroticus2.html">Epiroticus2</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-epiroticus/epiroticus2/aepie1.html">AepiE1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-epiroticus/epiroticus2/aepie17.html">AepiE1.7</a> </td>
<td class="views-field views-field-field-gene-count">
12 286 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/APCJ00000000.1/">APCJ01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/genome/?term=GCA_000349105.1">GCA_000349105.1</a> </td>
<td class="views-field views-field-field-genome-size">
223 486 714 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-farauti.html">Anopheles farauti</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-farauti/far1.html">FAR1</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-farauti/far1/afarf2.html">AfarF2</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/far1/afarf26.html">AfarF2.6</a> </td>
<td class="views-field views-field-field-gene-count">
13 300 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/AXCN00000000">AXCN02</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000473445.2">GCA_000473445.2</a> </td>
<td class="views-field views-field-field-genome-size">
183 103 254 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-funestus.html">Anopheles funestus</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-funestus/fumoz.html">FUMOZ</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-funestus/fumoz/afunf3.html">AfunF3</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/fumoz/afunf31.html">AfunF3.1</a> </td>
<td class="views-field views-field-field-gene-count">
14 176 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="https://www.ncbi.nlm.nih.gov/nuccore/RCWQ01000000">RCWQ01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/genome/?term=GCA_003951495.1">GCA_003951495.1</a> </td>
<td class="views-field views-field-field-genome-size">
444 543 995 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-gambiae.html">Anopheles gambiae</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-gambiae/pest.html">PEST</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-gambiae/pest/agamp4.html">AgamP4</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/pest/agamp412.html">AgamP4.12</a> </td>
<td class="views-field views-field-field-gene-count">
13 796 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/AAAB00000000.1">AAAB01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCF_000005575.2/">GCA_000005575.2</a> </td>
<td class="views-field views-field-field-genome-size">
273 109 044 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-maculatus.html">Anopheles maculatus</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-maculatus-b/maculatus3.html">maculatus3</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-maculatus-b/maculatus3/amacm1.html">AmacM1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-maculatus/maculatus3/amacm15.html">AmacM1.5</a> </td>
<td class="views-field views-field-field-gene-count">
15 018 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/AXCL00000000.1">AXCL01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000473185.1">GCA_000473185.1</a> </td>
<td class="views-field views-field-field-genome-size">
141 894 015 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-melas.html">Anopheles melas</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-melas/cm1001059_a.html">CM1001059_A</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-melas/cm1001059_a/amelc2.html">AmelC2</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-melas/cm1001059/amelc26.html">AmelC2.6</a> </td>
<td class="views-field views-field-field-gene-count">
15 765 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/AXCO00000000.2">AXCO02</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000473525.2">GCA_000473525.2 </a> </td>
<td class="views-field views-field-field-genome-size">
224 162 116 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-merus.html">Anopheles merus</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-merus/maf.html">MAF</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-merus/maf/amerm2.html">AmerM2</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/maf/amerm29.html">AmerM2.9</a> </td>
<td class="views-field views-field-field-gene-count">
13 605 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/AXCQ00000000.2">AXCQ02</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000473845.2">GCA_000473845.2</a> </td>
<td class="views-field views-field-field-genome-size">
288 048 996 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-minimus.html">Anopheles minimus</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-minimus/minimus1.html">MINIMUS1</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-minimus/minimus1/aminm1.html">AminM1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-minimus/minimus1/aminm18.html">AminM1.8</a> </td>
<td class="views-field views-field-field-gene-count">
13 127 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/APHL00000000.1/">APHL01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/genome/?term=GCA_000349025.1">GCA_000349025.1</a> </td>
<td class="views-field views-field-field-genome-size">
201 793 324 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-quadriannulatus.html">Anopheles quadriannulatus</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-quadriannulatus/sangwe.html">SANGWE</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-quadriannulatus/sangwe/aquas1.html">AquaS1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/sangwe/aquas111.html">AquaS1.11</a> </td>
<td class="views-field views-field-field-gene-count">
13 934 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/APCH00000000.1/">APCH01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/genome/?term=GCA_000349065.1">GCA_000349065.1</a> </td>
<td class="views-field views-field-field-genome-size">
283 828 998 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-sinensis.html">Anopheles sinensis</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-sinensis/china.html">China</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-sinensis/china/asinc2.html">AsinC2</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-sinensis/china/asinc22.html">AsinC2.2</a> </td>
<td class="views-field views-field-field-gene-count">
19 694 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/ATLV00000000.1/">ATLV01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000441895.2">GCA_000441895.2</a> </td>
<td class="views-field views-field-field-genome-size">
220 777 669 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-sinensis.html">Anopheles sinensis</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-sinensis/sinensis.html">SINENSIS</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-sinensis/sinensis/asins2.html">AsinS2</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-sinensis/sinensis/asins25.html">AsinS2.5</a> </td>
<td class="views-field views-field-field-gene-count">
13 204 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/AXCK00000000.2">AXCK02</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000472065.2/">GCA_000472065.2</a> </td>
<td class="views-field views-field-field-genome-size">
375 763 635 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-stephensi.html">Anopheles stephensi</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-stephensi/sda-500.html">SDA-500</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-stephensi/sda-500/astes1.html">AsteS1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-stephensi/sda-500/astes17.html">AsteS1.7</a> </td>
<td class="views-field views-field-field-gene-count">
13 615 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/APCG00000000.1/">APCG01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000349045.1">GCA_000349045.1</a> </td>
<td class="views-field views-field-field-genome-size">
225 369 006 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/anopheles-stephensi.html">Anopheles stephensi</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/anopheles-stephensi/indian.html">Indian</a> </td>
<td class="views-field views-field-title">
<a href="organisms/anopheles-stephensi/indian/astei2.html">AsteI2</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/anopheles-stephensi/indian/astei23.html">AsteI2.3</a> </td>
<td class="views-field views-field-field-gene-count">
12 189 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/ALPR00000000.2">ALPR02</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000300775.2">GCA_000300775.2</a> </td>
<td class="views-field views-field-field-genome-size">
221 324 304 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/biomphalaria-glabrata.html">Biomphalaria glabrata</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/biomphalaria-glabrata/bb02.html">BB02</a> </td>
<td class="views-field views-field-title">
<a href="organisms/biomphalaria-glabrata/bb02/bglab1.html">BglaB1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/biomphalaria-glabrata/bb02/bglab16.html">BglaB1.6</a> </td>
<td class="views-field views-field-field-gene-count">
31 985 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/APKA00000000.1/">APKA01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000457365.1/">GCA_000457365.1</a> </td>
<td class="views-field views-field-field-genome-size">
916 374 414 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/cimex-lectularius.html">Cimex lectularius</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/cimex-lectularius/harlan.html">Harlan</a> </td>
<td class="views-field views-field-title">
<a href="organisms/cimex-lectularius/harlan/clech1.html">ClecH1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/cimex-lectularius/harlan/clech13.html">ClecH1.3</a> </td>
<td class="views-field views-field-field-gene-count">
15 292 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/Traces/wgs/?val=JHUN01">JHUN01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000648675.1">GCA_000648675.1</a> </td>
<td class="views-field views-field-field-genome-size">
650 477 627 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/culex-quinquefasciatus.html">Culex quinquefasciatus</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/culex-quinquefasciatus/johannesburg.html">Johannesburg</a> </td>
<td class="views-field views-field-title">
<a href="organisms/culex-quinquefasciatus/johannesburg/cpipj2.html">CpipJ2</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/culex-quinquefasciatus/johannesburg/cpipj24.html">CpipJ2.4</a> </td>
<td class="views-field views-field-field-gene-count">
19 793 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/AAWU00000000.1">AAWU01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCF_000209185.1/">GCA_000209185.1</a> </td>
<td class="views-field views-field-field-genome-size">
579 057 705 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/glossina-austeni.html">Glossina austeni</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/glossina-austeni/ttri.html">TTRI</a> </td>
<td class="views-field views-field-title">
<a href="organisms/glossina-austeni/ttri/gaust1.html">GausT1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/glossina-austeni/ttri/gaust17.html">GausT1.7</a> </td>
<td class="views-field views-field-field-gene-count">
20 099 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/JMRR00000000.1/">JMRR01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000688735.1">GCA_000688735.1</a> </td>
<td class="views-field views-field-field-genome-size">
370 264 922 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/glossina-brevipalpis.html">Glossina brevipalpis</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/glossina-brevipalpis/iaea.html">IAEA</a> </td>
<td class="views-field views-field-title">
<a href="organisms/glossina-brevipalpis/iaea/gbrei.html">GbreI1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/glossina-brevipalpis/iaea/gbrei17.html">GbreI1.7</a> </td>
<td class="views-field views-field-field-gene-count">
14 991 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/JFJS00000000.1/">JFJS01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000671755.1">GCA_000671755.1</a> </td>
<td class="views-field views-field-field-genome-size">
315 360 362 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/glossina-fuscipes.html">Glossina fuscipes</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/glossina-fuscipes/iaea.html">IAEA</a> </td>
<td class="views-field views-field-title">
<a href="organisms/glossina-fuscipes/iaea/gfusi1.html">GfusI1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/glossina-fuscipes/iaea/gfusi17.html">GfusI1.7</a> </td>
<td class="views-field views-field-field-gene-count">
20 502 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/JFJR00000000.1/">JFJR01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000671735.1">GCA_000671735.1</a> </td>
<td class="views-field views-field-field-genome-size">
374 774 708 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/glossina-morsitans.html">Glossina morsitans</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/glossina-morsitans/yale.html">Yale</a> </td>
<td class="views-field views-field-title">
<a href="organisms/glossina-morsitans/yale/gmory1.html">GmorY1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/glossina-morsitans/yale/gmory19.html">GmorY1.9</a> </td>
<td class="views-field views-field-field-gene-count">
12 869 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/CCAG000000000.1/">CCAG01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_001077435.1">GCA_001077435.1</a> </td>
<td class="views-field views-field-field-genome-size">
366 195 856 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/glossina-pallidipes.html">Glossina pallidipes</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/glossina-pallidipes/iaea.html">IAEA</a> </td>
<td class="views-field views-field-title">
<a href="organisms/glossina-pallidipes/iaea/gpali1.html">GpalI1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/glossina-pallidipes/iaea/gpali17.html">GpalI1.7</a> </td>
<td class="views-field views-field-field-gene-count">
19 639 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/JMRQ00000000.1/">JMRQ01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000688715.1">GCA_000688715.1</a> </td>
<td class="views-field views-field-field-genome-size">
357 332 231 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/glossina-palpalis.html">Glossina palpalis</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/glossina-palpalis/iaea.html">IAEA</a> </td>
<td class="views-field views-field-title">
<a href="organisms/glossina-palpalis/iaea/gpapi1.html">GpapI1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/glossina-palpalis/iaea/gpapi14.html">GpapI1.4</a> </td>
<td class="views-field views-field-field-gene-count">
20 536 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/JXJN00000000.1/">JXJN01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000818775.1/">GCA_000818775.1</a> </td>
<td class="views-field views-field-field-genome-size">
380 104 241 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/ixodes-scapularis.html">Ixodes scapularis</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/ixodes-scapularis/wikel.html">Wikel</a> </td>
<td class="views-field views-field-title">
<a href="organisms/ixodes-scapularis/wikel/iscaw1.html">IscaW1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/ixodes-scapularis/wikel/iscaw16.html">IscaW1.6</a> </td>
<td class="views-field views-field-field-gene-count">
23 340 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/ABJB000000000.1">ABJB01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000208615.1/">GCA_000208615.1</a> </td>
<td class="views-field views-field-field-genome-size">
1 765 382 190 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/ixodes-scapularis.html">Ixodes scapularis</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/ixodes-scapularis/ise6.html">ISE6</a> </td>
<td class="views-field views-field-title">
<a href="organisms/ixodes-scapularis/ise6/iscai1.html">ISE6</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/ise6/iscai10.html">IscaI1.0</a> </td>
<td class="views-field views-field-field-gene-count">
23 470 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="https://www.ncbi.nlm.nih.gov/nuccore/PKSA00000000.2/">PKSA02</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_002892825.2">GCA_002892825.2</a> </td>
<td class="views-field views-field-field-genome-size">
2 081 329 876 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/leptotrombidium-deliense.html">Leptotrombidium deliense</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/leptotrombidium-deliense/uol-ut.html">UoL-UT </a> </td>
<td class="views-field views-field-title">
<a href="organisms/leptotrombidium-deliense/uol-ut/ldelu1.html">LdelU1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/uol-ut/ldelu11.html">LdelU1.1</a> </td>
<td class="views-field views-field-field-gene-count">
15 015 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="https://www.ncbi.nlm.nih.gov/nuccore/NCKV00000000.1">NCKV01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="https://www.ncbi.nlm.nih.gov/assembly/GCA_003675905.1/">GCA_003675905.1</a> </td>
<td class="views-field views-field-field-genome-size">
117 319 042 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/lutzomyia-longipalpis.html">Lutzomyia longipalpis</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/lutzomyia-longipalpis/jacobina.html">Jacobina</a> </td>
<td class="views-field views-field-title">
<a href="organisms/lutzomyia-longipalpis/jacobina/llonj1.html">LlonJ1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/lutzomyia-longipalpis/jacobina/llonj15.html">LlonJ1.5</a> </td>
<td class="views-field views-field-field-gene-count">
10 760 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/AJWK00000000.1">AJWK01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000265325.1/">GCA_000265325.1</a> </td>
<td class="views-field views-field-field-genome-size">
154 229 266 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/musca-domestica.html">Musca domestica</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/musca-domestica/aabys.html">Aabys</a> </td>
<td class="views-field views-field-title">
<a href="organisms/musca-domestica/aabys/mdoma1.html">MdomA1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/musca-domestica/aabys/mdoma13.html">MdomA1.3</a> </td>
<td class="views-field views-field-field-gene-count">
16 135 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/AQPM00000000.1/">AQPM01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000371365.1/">GCA_000371365.1</a> </td>
<td class="views-field views-field-field-genome-size">
750 403 944 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/pediculus-humanus.html">Pediculus humanus</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/pediculus-humanus/usda.html">USDA</a> </td>
<td class="views-field views-field-title">
<a href="organisms/pediculus-humanus/usda/phumu2.html">PhumU2</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/pediculus-humanus/usda/phumu24.html">PhumU2.4</a> </td>
<td class="views-field views-field-field-gene-count">
11 712 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/AAZO00000000.1">AAZO01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCF_000006295.1/">GCA_000006295.1</a> </td>
<td class="views-field views-field-field-genome-size">
110 802 711 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/phlebotomus-papatasi.html">Phlebotomus papatasi</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/phlebotomus-papatasi/israel.html">Israel</a> </td>
<td class="views-field views-field-title">
<a href="organisms/phlebotomus-papatasi/israel/ppapi1.html">PpapI1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/phlebotomus-papatasi/israel/ppapi15.html">PpapI1.5</a> </td>
<td class="views-field views-field-field-gene-count">
11 821 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/AJVK00000000.1">AJVK01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000262795.1/">GCA_000262795.1</a> </td>
<td class="views-field views-field-field-genome-size">
347 840 937 </td>
</tr><tr class="odd"><td class="views-field views-field-title-2 active">
<em><a href="organisms/rhodnius-prolixus.html">Rhodnius prolixus</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/rhodnius-prolixus/cdc.html">CDC</a> </td>
<td class="views-field views-field-title">
<a href="organisms/rhodnius-prolixus/cdc/rproc3.html">RproC3</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/rhodnius-prolixus/cdc/rproc33.html">RproC3.3</a> </td>
<td class="views-field views-field-field-gene-count">
15 738 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/nuccore/ACPB00000000.3/">ACPB03</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000181055.3">GCA_000181055.3</a> </td>
<td class="views-field views-field-field-genome-size">
706 824 083 </td>
</tr><tr class="even"><td class="views-field views-field-title-2 active">
<em><a href="organisms/sarcoptes-scabiei-var-canis.html">Sarcoptes scabiei var. canis</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/sarcoptes-scabiei-var-canis/arlian.html">Arlian</a> </td>
<td class="views-field views-field-title">
<a href="organisms/sarcoptes-scabiei-var-canis/arlian/sscaa1.html">SscaA1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/sarcoptes-scabiei-var-canis/arlian/sscaa12.html">SscaA1.2</a> </td>
<td class="views-field views-field-field-gene-count">
10 797 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/Traces/wgs/?val=JXLN01">JXLN01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000828355.1/">GCA_000828355.1</a> </td>
<td class="views-field views-field-field-genome-size">
56 262 437 </td>
</tr><tr class="odd views-row-last"><td class="views-field views-field-title-2 active">
<em><a href="organisms/stomoxys-calcitrans.html">Stomoxys calcitrans</a></em> </td>
<td class="views-field views-field-field-strain">
<a href="organisms/stomoxys-calcitrans/usda.html">USDA</a> </td>
<td class="views-field views-field-title">
<a href="organisms/stomoxys-calcitrans/usda/scalu1.html">ScalU1</a> </td>
<td class="views-field views-field-title-1">
<a href="organisms/usda/scalu15.html">ScalU1.5</a> </td>
<td class="views-field views-field-field-gene-count">
16 950 </td>
<td class="views-field views-field-field-genbank-wgs-project">
<a href="http://www.ncbi.nlm.nih.gov/Traces/wgs/?val=LDNW01">LDNW01</a> </td>
<td class="views-field views-field-field-genbank-assembly-id">
<a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_001015335.1">GCA_001015335.1</a> </td>
<td class="views-field views-field-field-genome-size">
971 188 624 </td>
</tr></tbody></table></div>
</div>
<p></p><div class="view view-genomes view-id-genomes view-display-id-prereleased_block organism-summaries view-dom-id-a384af376cd6513802bdafd79499938d">
</div>
<!-- Uncomment this script block to convert genomes page into release-style html for copying to release notes prior to release --><!--
<script type="text/javascript"><p> (function ($) {<br />
$(document).ready(function () {</p>
<p> $(".view-id-genomes>.view-content>table").each( function() {<br />
$(this).removeClass('cols-8');<br />
$(this).addClass('cols-6');<br />
});</p>
<p> $(".view-id-genomes>.view-content>table>thead>tr").each( function() {<br />
$(this).children("th.views-field-title-2").each( function() {<br />
$(this)[0].innerHTML = $(this).children("a")[0].innerText;<br />
});</p>
<p> $(this).children("th.views-field-field-gene-count").each( function() {<br />
$(this)[0].innerHTML = $(this).children("a")[0].innerText;<br />
});</p>
<p> $(this).children("th:gt(4)").each(function() {<br />