-
Notifications
You must be signed in to change notification settings - Fork 8
/
24Jan2021_itol_subfamily_annotations.txt
18170 lines (18158 loc) · 541 KB
/
24Jan2021_itol_subfamily_annotations.txt
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
#This annotation file produces a coloured ring around ITOL trees which shows viral sub-family of nodes.
DATASET_COLORSTRIP
SEPARATOR TAB
DATASET_LABEL Viral Sub-family
COLOR #ff0000
COLOR_BRANCHES 0
LEGEND_TITLE Viral Sub-family
LEGEND_LABELS Aglimvirinae Arquatrovirinae Bastillevirinae Bclasvirinae Beijerinckvirinae Braunvirinae Brockvirinae Bullavirinae Chebruvirinae Colwellvirinae Corkvirinae Cvivirinae Dclasvirinae Dolichocephalovirinae Ermolyevavirinae Gokushovirinae Guernseyvirinae Jasinkavirinae Krylovirinae Langleyhallvirinae Markadamsvirinae Mccleskeyvirinae Mccorquodalevirinae Mclasvirinae Melnykvirinae Molineuxvirinae Nclasvirinae Nymbaxtervirinae Okabevirinae Ounavirinae Pclasvirinae Peduovirinae Picovirinae Rakietenvirinae Rogunavirinae Sepvirinae Slopekvirinae Spounavirinae Studiervirinae Tempevirinae Tevenvirinae Tunavirinae Twortvirinae Tybeckvirinae Unclassified Vequintavirinae
LEGEND_COLORS #89BBE1 #E20985 #5EA5CD #70DE90 #DB1336 #C46C19 #5252BF #B87483 #562123 #269034 #C87AF3 #3CDC0E #16BD55 #E893F8 #2C55D4 #B7A14E #46D765 #3B811A #43535A #CE33E3 #836B12 #F4F72A #02B6B3 #73E11C #AC60EE #3F2504 #B08A38 #6F4963 #3D79E6 #C6B2A8 #4669E7 #710F2A #BCAF34 #50CA12 #3B4BF3 #0CE30B #3A6AB6 #DFE420 #4551CF #6CBE39 #806AEC #28D937 #4FD2FC #65BF3B #D3D3D3 #D4EAE1
LEGEND_SHAPES 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2
STRIP_WIDTH 15
DATA
LR756511 #D3D3D3 Unclassified
LR756508 #D3D3D3 Unclassified
LR756504 #D3D3D3 Unclassified
LR756502 #D3D3D3 Unclassified
LR756500 #D3D3D3 Unclassified
LR745208 #D3D3D3 Unclassified
LR745206 #D3D3D3 Unclassified
MK250029 #D3D3D3 Unclassified
MK250028 #D3D3D3 Unclassified
MK250027 #D3D3D3 Unclassified
MK250026 #D3D3D3 Unclassified
MK250025 #D3D3D3 Unclassified
MK250024 #D3D3D3 Unclassified
MK250023 #D3D3D3 Unclassified
MK250022 #D3D3D3 Unclassified
MK250021 #D3D3D3 Unclassified
MK250020 #D3D3D3 Unclassified
MK250019 #D3D3D3 Unclassified
MK250018 #D3D3D3 Unclassified
MK250017 #D3D3D3 Unclassified
MK250016 #D3D3D3 Unclassified
MK250015 #D3D3D3 Unclassified
MW388003 #D3D3D3 Unclassified
MW388002 #D3D3D3 Unclassified
MW388001 #D3D3D3 Unclassified
MW366783 #D3D3D3 Unclassified
MW349129 #D3D3D3 Unclassified
MW349128 #D3D3D3 Unclassified
MW353177 #D3D3D3 Unclassified
MW353176 #D3D3D3 Unclassified
MW353175 #D3D3D3 Unclassified
MW448170 #D3D3D3 Unclassified
MW286268 #D3D3D3 Unclassified
MW286267 #D3D3D3 Unclassified
MW286266 #D3D3D3 Unclassified
MW384823 #D3D3D3 Unclassified
MW366843 #D3D3D3 Unclassified
MW354669 #D3D3D3 Unclassified
MW354668 #D3D3D3 Unclassified
MW344056 #D3D3D3 Unclassified
MW344055 #D3D3D3 Unclassified
MW417503 #D3D3D3 Unclassified
MW355480 #D3D3D3 Unclassified
MW355479 #D3D3D3 Unclassified
MW355478 #D3D3D3 Unclassified
MW355477 #D3D3D3 Unclassified
MW355476 #D3D3D3 Unclassified
MW355475 #D3D3D3 Unclassified
MW355474 #D3D3D3 Unclassified
MW355473 #D3D3D3 Unclassified
MW355472 #D3D3D3 Unclassified
MW355471 #D3D3D3 Unclassified
MW355470 #D3D3D3 Unclassified
MW355469 #D3D3D3 Unclassified
MW355468 #D3D3D3 Unclassified
MW355467 #D3D3D3 Unclassified
MW355466 #D3D3D3 Unclassified
MW355465 #D3D3D3 Unclassified
MW355464 #D3D3D3 Unclassified
MW355463 #D3D3D3 Unclassified
MW355462 #D3D3D3 Unclassified
MW355461 #D3D3D3 Unclassified
MW355460 #D3D3D3 Unclassified
MW355459 #D3D3D3 Unclassified
MW355458 #D3D3D3 Unclassified
MW355457 #D3D3D3 Unclassified
MW355456 #D3D3D3 Unclassified
MW355455 #D3D3D3 Unclassified
MW355454 #D3D3D3 Unclassified
MW355453 #D3D3D3 Unclassified
MW355452 #D3D3D3 Unclassified
MW355451 #D3D3D3 Unclassified
MW355450 #D3D3D3 Unclassified
MW355449 #D3D3D3 Unclassified
MW365953 #D3D3D3 Unclassified
MW365952 #D3D3D3 Unclassified
MW365951 #D3D3D3 Unclassified
MW365950 #D3D3D3 Unclassified
MW365949 #D3D3D3 Unclassified
MW365948 #D3D3D3 Unclassified
MW365947 #D3D3D3 Unclassified
MW365946 #D3D3D3 Unclassified
MW390886 #D3D3D3 Unclassified
MW419087 #D3D3D3 Unclassified
MW419086 #D3D3D3 Unclassified
MW419085 #D3D3D3 Unclassified
MW419084 #D3D3D3 Unclassified
MW394467 #D3D3D3 Unclassified
MW442830 #D3D3D3 Unclassified
MW442829 #D3D3D3 Unclassified
MW442828 #D3D3D3 Unclassified
MW442827 #D3D3D3 Unclassified
MW442826 #D3D3D3 Unclassified
MW442825 #D3D3D3 Unclassified
MW419775 #D3D3D3 Unclassified
MW387018 #D3D3D3 Unclassified
MW413353 #D3D3D3 Unclassified
MW388005 #D3D3D3 Unclassified
MW406974 #D3D3D3 Unclassified
MW363799 #D3D3D3 Unclassified
MW363798 #D3D3D3 Unclassified
MT745956 #D3D3D3 Unclassified
MT745955 #D3D3D3 Unclassified
MT745954 #D3D3D3 Unclassified
MW247147 #D3D3D3 Unclassified
MW247145 #D3D3D3 Unclassified
MW247144 #D3D3D3 Unclassified
MW247146 #D3D3D3 Unclassified
MW247143 #D3D3D3 Unclassified
MT966873 #D3D3D3 Unclassified
MT966872 #D3D3D3 Unclassified
MT782071 #806AEC Tevenvirinae
AP019417 #D3D3D3 Unclassified
MW388004 #D3D3D3 Unclassified
MW393850 #D3D3D3 Unclassified
MW448541 #D3D3D3 Unclassified
MW448540 #D3D3D3 Unclassified
MW448539 #D3D3D3 Unclassified
MW132714 #D3D3D3 Unclassified
MW132713 #D3D3D3 Unclassified
MW286157 #806AEC Tevenvirinae
MW286156 #3B4BF3 Rogunavirinae
MW366784 #D3D3D3 Unclassified
MW348917 #D3D3D3 Unclassified
MW331544 #D3D3D3 Unclassified
MW325771 #D3D3D3 Unclassified
MW291508 #D3D3D3 Unclassified
MW248466 #D3D3D3 Unclassified
MW239157 #D3D3D3 Unclassified
MW114771 #D3D3D3 Unclassified
MW023914 #D3D3D3 Unclassified
MT949699 #D3D3D3 Unclassified
MW406976 #43535A Krylovirinae
MW406975 #43535A Krylovirinae
MW423739 #D3D3D3 Unclassified
MW423738 #D3D3D3 Unclassified
MW423737 #D3D3D3 Unclassified
MW358931 #4551CF Studiervirinae
MW358930 #D3D3D3 Unclassified
MW358929 #D3D3D3 Unclassified
MW358928 #4551CF Studiervirinae
MW358927 #806AEC Tevenvirinae
MW296032 #D3D3D3 Unclassified
MT944117 #D3D3D3 Unclassified
MT740748 #4551CF Studiervirinae
MT380195 #D3D3D3 Unclassified
MT002874 #D3D3D3 Unclassified
MT899444 #D3D3D3 Unclassified
MT899443 #D3D3D3 Unclassified
MT135176 #D3D3D3 Unclassified
MN929097 #D3D3D3 Unclassified
MN917146 #D3D3D3 Unclassified
MN087708 #806AEC Tevenvirinae
MK610268 #4551CF Studiervirinae
MW272540 #806AEC Tevenvirinae
MW343794 #D3D3D3 Unclassified
MW239124 #806AEC Tevenvirinae
MW334946 #D3D3D3 Unclassified
MW296865 #836B12 Markadamsvirinae
MW009675 #D3D3D3 Unclassified
MW233709 #806AEC Tevenvirinae
MT975991 #D3D3D3 Unclassified
MT653137 #46D765 Guernseyvirinae
MT161459 #806AEC Tevenvirinae
NC_014459 #D3D3D3 Unclassified
NC_028803 #70DE90 Bclasvirinae
NC_028681 #70DE90 Bclasvirinae
NC_018838 #D3D3D3 Unclassified
NC_018834 #D3D3D3 Unclassified
NC_015584 #D3D3D3 Unclassified
NC_014461 #D3D3D3 Unclassified
NC_014458 #D3D3D3 Unclassified
NC_013694 #D3D3D3 Unclassified
NC_013650 #D3D3D3 Unclassified
NC_011057 #70DE90 Bclasvirinae
MK455770 #269034 Colwellvirinae
MW273926 #D3D3D3 Unclassified
MW273925 #D3D3D3 Unclassified
MW273924 #D3D3D3 Unclassified
MW273923 #D3D3D3 Unclassified
MW273922 #D3D3D3 Unclassified
MW273921 #D3D3D3 Unclassified
MW273920 #D3D3D3 Unclassified
MW269554 #D3D3D3 Unclassified
MW281503 #5EA5CD Bastillevirinae
MW302330 #D3D3D3 Unclassified
MW021758 #D3D3D3 Unclassified
MW021756 #806AEC Tevenvirinae
MW021748 #6CBE39 Tempevirinae
MW021768 #D3D3D3 Unclassified
MW021767 #D3D3D3 Unclassified
MW021766 #D3D3D3 Unclassified
MW021765 #D3D3D3 Unclassified
MW021764 #D3D3D3 Unclassified
MW021763 #D3D3D3 Unclassified
MW021762 #D3D3D3 Unclassified
MW021761 #D3D3D3 Unclassified
MW021760 #3CDC0E Cvivirinae
MW021759 #D3D3D3 Unclassified
MW021757 #3CDC0E Cvivirinae
MW021755 #D3D3D3 Unclassified
MW021754 #3CDC0E Cvivirinae
MW021753 #3CDC0E Cvivirinae
MW021752 #806AEC Tevenvirinae
MW021751 #806AEC Tevenvirinae
MW021750 #6CBE39 Tempevirinae
MW021749 #806AEC Tevenvirinae
MW001214 #DFE420 Spounavirinae
MT863731 #D3D3D3 Unclassified
MT863730 #D3D3D3 Unclassified
MT863729 #D3D3D3 Unclassified
MT863728 #D3D3D3 Unclassified
MT863727 #D3D3D3 Unclassified
MT863726 #D3D3D3 Unclassified
MT863725 #D3D3D3 Unclassified
MT863724 #D3D3D3 Unclassified
MT863723 #D3D3D3 Unclassified
MT863722 #D3D3D3 Unclassified
MT863721 #D3D3D3 Unclassified
MT863720 #D3D3D3 Unclassified
MT863719 #D3D3D3 Unclassified
MT863718 #D3D3D3 Unclassified
MT863717 #D3D3D3 Unclassified
MT863716 #D3D3D3 Unclassified
MT863715 #D3D3D3 Unclassified
MT863714 #D3D3D3 Unclassified
MW055915 #D3D3D3 Unclassified
MW055914 #D3D3D3 Unclassified
MW055913 #D3D3D3 Unclassified
MW055912 #D3D3D3 Unclassified
MW055911 #D3D3D3 Unclassified
MW055910 #D3D3D3 Unclassified
MW055909 #D3D3D3 Unclassified
MW055908 #D3D3D3 Unclassified
MW055907 #D3D3D3 Unclassified
MW055906 #70DE90 Bclasvirinae
MW055905 #D3D3D3 Unclassified
MW055904 #D3D3D3 Unclassified
MW055903 #D3D3D3 Unclassified
MW055902 #4669E7 Pclasvirinae
MW055901 #D3D3D3 Unclassified
NC_050154 #D3D3D3 Unclassified
NC_050153 #D3D3D3 Unclassified
NC_050152 #D3D3D3 Unclassified
NC_050151 #D3D3D3 Unclassified
NC_050150 #D3D3D3 Unclassified
NC_050149 #D3D3D3 Unclassified
NC_050148 #D3D3D3 Unclassified
NC_050147 #D3D3D3 Unclassified
NC_050146 #D3D3D3 Unclassified
NC_050145 #D3D3D3 Unclassified
NC_050144 #D3D3D3 Unclassified
NC_050143 #D3D3D3 Unclassified
NC_049977 #D3D3D3 Unclassified
NC_049976 #BCAF34 Picovirinae
NC_049975 #BCAF34 Picovirinae
NC_049974 #BCAF34 Picovirinae
NC_049973 #BCAF34 Picovirinae
NC_049972 #D3D3D3 Unclassified
NC_049971 #D3D3D3 Unclassified
NC_049970 #BCAF34 Picovirinae
NC_049969 #D3D3D3 Unclassified
NC_049968 #D3D3D3 Unclassified
NC_049967 #D3D3D3 Unclassified
NC_049966 #D3D3D3 Unclassified
NC_049965 #BCAF34 Picovirinae
NC_049964 #D3D3D3 Unclassified
NC_049963 #D3D3D3 Unclassified
NC_049962 #D3D3D3 Unclassified
NC_049961 #D3D3D3 Unclassified
NC_049960 #D3D3D3 Unclassified
NC_049959 #D3D3D3 Unclassified
NC_049955 #D3D3D3 Unclassified
NC_049954 #D3D3D3 Unclassified
NC_049953 #D3D3D3 Unclassified
NC_049952 #D3D3D3 Unclassified
NC_049951 #D3D3D3 Unclassified
NC_049950 #D3D3D3 Unclassified
NC_049949 #D3D3D3 Unclassified
NC_049948 #D3D3D3 Unclassified
NC_049946 #D3D3D3 Unclassified
NC_049945 #D3D3D3 Unclassified
NC_049944 #D3D3D3 Unclassified
NC_049943 #D3D3D3 Unclassified
NC_049942 #D3D3D3 Unclassified
NC_049941 #D3D3D3 Unclassified
NC_049940 #D3D3D3 Unclassified
NC_049939 #D3D3D3 Unclassified
NC_049938 #D3D3D3 Unclassified
NC_049937 #D3D3D3 Unclassified
NC_049936 #D3D3D3 Unclassified
NC_049935 #D3D3D3 Unclassified
NC_049934 #D3D3D3 Unclassified
NC_049933 #D3D3D3 Unclassified
NC_049932 #D3D3D3 Unclassified
NC_049931 #D3D3D3 Unclassified
NC_049930 #D3D3D3 Unclassified
NC_049929 #D3D3D3 Unclassified
NC_049928 #D3D3D3 Unclassified
NC_049927 #D3D3D3 Unclassified
NC_049926 #D3D3D3 Unclassified
NC_049925 #0CE30B Sepvirinae
NC_049924 #0CE30B Sepvirinae
NC_049923 #0CE30B Sepvirinae
NC_049922 #0CE30B Sepvirinae
NC_049921 #0CE30B Sepvirinae
NC_049920 #0CE30B Sepvirinae
NC_049919 #0CE30B Sepvirinae
NC_049918 #0CE30B Sepvirinae
NC_049917 #0CE30B Sepvirinae
NC_049900 #D3D3D3 Unclassified
NC_049857 #D3D3D3 Unclassified
NC_049856 #D3D3D3 Unclassified
NC_049855 #D3D3D3 Unclassified
NC_049854 #D3D3D3 Unclassified
NC_049847 #D3D3D3 Unclassified
NC_049839 #D3D3D3 Unclassified
NC_049853 #6CBE39 Tempevirinae
NC_049852 #6CBE39 Tempevirinae
NC_049851 #D3D3D3 Unclassified
NC_049850 #D3D3D3 Unclassified
NC_049849 #D3D3D3 Unclassified
NC_049848 #D3D3D3 Unclassified
NC_049846 #D3D3D3 Unclassified
NC_049845 #D3D3D3 Unclassified
NC_049844 #D3D3D3 Unclassified
NC_049843 #D3D3D3 Unclassified
NC_049842 #D3D3D3 Unclassified
NC_049841 #D3D3D3 Unclassified
NC_049840 #D3D3D3 Unclassified
NC_049838 #D3D3D3 Unclassified
NC_049837 #D3D3D3 Unclassified
NC_049836 #D3D3D3 Unclassified
NC_049835 #D3D3D3 Unclassified
NC_049834 #D3D3D3 Unclassified
NC_049833 #D3D3D3 Unclassified
NC_049832 #28D937 Tunavirinae
NC_049831 #28D937 Tunavirinae
NC_049830 #6CBE39 Tempevirinae
NC_049829 #6CBE39 Tempevirinae
NC_049828 #6CBE39 Tempevirinae
NC_049827 #6CBE39 Tempevirinae
NC_049826 #6CBE39 Tempevirinae
NC_049825 #6CBE39 Tempevirinae
NC_049824 #6CBE39 Tempevirinae
NC_049823 #6CBE39 Tempevirinae
NC_049822 #6CBE39 Tempevirinae
NC_049821 #6CBE39 Tempevirinae
NC_049820 #6CBE39 Tempevirinae
NC_049819 #6CBE39 Tempevirinae
NC_049818 #6CBE39 Tempevirinae
NC_049817 #6CBE39 Tempevirinae
NC_049816 #6CBE39 Tempevirinae
NC_049815 #6CBE39 Tempevirinae
NC_049814 #6CBE39 Tempevirinae
NC_049813 #C46C19 Braunvirinae
NC_049812 #D3D3D3 Unclassified
NC_049811 #D3D3D3 Unclassified
NC_049810 #D3D3D3 Unclassified
NC_049809 #D3D3D3 Unclassified
NC_049808 #D3D3D3 Unclassified
NC_049807 #D3D3D3 Unclassified
NC_049806 #D3D3D3 Unclassified
NC_049805 #D3D3D3 Unclassified
NC_023601 #D3D3D3 Unclassified
NC_049512 #3CDC0E Cvivirinae
NC_049511 #806AEC Tevenvirinae
NC_049510 #D3D3D3 Unclassified
NC_049509 #89BBE1 Aglimvirinae
NC_049508 #3CDC0E Cvivirinae
NC_049507 #3CDC0E Cvivirinae
NC_049506 #3CDC0E Cvivirinae
NC_049505 #3CDC0E Cvivirinae
NC_049504 #3CDC0E Cvivirinae
NC_049503 #3CDC0E Cvivirinae
NC_049502 #3CDC0E Cvivirinae
NC_049501 #3CDC0E Cvivirinae
NC_049500 #3CDC0E Cvivirinae
NC_049499 #3CDC0E Cvivirinae
NC_049498 #D3D3D3 Unclassified
NC_049494 #806AEC Tevenvirinae
NC_049493 #806AEC Tevenvirinae
NC_049492 #806AEC Tevenvirinae
NC_049491 #806AEC Tevenvirinae
NC_049490 #806AEC Tevenvirinae
NC_049489 #D3D3D3 Unclassified
NC_049488 #D3D3D3 Unclassified
NC_049487 #D3D3D3 Unclassified
NC_049486 #D3D3D3 Unclassified
NC_049485 #D3D3D3 Unclassified
NC_049484 #D3D3D3 Unclassified
NC_049483 #D3D3D3 Unclassified
NC_049482 #D3D3D3 Unclassified
NC_049481 #D3D3D3 Unclassified
NC_049480 #D3D3D3 Unclassified
NC_049479 #806AEC Tevenvirinae
NC_049478 #D3D3D3 Unclassified
NC_049477 #710F2A Peduovirinae
NC_049476 #D3D3D3 Unclassified
NC_049475 #D3D3D3 Unclassified
NC_049474 #D3D3D3 Unclassified
NC_049473 #D3D3D3 Unclassified
NC_049472 #D3D3D3 Unclassified
NC_049471 #D3D3D3 Unclassified
NC_049470 #D3D3D3 Unclassified
NC_049469 #D3D3D3 Unclassified
NC_049468 #D3D3D3 Unclassified
NC_049467 #D3D3D3 Unclassified
NC_049466 #D3D3D3 Unclassified
NC_049465 #D3D3D3 Unclassified
NC_049464 #806AEC Tevenvirinae
NC_049463 #D3D3D3 Unclassified
NC_049462 #D3D3D3 Unclassified
NC_049461 #710F2A Peduovirinae
NC_049460 #710F2A Peduovirinae
NC_049459 #710F2A Peduovirinae
NC_049458 #3CDC0E Cvivirinae
NC_049457 #710F2A Peduovirinae
NC_049455 #89BBE1 Aglimvirinae
NC_049454 #710F2A Peduovirinae
NC_049453 #710F2A Peduovirinae
NC_049452 #710F2A Peduovirinae
NC_049451 #710F2A Peduovirinae
NC_049450 #710F2A Peduovirinae
NC_049449 #710F2A Peduovirinae
NC_049448 #710F2A Peduovirinae
NC_049447 #D3D3D3 Unclassified
NC_049446 #D3D3D3 Unclassified
NC_049445 #806AEC Tevenvirinae
NC_049444 #D3D3D3 Unclassified
NC_049443 #3CDC0E Cvivirinae
NC_049442 #D3D3D3 Unclassified
NC_049441 #806AEC Tevenvirinae
NC_049440 #3CDC0E Cvivirinae
NC_049439 #3CDC0E Cvivirinae
NC_049438 #806AEC Tevenvirinae
NC_049437 #3CDC0E Cvivirinae
NC_049436 #D3D3D3 Unclassified
NC_049435 #D3D3D3 Unclassified
NC_049434 #D3D3D3 Unclassified
NC_049433 #3CDC0E Cvivirinae
NC_049432 #710F2A Peduovirinae
NC_049431 #D3D3D3 Unclassified
NC_049430 #D3D3D3 Unclassified
NC_049429 #710F2A Peduovirinae
NC_049428 #3CDC0E Cvivirinae
NC_049427 #3CDC0E Cvivirinae
NC_049426 #D3D3D3 Unclassified
NC_049425 #D3D3D3 Unclassified
NC_049424 #D3D3D3 Unclassified
NC_049423 #D3D3D3 Unclassified
NC_049422 #D3D3D3 Unclassified
NC_049421 #D3D3D3 Unclassified
NC_049420 #D3D3D3 Unclassified
NC_049419 #D3D3D3 Unclassified
NC_049418 #D3D3D3 Unclassified
NC_049417 #D3D3D3 Unclassified
NC_049416 #D3D3D3 Unclassified
NC_049415 #D3D3D3 Unclassified
NC_049414 #D3D3D3 Unclassified
NC_049413 #D3D3D3 Unclassified
NC_049412 #D3D3D3 Unclassified
NC_049411 #D3D3D3 Unclassified
NC_049410 #D3D3D3 Unclassified
NC_049409 #D3D3D3 Unclassified
NC_049408 #D3D3D3 Unclassified
NC_049407 #D3D3D3 Unclassified
NC_049406 #D3D3D3 Unclassified
NC_049405 #D3D3D3 Unclassified
NC_049404 #D3D3D3 Unclassified
NC_049403 #D3D3D3 Unclassified
NC_049402 #D3D3D3 Unclassified
NC_049401 #D3D3D3 Unclassified
NC_049400 #D3D3D3 Unclassified
NC_049399 #D3D3D3 Unclassified
NC_049398 #D3D3D3 Unclassified
NC_049397 #D3D3D3 Unclassified
NC_049396 #3CDC0E Cvivirinae
NC_049395 #710F2A Peduovirinae
NC_049394 #710F2A Peduovirinae
NC_049393 #710F2A Peduovirinae
NC_049392 #710F2A Peduovirinae
NC_049391 #710F2A Peduovirinae
NC_049390 #710F2A Peduovirinae
NC_049389 #710F2A Peduovirinae
NC_049388 #710F2A Peduovirinae
NC_049387 #710F2A Peduovirinae
NC_049386 #710F2A Peduovirinae
NC_049385 #710F2A Peduovirinae
NC_049384 #89BBE1 Aglimvirinae
NC_049383 #D3D3D3 Unclassified
NC_049382 #3CDC0E Cvivirinae
NC_049381 #D3D3D3 Unclassified
NC_049380 #D3D3D3 Unclassified
NC_049379 #D3D3D3 Unclassified
NC_049378 #3CDC0E Cvivirinae
NC_049377 #D3D3D3 Unclassified
NC_049376 #D3D3D3 Unclassified
NC_049375 #D3D3D3 Unclassified
NC_049374 #D3D3D3 Unclassified
NC_049373 #D3D3D3 Unclassified
NC_049372 #D3D3D3 Unclassified
NC_049371 #D3D3D3 Unclassified
NC_049370 #D3D3D3 Unclassified
NC_049369 #D3D3D3 Unclassified
NC_049368 #D3D3D3 Unclassified
NC_049367 #D3D3D3 Unclassified
NC_049366 #D3D3D3 Unclassified
NC_049365 #D3D3D3 Unclassified
NC_049364 #D3D3D3 Unclassified
NC_049363 #D3D3D3 Unclassified
NC_049362 #D3D3D3 Unclassified
NC_049361 #D3D3D3 Unclassified
NC_049360 #D3D3D3 Unclassified
NC_049359 #D3D3D3 Unclassified
NC_049358 #D3D3D3 Unclassified
NC_049357 #D3D3D3 Unclassified
NC_049356 #D3D3D3 Unclassified
NC_049355 #D3D3D3 Unclassified
NC_049354 #D3D3D3 Unclassified
NC_049353 #D3D3D3 Unclassified
NC_049352 #D3D3D3 Unclassified
NC_049351 #D3D3D3 Unclassified
NC_049350 #D3D3D3 Unclassified
NC_049349 #D3D3D3 Unclassified
NC_049348 #D3D3D3 Unclassified
NC_049347 #D3D3D3 Unclassified
NC_049346 #D3D3D3 Unclassified
NC_049345 #D3D3D3 Unclassified
NC_049340 #D3D3D3 Unclassified
NC_048892 #D3D3D3 Unclassified
NC_048625 #D3D3D3 Unclassified
NC_048624 #D3D3D3 Unclassified
NC_048629 #D3D3D3 Unclassified
NC_048628 #D3D3D3 Unclassified
NC_048627 #836B12 Markadamsvirinae
NC_048626 #D3D3D3 Unclassified
NC_048656 #D4EAE1 Vequintavirinae
NC_048650 #D3D3D3 Unclassified
NC_048658 #D3D3D3 Unclassified
NC_048878 #D3D3D3 Unclassified
NC_048877 #D3D3D3 Unclassified
NC_048876 #D3D3D3 Unclassified
NC_048875 #D3D3D3 Unclassified
NC_048874 #B7A14E Gokushovirinae
NC_048873 #D4EAE1 Vequintavirinae
NC_048872 #836B12 Markadamsvirinae
NC_048871 #836B12 Markadamsvirinae
NC_048870 #836B12 Markadamsvirinae
NC_048869 #836B12 Markadamsvirinae
NC_048868 #836B12 Markadamsvirinae
NC_048867 #836B12 Markadamsvirinae
NC_048866 #836B12 Markadamsvirinae
NC_048865 #836B12 Markadamsvirinae
NC_048864 #D3D3D3 Unclassified
NC_048863 #D3D3D3 Unclassified
NC_048862 #D3D3D3 Unclassified
NC_048861 #D3D3D3 Unclassified
NC_048860 #D3D3D3 Unclassified
NC_048859 #D3D3D3 Unclassified
NC_048858 #D3D3D3 Unclassified
NC_048857 #836B12 Markadamsvirinae
NC_048856 #836B12 Markadamsvirinae
NC_048855 #836B12 Markadamsvirinae
NC_048854 #D3D3D3 Unclassified
NC_048853 #836B12 Markadamsvirinae
NC_048852 #836B12 Markadamsvirinae
NC_048851 #D3D3D3 Unclassified
NC_048850 #D3D3D3 Unclassified
NC_048849 #806AEC Tevenvirinae
NC_048848 #D3D3D3 Unclassified
NC_048847 #D3D3D3 Unclassified
NC_048845 #D3D3D3 Unclassified
NC_048844 #D3D3D3 Unclassified
NC_048843 #D3D3D3 Unclassified
NC_048842 #D3D3D3 Unclassified
NC_048841 #D3D3D3 Unclassified
NC_048840 #D3D3D3 Unclassified
NC_048839 #D3D3D3 Unclassified
NC_048838 #D3D3D3 Unclassified
NC_048837 #D3D3D3 Unclassified
NC_048836 #D3D3D3 Unclassified
NC_048835 #D3D3D3 Unclassified
NC_048834 #D3D3D3 Unclassified
NC_048833 #D3D3D3 Unclassified
NC_048832 #D3D3D3 Unclassified
NC_048831 #D3D3D3 Unclassified
NC_048830 #D3D3D3 Unclassified
NC_048829 #D3D3D3 Unclassified
NC_048828 #D4EAE1 Vequintavirinae
NC_048827 #D3D3D3 Unclassified
NC_048826 #D3D3D3 Unclassified
NC_048825 #D3D3D3 Unclassified
NC_048824 #D3D3D3 Unclassified
NC_048823 #D3D3D3 Unclassified
NC_048822 #D3D3D3 Unclassified
NC_048821 #D3D3D3 Unclassified
NC_048820 #D3D3D3 Unclassified
NC_048819 #836B12 Markadamsvirinae
NC_048818 #836B12 Markadamsvirinae
NC_048817 #D3D3D3 Unclassified
NC_048816 #D3D3D3 Unclassified
NC_048815 #D3D3D3 Unclassified
NC_048814 #D3D3D3 Unclassified
NC_048813 #D3D3D3 Unclassified
NC_048812 #D3D3D3 Unclassified
NC_048811 #836B12 Markadamsvirinae
NC_048810 #D3D3D3 Unclassified
NC_048809 #836B12 Markadamsvirinae
NC_048808 #836B12 Markadamsvirinae
NC_048807 #D4EAE1 Vequintavirinae
NC_048806 #D3D3D3 Unclassified
NC_048805 #D3D3D3 Unclassified
NC_048804 #D3D3D3 Unclassified
NC_048803 #D3D3D3 Unclassified
NC_048802 #D3D3D3 Unclassified
NC_048801 #D3D3D3 Unclassified
NC_048800 #D3D3D3 Unclassified
NC_048799 #D3D3D3 Unclassified
NC_048798 #806AEC Tevenvirinae
NC_048797 #5EA5CD Bastillevirinae
NC_048796 #D3D3D3 Unclassified
NC_048795 #836B12 Markadamsvirinae
NC_048794 #836B12 Markadamsvirinae
NC_048793 #D3D3D3 Unclassified
NC_048792 #D3D3D3 Unclassified
NC_048791 #D3D3D3 Unclassified
NC_048790 #D3D3D3 Unclassified
NC_048789 #D3D3D3 Unclassified
NC_048788 #D3D3D3 Unclassified
NC_048787 #D3D3D3 Unclassified
NC_048786 #836B12 Markadamsvirinae
NC_048785 #836B12 Markadamsvirinae
NC_048784 #D3D3D3 Unclassified
NC_048783 #D3D3D3 Unclassified
NC_048782 #D3D3D3 Unclassified
NC_048781 #836B12 Markadamsvirinae
NC_048780 #D3D3D3 Unclassified
NC_048779 #D3D3D3 Unclassified
NC_048778 #D3D3D3 Unclassified
NC_048777 #D3D3D3 Unclassified
NC_048776 #D3D3D3 Unclassified
NC_048775 #D3D3D3 Unclassified
NC_048774 #D3D3D3 Unclassified
NC_048773 #D3D3D3 Unclassified
NC_048772 #D3D3D3 Unclassified
NC_048771 #D3D3D3 Unclassified
NC_048770 #D3D3D3 Unclassified
NC_048769 #D3D3D3 Unclassified
NC_048768 #D3D3D3 Unclassified
NC_048767 #D3D3D3 Unclassified
NC_048766 #D3D3D3 Unclassified
NC_048765 #D3D3D3 Unclassified
NC_048764 #D3D3D3 Unclassified
NC_048763 #D3D3D3 Unclassified
NC_048762 #D3D3D3 Unclassified
NC_048761 #D3D3D3 Unclassified
NC_048760 #836B12 Markadamsvirinae
NC_048759 #D3D3D3 Unclassified
NC_048758 #D3D3D3 Unclassified
NC_048757 #D3D3D3 Unclassified
NC_048756 #D3D3D3 Unclassified
NC_048755 #D3D3D3 Unclassified
NC_048754 #D3D3D3 Unclassified
NC_048753 #D3D3D3 Unclassified
NC_048752 #D3D3D3 Unclassified
NC_048751 #D3D3D3 Unclassified
NC_048750 #D3D3D3 Unclassified
NC_048749 #D3D3D3 Unclassified
NC_048748 #836B12 Markadamsvirinae
NC_048747 #D3D3D3 Unclassified
NC_048746 #D3D3D3 Unclassified
NC_048745 #D3D3D3 Unclassified
NC_048744 #D3D3D3 Unclassified
NC_048743 #D3D3D3 Unclassified
NC_048742 #D3D3D3 Unclassified
NC_048741 #D4EAE1 Vequintavirinae
NC_048740 #D3D3D3 Unclassified
NC_048739 #D3D3D3 Unclassified
NC_048738 #D3D3D3 Unclassified
NC_048737 #D3D3D3 Unclassified
NC_048736 #D3D3D3 Unclassified
NC_048735 #D3D3D3 Unclassified
NC_048734 #D3D3D3 Unclassified
NC_048733 #D3D3D3 Unclassified
NC_048732 #D3D3D3 Unclassified
NC_048731 #836B12 Markadamsvirinae
NC_048730 #D3D3D3 Unclassified
NC_048729 #D3D3D3 Unclassified
NC_048728 #D3D3D3 Unclassified
NC_048727 #D3D3D3 Unclassified
NC_048726 #5EA5CD Bastillevirinae
NC_048725 #D3D3D3 Unclassified
NC_048724 #D3D3D3 Unclassified
NC_048723 #D3D3D3 Unclassified
NC_048722 #D3D3D3 Unclassified
NC_048721 #D3D3D3 Unclassified
NC_048720 #D3D3D3 Unclassified
NC_048719 #D3D3D3 Unclassified
NC_048718 #D3D3D3 Unclassified
NC_048717 #D3D3D3 Unclassified
NC_048716 #D3D3D3 Unclassified
NC_048715 #D3D3D3 Unclassified
NC_048714 #D3D3D3 Unclassified
NC_048713 #D3D3D3 Unclassified
NC_048712 #D3D3D3 Unclassified
NC_048711 #D3D3D3 Unclassified
NC_048710 #D3D3D3 Unclassified
NC_048709 #D3D3D3 Unclassified
NC_048708 #D3D3D3 Unclassified
NC_048707 #D3D3D3 Unclassified
NC_048706 #D3D3D3 Unclassified
NC_048705 #D3D3D3 Unclassified
NC_048704 #D3D3D3 Unclassified
NC_048703 #D3D3D3 Unclassified
NC_048702 #D3D3D3 Unclassified
NC_048701 #D3D3D3 Unclassified
NC_048700 #D3D3D3 Unclassified
NC_048699 #D3D3D3 Unclassified
NC_048698 #D3D3D3 Unclassified
NC_048697 #D3D3D3 Unclassified
NC_048696 #D3D3D3 Unclassified
NC_048695 #D3D3D3 Unclassified
NC_048694 #806AEC Tevenvirinae
NC_048693 #D3D3D3 Unclassified
NC_048692 #D3D3D3 Unclassified
NC_048691 #D3D3D3 Unclassified
NC_048690 #D3D3D3 Unclassified
NC_048689 #D3D3D3 Unclassified
NC_048688 #D3D3D3 Unclassified
NC_048687 #D3D3D3 Unclassified
NC_048686 #D3D3D3 Unclassified
NC_048685 #D3D3D3 Unclassified
NC_048684 #D3D3D3 Unclassified
NC_048683 #D3D3D3 Unclassified
NC_048682 #D4EAE1 Vequintavirinae
NC_048681 #D3D3D3 Unclassified
NC_048680 #D3D3D3 Unclassified
NC_048679 #D3D3D3 Unclassified
NC_048678 #D3D3D3 Unclassified
NC_048677 #D3D3D3 Unclassified
NC_048676 #D3D3D3 Unclassified
NC_048675 #D3D3D3 Unclassified
NC_048674 #806AEC Tevenvirinae
NC_048673 #806AEC Tevenvirinae
NC_048672 #D3D3D3 Unclassified
NC_048671 #D3D3D3 Unclassified
NC_048670 #D3D3D3 Unclassified
NC_048669 #D3D3D3 Unclassified
NC_048668 #D3D3D3 Unclassified
NC_048667 #D3D3D3 Unclassified
NC_048666 #D3D3D3 Unclassified
NC_048665 #D3D3D3 Unclassified
NC_048664 #D3D3D3 Unclassified
NC_048663 #D3D3D3 Unclassified
NC_048662 #D3D3D3 Unclassified
NC_048661 #D3D3D3 Unclassified
NC_048660 #D3D3D3 Unclassified
NC_048659 #D3D3D3 Unclassified
NC_048657 #D3D3D3 Unclassified
NC_048655 #D3D3D3 Unclassified
NC_048654 #D3D3D3 Unclassified
NC_048653 #D3D3D3 Unclassified
NC_048652 #5EA5CD Bastillevirinae
NC_048651 #D3D3D3 Unclassified
NC_048649 #D3D3D3 Unclassified
NC_048648 #D3D3D3 Unclassified
NC_048646 #806AEC Tevenvirinae
NC_048645 #806AEC Tevenvirinae
NC_048644 #D3D3D3 Unclassified
NC_048643 #D3D3D3 Unclassified
NC_048642 #D3D3D3 Unclassified
NC_048641 #D3D3D3 Unclassified
NC_048640 #D3D3D3 Unclassified
NC_048639 #D3D3D3 Unclassified
NC_048638 #D3D3D3 Unclassified
NC_048637 #D3D3D3 Unclassified
NC_048636 #D3D3D3 Unclassified
NC_048635 #D3D3D3 Unclassified
NC_048634 #D3D3D3 Unclassified
NC_048633 #D3D3D3 Unclassified
NC_048632 #D3D3D3 Unclassified
NC_048631 #D3D3D3 Unclassified
NC_042139 #D3D3D3 Unclassified
NC_047757 #D3D3D3 Unclassified
NC_048024 #D3D3D3 Unclassified
NC_048208 #C46C19 Braunvirinae
NC_048207 #D3D3D3 Unclassified
NC_048206 #6CBE39 Tempevirinae
NC_048205 #836B12 Markadamsvirinae
NC_048204 #6CBE39 Tempevirinae
NC_048203 #836B12 Markadamsvirinae
NC_048202 #6CBE39 Tempevirinae
NC_048200 #4551CF Studiervirinae
NC_048199 #D3D3D3 Unclassified
NC_048198 #D3D3D3 Unclassified
NC_048197 #D3D3D3 Unclassified
NC_048196 #D3D3D3 Unclassified
NC_048195 #D3D3D3 Unclassified
NC_048194 #D3D3D3 Unclassified
NC_048193 #D3D3D3 Unclassified
NC_048192 #D3D3D3 Unclassified
NC_048191 #D3D3D3 Unclassified
NC_048190 #D3D3D3 Unclassified
NC_048189 #D3D3D3 Unclassified
NC_048188 #D3D3D3 Unclassified
NC_048187 #D3D3D3 Unclassified
NC_048186 #D3D3D3 Unclassified
NC_048185 #D3D3D3 Unclassified
NC_048183 #D3D3D3 Unclassified
NC_048182 #D3D3D3 Unclassified
NC_048181 #46D765 Guernseyvirinae
NC_048180 #4551CF Studiervirinae
NC_048179 #D3D3D3 Unclassified
NC_048178 #D3D3D3 Unclassified
NC_048177 #D3D3D3 Unclassified
NC_048176 #D3D3D3 Unclassified
NC_048175 #4551CF Studiervirinae
NC_048174 #3A6AB6 Slopekvirinae
NC_048173 #D3D3D3 Unclassified
NC_048172 #3A6AB6 Slopekvirinae
NC_048171 #D3D3D3 Unclassified
NC_048170 #D3D3D3 Unclassified
NC_048169 #D3D3D3 Unclassified
NC_048168 #43535A Krylovirinae
NC_048166 #D3D3D3 Unclassified
NC_048165 #D3D3D3 Unclassified
NC_048164 #4551CF Studiervirinae
NC_048163 #4551CF Studiervirinae
NC_048162 #D3D3D3 Unclassified
NC_048161 #4551CF Studiervirinae
NC_048160 #D3D3D3 Unclassified
NC_048159 #50CA12 Rakietenvirinae
NC_048158 #D3D3D3 Unclassified
NC_048157 #D3D3D3 Unclassified
NC_048156 #D3D3D3 Unclassified
NC_048155 #D3D3D3 Unclassified
NC_048154 #D3D3D3 Unclassified
NC_048153 #D3D3D3 Unclassified
NC_048152 #D3D3D3 Unclassified
NC_048151 #D3D3D3 Unclassified
NC_048150 #28D937 Tunavirinae
NC_048149 #836B12 Markadamsvirinae
NC_048148 #D3D3D3 Unclassified
NC_048147 #D3D3D3 Unclassified
NC_048146 #CE33E3 Langleyhallvirinae
NC_048145 #836B12 Markadamsvirinae
NC_048144 #D3D3D3 Unclassified
NC_048143 #D3D3D3 Unclassified
NC_048142 #DB1336 Beijerinckvirinae
NC_048141 #CE33E3 Langleyhallvirinae
NC_048140 #D3D3D3 Unclassified
NC_048139 #D3D3D3 Unclassified
NC_048138 #4551CF Studiervirinae
NC_048137 #D3D3D3 Unclassified
NC_048136 #4551CF Studiervirinae
NC_048134 #4FD2FC Twortvirinae
NC_048133 #AC60EE Melnykvirinae
NC_048132 #6CBE39 Tempevirinae
NC_048131 #4551CF Studiervirinae
NC_048130 #4551CF Studiervirinae
NC_048129 #4551CF Studiervirinae
NC_048128 #D3D3D3 Unclassified
NC_048127 #D3D3D3 Unclassified
NC_048126 #D3D3D3 Unclassified
NC_048125 #D3D3D3 Unclassified
NC_048124 #D3D3D3 Unclassified
NC_048123 #D3D3D3 Unclassified
NC_048122 #D3D3D3 Unclassified
NC_048121 #D3D3D3 Unclassified
NC_048120 #C87AF3 Corkvirinae
NC_048119 #C87AF3 Corkvirinae
NC_048118 #C87AF3 Corkvirinae
NC_048117 #C87AF3 Corkvirinae
NC_048116 #C87AF3 Corkvirinae
NC_048115 #D3D3D3 Unclassified
NC_048114 #4551CF Studiervirinae
NC_048113 #D3D3D3 Unclassified
NC_048112 #D3D3D3 Unclassified
NC_048111 #AC60EE Melnykvirinae
NC_048110 #836B12 Markadamsvirinae
NC_048109 #710F2A Peduovirinae
NC_048108 #4551CF Studiervirinae
NC_048107 #50CA12 Rakietenvirinae
NC_048106 #D3D3D3 Unclassified
NC_048105 #4551CF Studiervirinae
NC_048103 #C87AF3 Corkvirinae
NC_048102 #D3D3D3 Unclassified
NC_048101 #D3D3D3 Unclassified
NC_048100 #D3D3D3 Unclassified
NC_048099 #D3D3D3 Unclassified
NC_048098 #D3D3D3 Unclassified
NC_048097 #D3D3D3 Unclassified
NC_048096 #D3D3D3 Unclassified
NC_048095 #D3D3D3 Unclassified
NC_048094 #D3D3D3 Unclassified
NC_048093 #D3D3D3 Unclassified
NC_048092 #D3D3D3 Unclassified
NC_048091 #D3D3D3 Unclassified
NC_048090 #D3D3D3 Unclassified
NC_048089 #836B12 Markadamsvirinae
NC_048088 #D3D3D3 Unclassified
NC_048087 #5252BF Brockvirinae
NC_048086 #D3D3D3 Unclassified
NC_048085 #4FD2FC Twortvirinae
NC_048084 #4FD2FC Twortvirinae
NC_048083 #CE33E3 Langleyhallvirinae
NC_048082 #4551CF Studiervirinae
NC_048081 #DB1336 Beijerinckvirinae
NC_048080 #D3D3D3 Unclassified
NC_048079 #4551CF Studiervirinae
NC_048078 #4551CF Studiervirinae
NC_048077 #D3D3D3 Unclassified
NC_048076 #DB1336 Beijerinckvirinae
NC_048075 #D3D3D3 Unclassified
NC_048074 #D3D3D3 Unclassified
NC_048073 #D3D3D3 Unclassified
NC_048072 #D3D3D3 Unclassified
NC_048071 #4551CF Studiervirinae
NC_048070 #D3D3D3 Unclassified
NC_048069 #D3D3D3 Unclassified
NC_048068 #D3D3D3 Unclassified
NC_048067 #D3D3D3 Unclassified
NC_048066 #710F2A Peduovirinae
NC_048065 #6CBE39 Tempevirinae
NC_048064 #3F2504 Molineuxvirinae
NC_048063 #4551CF Studiervirinae
NC_048062 #836B12 Markadamsvirinae
NC_048061 #C87AF3 Corkvirinae
NC_048060 #4551CF Studiervirinae
NC_048059 #4551CF Studiervirinae
NC_048058 #C87AF3 Corkvirinae
NC_048057 #4551CF Studiervirinae
NC_048056 #C87AF3 Corkvirinae
NC_048055 #D3D3D3 Unclassified
NC_048054 #D3D3D3 Unclassified
NC_048053 #D3D3D3 Unclassified
NC_048052 #4551CF Studiervirinae
NC_048049 #D3D3D3 Unclassified
NC_048048 #E893F8 Dolichocephalovirinae
NC_048047 #E893F8 Dolichocephalovirinae
NC_048046 #E893F8 Dolichocephalovirinae
NC_048045 #E893F8 Dolichocephalovirinae
NC_048044 #D3D3D3 Unclassified
NC_048043 #D3D3D3 Unclassified
NC_048042 #D3D3D3 Unclassified
NC_048041 #D3D3D3 Unclassified
NC_048040 #CE33E3 Langleyhallvirinae
NC_048039 #CE33E3 Langleyhallvirinae
NC_048038 #D3D3D3 Unclassified
NC_048037 #D3D3D3 Unclassified
NC_048036 #D3D3D3 Unclassified
NC_048035 #D3D3D3 Unclassified
NC_048029 #D3D3D3 Unclassified
NC_048028 #D3D3D3 Unclassified
NC_048027 #D3D3D3 Unclassified
NC_048026 #D3D3D3 Unclassified
NC_048025 #4551CF Studiervirinae
NC_048023 #4551CF Studiervirinae
NC_048022 #D3D3D3 Unclassified
NC_048021 #D3D3D3 Unclassified
NC_048020 #D3D3D3 Unclassified
NC_048019 #D3D3D3 Unclassified
NC_048018 #D3D3D3 Unclassified
NC_048017 #D3D3D3 Unclassified
NC_048016 #D3D3D3 Unclassified
NC_048015 #D3D3D3 Unclassified
NC_048014 #4551CF Studiervirinae
NC_048013 #836B12 Markadamsvirinae
NC_048012 #836B12 Markadamsvirinae
NC_048011 #836B12 Markadamsvirinae
NC_048010 #836B12 Markadamsvirinae
NC_048009 #836B12 Markadamsvirinae
NC_048008 #836B12 Markadamsvirinae
NC_048007 #836B12 Markadamsvirinae
NC_048006 #836B12 Markadamsvirinae