-
Notifications
You must be signed in to change notification settings - Fork 0
/
its_reads.sintax
2201 lines (2201 loc) · 442 KB
/
its_reads.sintax
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
Otu2 k:Fungi(1.0000),p:Rozellomycota(0.1400),c:Rozellomycota_cls_Incertae_sedis(0.0196),o:GS02(0.0025),f:unidentified(0.0007),g:unidentified(0.0002),s:GS02_sp(0.0000) + k:Fungi
Otu3 k:Fungi(1.0000),p:Ascomycota(1.0000),c:unidentified(0.9900),o:unidentified(0.9801),f:unidentified(0.9801),g:unidentified(0.9801),s:Ascomycota_sp(0.9703) + k:Fungi,p:Ascomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Ascomycota_sp
Otu1 k:Fungi(1.0000),p:Ascomycota(0.6700),c:Leotiomycetes(0.4489),o:Helotiales(0.3008),f:Helotiales_fam_Incertae_sedis(0.2015),g:Tetracladium(0.1350),s:Tetracladium_marchalianum(0.0905) + k:Fungi
Otu4 k:Fungi(1.0000),p:Ascomycota(0.8500),c:Leotiomycetes(0.6800),o:Helotiales(0.5440),f:Helotiales_fam_Incertae_sedis(0.4352),g:Tetracladium(0.3438),s:Tetracladium_marchalianum(0.2682) + k:Fungi,p:Ascomycota
Otu6 k:Fungi(1.0000),p:Rozellomycota(0.3800),c:unidentified(0.1482),o:unidentified(0.0697),f:unidentified(0.0397),g:unidentified(0.0266),s:Rozellomycota_sp(0.0090) + k:Fungi
Otu7 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Thelephorales(0.9800),f:Thelephoraceae(0.9604),g:unidentified(0.6435),s:Thelephoraceae_sp(0.4247) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales,f:Thelephoraceae
Otu5 k:Fungi(1.0000),p:Ascomycota(0.9800),c:Leotiomycetes(0.9114),o:Helotiales(0.7929),f:Helotiaceae(0.4282),g:Tricladium(0.2012),s:Tricladium_angulatum(0.0946) + k:Fungi,p:Ascomycota,c:Leotiomycetes
Otu8 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.8500),o:Leotiales(0.6630),f:Leotiaceae(0.5171),g:Alatospora(0.4034),s:Alatospora_acuminata(0.2017) + k:Fungi,p:Ascomycota,c:Leotiomycetes
Otu9 k:Fungi(1.0000),p:Chytridiomycota(0.4900),c:unidentified(0.2499),o:unidentified(0.1299),f:unidentified(0.0741),g:unidentified(0.0430),s:Chytridiomycota_sp(0.0202) + k:Fungi
Otu10 k:Fungi(1.0000),p:Rozellomycota(0.6400),c:unidentified(0.3776),o:unidentified(0.2228),f:unidentified(0.1782),g:unidentified(0.1497),s:Rozellomycota_sp(0.0778) + k:Fungi
Otu11 k:Fungi(1.0000),p:Glomeromycota(0.4400),c:Glomeromycetes(0.1672),o:Glomerales(0.0368),f:Glomeraceae(0.0081),g:unidentified(0.0030),s:Glomeraceae_sp(0.0003) + k:Fungi
Otu12 k:Fungi(1.0000),p:Rozellomycota(0.6600),c:Rozellomycota_cls_Incertae_sedis(0.4158),o:GS10(0.2412),f:unidentified(0.1857),g:unidentified(0.1504),s:GS10_sp(0.0872) + k:Fungi
Otu13 k:Fungi(0.9900),p:Rozellomycota(0.4455),c:unidentified(0.2495),o:unidentified(0.1397),f:unidentified(0.0880),g:unidentified(0.0643),s:Rozellomycota_sp(0.0270) + k:Fungi
Otu14 k:Fungi(0.9900),p:Rozellomycota(0.2079),c:unidentified(0.0582),o:unidentified(0.0163),f:unidentified(0.0068),g:unidentified(0.0038),s:Rozellomycota_sp(0.0005) + k:Fungi
Otu15 k:Fungi(1.0000),p:Rozellomycota(0.2300),c:Rozellomycota_cls_Incertae_sedis(0.0483),o:GS11(0.0092),f:unidentified(0.0037),g:unidentified(0.0016),s:GS11_sp(0.0003) + k:Fungi
Otu17 k:Fungi(1.0000),p:Rozellomycota(0.5100),c:Rozellomycota_cls_Incertae_sedis(0.2346),o:GS11(0.0727),f:unidentified(0.0538),g:unidentified(0.0436),s:GS11_sp(0.0135) + k:Fungi
Otu16 k:Fungi(1.0000),p:Chytridiomycota(0.5400),c:unidentified(0.2808),o:unidentified(0.1544),f:unidentified(0.0988),g:unidentified(0.0712),s:Chytridiomycota_sp(0.0320) + k:Fungi
Otu18 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Agaricomycetes(0.9801),o:Thelephorales(0.9703),f:Thelephoraceae(0.9315),g:Tomentella(0.6893),s:Tomentella_sp(0.3998) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales,f:Thelephoraceae
Otu19 k:Fungi(1.0000),p:Basidiomycota(0.8900),c:Agaricomycetes(0.7921),o:Russulales(0.6970),f:Russulaceae(0.6134),g:Russula(0.5275),s:Russula_sp(0.3956) + k:Fungi,p:Basidiomycota
Otu20 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(1.0000),o:Helotiales(1.0000),f:Helotiaceae(0.9900),g:Articulospora(0.9801),s:Articulospora_sp(0.9703) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales,f:Helotiaceae,g:Articulospora,s:Articulospora_sp
Otu21 k:Fungi(1.0000),p:Ascomycota(0.9800),c:unidentified(0.7056),o:unidentified(0.5080),f:unidentified(0.4217),g:unidentified(0.3837),s:Ascomycota_sp(0.2763) + k:Fungi,p:Ascomycota
Otu22 k:Fungi(1.0000),p:Rozellomycota(0.5600),c:unidentified(0.2576),o:unidentified(0.1185),f:unidentified(0.0829),g:unidentified(0.0622),s:Rozellomycota_sp(0.0261) + k:Fungi
Otu23 k:Fungi(1.0000),p:Ascomycota(0.9500),c:Dothideomycetes(0.9025),o:Pleosporales(0.8483),f:Cucurbitariaceae(0.5429),g:Pyrenochaetopsis(0.3475),s:Pyrenochaetopsis_pratorum(0.2224) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales
Otu26 k:Fungi(0.9100),p:unidentified(0.1456),c:unidentified(0.0451),o:unidentified(0.0144),f:unidentified(0.0075),g:unidentified(0.0048),s:Fungi_sp(0.0005) + k:Fungi
Otu24 k:Fungi(1.0000),p:Ascomycota(1.0000),c:unidentified(0.3400),o:unidentified(0.1156),f:unidentified(0.0613),g:unidentified(0.0349),s:Ascomycota_sp(0.0119) + k:Fungi,p:Ascomycota
Otu25 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Sebacinales(1.0000),f:Sebacinaceae(0.9900),g:Sebacina(0.5247),s:Sebacina_sp(0.2781) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Sebacinales,f:Sebacinaceae
Otu27 k:Fungi(1.0000),p:Ascomycota(0.9400),c:Xylonomycetes(0.1410),o:Symbiotaphrinales(0.0197),f:Symbiotaphrinales_fam._Incertae_sedis(0.0028),g:Symbiotaphrina(0.0004),s:Symbiotaphrina_buchneri(0.0001) + k:Fungi,p:Ascomycota
Otu29 k:Fungi(1.0000),p:Chytridiomycota(0.9100),c:Chytridiomycetes(0.6734),o:unidentified(0.5589),f:unidentified(0.4807),g:unidentified(0.4182),s:Chytridiomycetes_sp(0.3053) + k:Fungi,p:Chytridiomycota
Otu30 k:Fungi(1.0000),p:Rozellomycota(0.4400),c:unidentified(0.1892),o:unidentified(0.1041),f:unidentified(0.0739),g:unidentified(0.0532),s:Rozellomycota_sp(0.0186) + k:Fungi
Otu28 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Capnodiales(1.0000),f:Mycosphaerellaceae(0.9600),g:Ramularia(0.7968),s:Ramularia_sp(0.1514) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Capnodiales,f:Mycosphaerellaceae
Otu31 k:Fungi(1.0000),p:Rozellomycota(0.3400),c:unidentified(0.1836),o:unidentified(0.1028),f:unidentified(0.0637),g:unidentified(0.0440),s:Rozellomycota_sp(0.0132) + k:Fungi
Otu33 k:Fungi(0.9300),p:Ascomycota(0.5952),c:Xylonomycetes(0.0774),o:Symbiotaphrinales(0.0101),f:Symbiotaphrinales_fam._Incertae_sedis(0.0013),g:Symbiotaphrina(0.0002),s:Symbiotaphrina_buchneri(0.0000) + k:Fungi
Otu32 k:Fungi(1.0000),p:Rozellomycota(0.5700),c:unidentified(0.3534),o:unidentified(0.2191),f:unidentified(0.1599),g:unidentified(0.1232),s:Rozellomycota_sp(0.0567) + k:Fungi
Otu34 k:Fungi(0.9900),p:Rozellomycota(0.0990),c:Rozellomycota_cls_Incertae_sedis(0.0099),o:GS02(0.0010),f:unidentified(0.0002),g:unidentified(0.0001),s:GS02_sp(0.0000) + k:Fungi
Otu35 k:Fungi(1.0000),p:unidentified(0.3600),c:unidentified(0.2304),o:unidentified(0.1544),f:unidentified(0.1158),g:unidentified(0.0903),s:Fungi_sp(0.0325) + k:Fungi
Otu36 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:unidentified(0.7500),g:unidentified(0.5700),s:Tremellales_sp(0.4275) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales
Otu38 k:Fungi(1.0000),p:Rozellomycota(0.6100),c:unidentified(0.3965),o:unidentified(0.2657),f:unidentified(0.1992),g:unidentified(0.1534),s:Rozellomycota_sp(0.0890) + k:Fungi
Otu37 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Trichosporonales(1.0000),f:Trichosporonaceae(1.0000),g:Apiotrichum(0.7900),s:Apiotrichum_vadense(0.1896) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Trichosporonales,f:Trichosporonaceae
Otu39 k:Fungi(1.0000),p:Basidiomycota(0.9300),c:Agaricomycetes(0.8649),o:Thelephorales(0.8044),f:Thelephoraceae(0.7481),g:unidentified(0.3965),s:Thelephoraceae_sp(0.1824) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales
Otu40 k:Fungi(1.0000),p:Rozellomycota(0.6900),c:unidentified(0.6831),o:unidentified(0.6763),f:unidentified(0.6695),g:unidentified(0.6628),s:Rozellomycota_sp(0.4573) + k:Fungi
Otu41 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:Bulleribasidiaceae(0.8000),g:Vishniacozyma(0.6400),s:Vishniacozyma_carnescens(0.2752) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Bulleribasidiaceae
Otu42 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Russulales(1.0000),f:Russulaceae(1.0000),g:Lactifluus(1.0000),s:Lactifluus_leoninus(0.9800) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Russulales,f:Russulaceae,g:Lactifluus,s:Lactifluus_leoninus
Otu44 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(1.0000),o:Helotiales(1.0000),f:Helotiaceae(0.9900),g:Articulospora(0.9801),s:Articulospora_sp(0.9703) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales,f:Helotiaceae,g:Articulospora,s:Articulospora_sp
Otu45 k:Fungi(0.9500),p:unidentified(0.3040),c:unidentified(0.1186),o:unidentified(0.0498),f:unidentified(0.0279),g:unidentified(0.0184),s:Fungi_sp(0.0057) + k:Fungi
Otu43 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Tremellomycetes(0.9801),o:Trichosporonales(0.9311),f:Trichosporonaceae(0.8845),g:Cutaneotrichosporon(0.6015),s:Cutaneotrichosporon_sp(0.3368) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Trichosporonales,f:Trichosporonaceae
Otu48 k:Fungi(1.0000),p:Rozellomycota(0.4900),c:unidentified(0.2058),o:unidentified(0.0947),f:unidentified(0.0596),g:unidentified(0.0417),s:Rozellomycota_sp(0.0150) + k:Fungi
Otu46 k:Fungi(1.0000),p:Basidiomycota(0.8100),c:Agaricomycetes(0.6561),o:Agaricales(0.5314),f:Bolbitiaceae(0.4305),g:unidentified(0.3745),s:Bolbitiaceae_sp(0.3034) + k:Fungi,p:Basidiomycota
Otu47 k:Fungi(1.0000),p:Rozellomycota(0.8200),c:unidentified(0.8200),o:unidentified(0.8200),f:unidentified(0.8200),g:unidentified(0.8200),s:Rozellomycota_sp(0.6724) + k:Fungi,p:Rozellomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified
Otu49 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(1.0000),f:Nectriaceae(1.0000),g:Campylocarpon(1.0000),s:Campylocarpon_pseudofasciculare(1.0000) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:Nectriaceae,g:Campylocarpon,s:Campylocarpon_pseudofasciculare
Otu51 k:Fungi(1.0000),p:Basidiomycota(0.9600),c:Agaricomycetes(0.9216),o:Thelephorales(0.8847),f:Thelephoraceae(0.8317),g:unidentified(0.4408),s:Thelephoraceae_sp(0.2072) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales,f:Thelephoraceae
Otu50 k:Fungi(1.0000),p:unidentified(0.3400),c:unidentified(0.1870),o:unidentified(0.1047),f:unidentified(0.0670),g:unidentified(0.0462),s:Fungi_sp(0.0157) + k:Fungi
Otu52 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.9800),o:Helotiales(0.9604),f:Helotiaceae(0.8548),g:Articulospora(0.7607),s:Articulospora_proliferata(0.4336) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales,f:Helotiaceae
Otu53 k:Fungi(1.0000),p:unidentified(0.6300),c:unidentified(0.4221),o:unidentified(0.2870),f:unidentified(0.2497),g:unidentified(0.2173),s:Fungi_sp(0.1369) + k:Fungi
Otu55 k:Fungi(1.0000),p:unidentified(0.0700),c:unidentified(0.0084),o:unidentified(0.0015),f:unidentified(0.0006),g:unidentified(0.0003),s:Fungi_sp(0.0000) + k:Fungi
Otu54 k:Fungi(1.0000),p:Ascomycota(0.9100),c:unidentified(0.5096),o:unidentified(0.2905),f:unidentified(0.2208),g:unidentified(0.1810),s:Ascomycota_sp(0.0887) + k:Fungi,p:Ascomycota
Otu56 k:Fungi(1.0000),p:unidentified(0.6100),c:unidentified(0.4758),o:unidentified(0.3711),f:unidentified(0.2895),g:unidentified(0.2258),s:Fungi_sp(0.1377) + k:Fungi
Otu57 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Tremellales_sp(1.0000) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:unidentified,g:unidentified,s:Tremellales_sp
Otu59 k:Fungi(1.0000),p:unidentified(0.1200),c:unidentified(0.0288),o:unidentified(0.0075),f:unidentified(0.0029),g:unidentified(0.0016),s:Fungi_sp(0.0002) + k:Fungi
Otu58 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:Bulleribasidiaceae(0.8500),g:Vishniacozyma(0.7225),s:Vishniacozyma_foliicola(0.4985) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Bulleribasidiaceae
Otu60 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(1.0000),o:Helotiales(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Helotiales_sp(1.0000) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales,f:unidentified,g:unidentified,s:Helotiales_sp
Otu61 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Capnodiales(1.0000),f:Mycosphaerellaceae(0.9900),g:Sphaerulina(0.6138),s:Sphaerulina_rhododendricola(0.1903) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Capnodiales,f:Mycosphaerellaceae
Otu63 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Thelephorales(1.0000),f:Thelephoraceae(1.0000),g:unidentified(0.3700),s:Thelephoraceae_sp(0.1369) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales,f:Thelephoraceae
Otu64 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:Bulleribasidiaceae(0.5500),g:Vishniacozyma(0.3025),s:Vishniacozyma_tephrensis(0.1664) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales
Otu65 k:Fungi(1.0000),p:Rozellomycota(0.7000),c:unidentified(0.4550),o:unidentified(0.3003),f:unidentified(0.2462),g:unidentified(0.2068),s:Rozellomycota_sp(0.1241) + k:Fungi
Otu62 k:Fungi(1.0000),p:unidentified(0.4800),c:unidentified(0.2304),o:unidentified(0.1106),f:unidentified(0.0531),g:unidentified(0.0255),s:Fungi_sp(0.0122) + k:Fungi
Otu69 k:Fungi(1.0000),p:unidentified(0.8800),c:unidentified(0.7744),o:unidentified(0.6815),f:unidentified(0.5997),g:unidentified(0.5517),s:Fungi_sp(0.4855) + k:Fungi,p:unidentified
Otu66 k:Fungi(1.0000),p:unidentified(0.4300),c:unidentified(0.1978),o:unidentified(0.0930),f:unidentified(0.0641),g:unidentified(0.0475),s:Fungi_sp(0.0204) + k:Fungi
Otu67 k:Fungi(1.0000),p:GS19(0.0900),c:unidentified(0.0207),o:unidentified(0.0052),f:unidentified(0.0029),g:unidentified(0.0019),s:GS19_sp(0.0002) + k:Fungi
Otu68 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Wallemiomycetes(1.0000),o:Wallemiales(1.0000),f:Wallemiaceae(1.0000),g:Wallemia(1.0000),s:Wallemia_muriae(1.0000) + k:Fungi,p:Basidiomycota,c:Wallemiomycetes,o:Wallemiales,f:Wallemiaceae,g:Wallemia,s:Wallemia_muriae
Otu71 k:Fungi(1.0000),p:Rozellomycota(0.4900),c:Rozellomycota_cls_Incertae_sedis(0.2254),o:GS11(0.0699),f:unidentified(0.0531),g:unidentified(0.0414),s:GS11_sp(0.0128) + k:Fungi
Otu70 k:Fungi(1.0000),p:Rozellomycota(0.6300),c:Rozellomycota_cls_Incertae_sedis(0.3843),o:GS10(0.2267),f:unidentified(0.1542),g:unidentified(0.1126),s:GS10_sp(0.0664) + k:Fungi
Otu72 k:Fungi(1.0000),p:Rozellomycota(0.4700),c:Rozellomycota_cls_Incertae_sedis(0.2162),o:GS11(0.0757),f:unidentified(0.0575),g:unidentified(0.0460),s:GS11_sp(0.0161) + k:Fungi
Otu73 k:Fungi(1.0000),p:Rozellomycota(0.6400),c:unidentified(0.4032),o:unidentified(0.2580),f:unidentified(0.1858),g:unidentified(0.1375),s:Rozellomycota_sp(0.0811) + k:Fungi
Otu74 k:Fungi(0.8900),p:unidentified(0.2581),c:unidentified(0.1161),o:unidentified(0.0523),f:unidentified(0.0287),g:unidentified(0.0193),s:Fungi_sp(0.0054) + k:Fungi
Otu76 k:Fungi(1.0000),p:Rozellomycota(0.5200),c:Rozellomycota_cls_Incertae_sedis(0.2288),o:GS11(0.0549),f:unidentified(0.0423),g:unidentified(0.0338),s:GS11_sp(0.0081) + k:Fungi
Otu75 k:Fungi(1.0000),p:Glomeromycota(0.3600),c:Glomeromycetes(0.1224),o:Diversisporales(0.0269),f:Acaulosporaceae(0.0057),g:Acaulospora(0.0010),s:Acaulospora_sp(0.0001) + k:Fungi
Otu77 k:Fungi(1.0000),p:Chytridiomycota(0.5300),c:unidentified(0.3180),o:unidentified(0.1908),f:unidentified(0.1259),g:unidentified(0.0881),s:Chytridiomycota_sp(0.0450) + k:Fungi
Otu78 k:Fungi(1.0000),p:Rozellomycota(0.2400),c:unidentified(0.0744),o:unidentified(0.0238),f:unidentified(0.0112),g:unidentified(0.0063),s:Rozellomycota_sp(0.0009) + k:Fungi
Otu79 k:Fungi(1.0000),p:Glomeromycota(0.2500),c:Glomeromycetes(0.0600),o:Glomerales(0.0096),f:Glomeraceae(0.0014),g:unidentified(0.0005),s:Glomeraceae_sp(0.0001) + k:Fungi
Otu81 k:Protista(0.1100),p:Cercozoa(0.0121),c:unidentified(0.0019),o:unidentified(0.0003),f:unidentified(0.0001),g:unidentified(0.0001),s:Cercozoa_sp(0.0000) +
Otu82 k:Fungi(1.0000),p:Basidiomycota(0.6000),c:Agaricomycetes(0.2880),o:Agaricales(0.0835),f:unidentified(0.0184),g:unidentified(0.0059),s:Agaricales_sp(0.0004) + k:Fungi
Otu83 k:Fungi(1.0000),p:Ascomycota(0.8300),c:Dothideomycetes(0.4399),o:unidentified(0.3123),f:unidentified(0.2218),g:unidentified(0.1574),s:Dothideomycetes_sp(0.0834) + k:Fungi,p:Ascomycota
Otu84 k:Fungi(1.0000),p:Rozellomycota(0.5700),c:Rozellomycota_cls_Incertae_sedis(0.3192),o:GS10(0.1277),f:unidentified(0.0855),g:unidentified(0.0616),s:GS10_sp(0.0246) + k:Fungi
Otu80 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(1.0000),f:Nectriaceae(1.0000),g:Flagellospora(1.0000),s:Flagellospora_fusarioides(1.0000) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:Nectriaceae,g:Flagellospora,s:Flagellospora_fusarioides
Otu85 k:Fungi(1.0000),p:Rozellomycota(0.4800),c:unidentified(0.2112),o:unidentified(0.0993),f:unidentified(0.0625),g:unidentified(0.0432),s:Rozellomycota_sp(0.0164) + k:Fungi
Otu86 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Saccharomycetes(1.0000),o:Saccharomycetales(1.0000),f:Saccharomycetales_fam_Incertae_sedis(1.0000),g:Candida(1.0000),s:Candida_sake(1.0000) + k:Fungi,p:Ascomycota,c:Saccharomycetes,o:Saccharomycetales,f:Saccharomycetales_fam_Incertae_sedis,g:Candida,s:Candida_sake
Otu87 k:Fungi(1.0000),p:Basidiomycota(0.9000),c:Agaricomycetes(0.8100),o:Thelephorales(0.6804),f:Thelephoraceae(0.5715),g:unidentified(0.2972),s:Thelephoraceae_sp(0.1248) + k:Fungi,p:Basidiomycota,c:Agaricomycetes
Otu88 k:Fungi(0.8000),p:unidentified(0.5120),c:unidentified(0.4301),o:unidentified(0.3613),f:unidentified(0.3035),g:unidentified(0.2579),s:Fungi_sp(0.1651) + k:Fungi
Otu89 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Capnodiales(1.0000),f:Mycosphaerellaceae(1.0000),g:unidentified(0.2300),s:Mycosphaerellaceae_sp(0.0529) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Capnodiales,f:Mycosphaerellaceae
Otu90 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.5300),o:Helotiales(0.2809),f:Helotiaceae(0.1489),g:Articulospora(0.0789),s:Articulospora_sp(0.0418) + k:Fungi,p:Ascomycota
Otu91 k:Fungi(1.0000),p:unidentified(0.8600),c:unidentified(0.7826),o:unidentified(0.7200),f:unidentified(0.6624),g:unidentified(0.6094),s:Fungi_sp(0.5241) + k:Fungi,p:unidentified
Otu92 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Polyporales(0.9900),f:unidentified(0.4752),g:unidentified(0.2376),s:Polyporales_sp(0.1117) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Polyporales
Otu94 k:Fungi(1.0000),p:Rozellomycota(0.5500),c:Rozellomycota_cls_Incertae_sedis(0.2805),o:GS10(0.0785),f:unidentified(0.0668),g:unidentified(0.0574),s:GS10_sp(0.0161) + k:Fungi
Otu93 k:Fungi(1.0000),p:Rozellomycota(0.4800),c:Rozellomycota_cls_Incertae_sedis(0.2208),o:GS10(0.0420),f:unidentified(0.0256),g:unidentified(0.0159),s:GS10_sp(0.0030) + k:Fungi
Otu95 k:Fungi(1.0000),p:Rozellomycota(0.1400),c:Rozellomycota_cls_Incertae_sedis(0.0182),o:GS11(0.0022),f:unidentified(0.0005),g:unidentified(0.0002),s:GS11_sp(0.0000) + k:Fungi
Otu97 k:Fungi(0.9800),p:Rozellomycota(0.4214),c:unidentified(0.1812),o:unidentified(0.0906),f:unidentified(0.0507),g:unidentified(0.0325),s:Rozellomycota_sp(0.0127) + k:Fungi
Otu98 k:Fungi(1.0000),p:unidentified(0.7300),c:unidentified(0.6132),o:unidentified(0.5212),f:unidentified(0.4535),g:unidentified(0.3945),s:Fungi_sp(0.2880) + k:Fungi
Otu99 k:Fungi(1.0000),p:Rozellomycota(0.6700),c:Rozellomycota_cls_Incertae_sedis(0.4355),o:GS10(0.2526),f:unidentified(0.2096),g:unidentified(0.1824),s:GS10_sp(0.1058) + k:Fungi
Otu100 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Cystofilobasidiales(1.0000),f:Cystofilobasidiaceae(1.0000),g:Mrakia(1.0000),s:Mrakia_frigida(1.0000) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Cystofilobasidiales,f:Cystofilobasidiaceae,g:Mrakia,s:Mrakia_frigida
Otu96 k:Fungi(1.0000),p:Rozellomycota(0.5500),c:unidentified(0.2915),o:unidentified(0.1603),f:unidentified(0.1058),g:unidentified(0.0730),s:Rozellomycota_sp(0.0343) + k:Fungi
Otu101 k:Fungi(1.0000),p:Ascomycota(0.9800),c:Leotiomycetes(0.9604),o:Helotiales(0.9412),f:Helotiales_fam_Incertae_sedis(0.9224),g:Calloria(0.9039),s:Calloria_urticae(0.8858) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales,f:Helotiales_fam_Incertae_sedis,g:Calloria,s:Calloria_urticae
Otu103 k:Fungi(1.0000),p:Rozellomycota(0.4400),c:unidentified(0.1760),o:unidentified(0.1109),f:unidentified(0.0920),g:unidentified(0.0810),s:Rozellomycota_sp(0.0300) + k:Fungi
Otu102 k:Fungi(0.9900),p:unidentified(0.5148),c:unidentified(0.3964),o:unidentified(0.3171),f:unidentified(0.2569),g:unidentified(0.2106),s:Fungi_sp(0.1095) + k:Fungi
Otu105 k:Fungi(1.0000),p:unidentified(0.4100),c:unidentified(0.1804),o:unidentified(0.0794),f:unidentified(0.0556),g:unidentified(0.0428),s:Fungi_sp(0.0175) + k:Fungi
Otu104 k:Fungi(1.0000),p:Ascomycota(0.1900),c:Saccharomycetes(0.0152),o:Saccharomycetales(0.0012),f:Saccharomycetales_fam_Incertae_sedis(0.0001),g:Diutina(0.0000),s:Diutina_rugosa(0.0000) + k:Fungi
Otu106 k:Fungi(1.0000),p:Basidiomycota(0.8000),c:Tremellomycetes(0.6400),o:Holtermanniales(0.5120),f:Holtermanniales_fam_Incertae_sedis(0.4096),g:Holtermanniella(0.3277),s:Holtermanniella_takashimae(0.2621) + k:Fungi,p:Basidiomycota
Otu107 k:Fungi(0.9900),p:Rozellomycota(0.4356),c:unidentified(0.1830),o:unidentified(0.0860),f:unidentified(0.0533),g:unidentified(0.0384),s:Rozellomycota_sp(0.0146) + k:Fungi
Otu108 k:Fungi(1.0000),p:Rozellomycota(1.0000),c:unidentified(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Rozellomycota_sp(1.0000) + k:Fungi,p:Rozellomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Rozellomycota_sp
Otu111 k:Fungi(1.0000),p:Rozellomycota(0.9400),c:unidentified(0.9400),o:unidentified(0.9400),f:unidentified(0.9400),g:unidentified(0.9400),s:Rozellomycota_sp(0.8836) + k:Fungi,p:Rozellomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Rozellomycota_sp
Otu110 k:Fungi(1.0000),p:GS19(0.1500),c:unidentified(0.0450),o:unidentified(0.0158),f:unidentified(0.0091),g:unidentified(0.0058),s:GS19_sp(0.0009) + k:Fungi
Otu109 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Russulales(0.9500),f:Bondarzewiaceae(0.9025),g:Heterobasidion(0.8574),s:Heterobasidion_abietinum(0.5659) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Russulales,f:Bondarzewiaceae,g:Heterobasidion
Otu112 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Capnodiales(1.0000),f:Mycosphaerellaceae(1.0000),g:Ramularia(1.0000),s:Ramularia_sp(1.0000) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Capnodiales,f:Mycosphaerellaceae,g:Ramularia,s:Ramularia_sp
Otu114 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Tremellomycetes(0.9801),o:Trichosporonales(0.9409),f:Trichosporonaceae(0.9033),g:Vanrija(0.2800),s:Vanrija_fragicola(0.0868) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Trichosporonales,f:Trichosporonaceae
Otu113 k:Fungi(1.0000),p:Rozellomycota(0.3300),c:Rozellomycota_cls_Incertae_sedis(0.0924),o:GS11(0.0194),f:unidentified(0.0101),g:unidentified(0.0053),s:GS11_sp(0.0011) + k:Fungi
Otu115 k:Fungi(1.0000),p:Basidiomycota(0.7600),c:Tremellomycetes(0.4408),o:Tremellales(0.2468),f:Tremellales_fam_Incertae_sedis(0.0741),g:Derxomyces(0.0222),s:Derxomyces_qinlingensis(0.0029) + k:Fungi
Otu117 k:Fungi(1.0000),p:Rozellomycota(0.6300),c:unidentified(0.3591),o:unidentified(0.2191),f:unidentified(0.1665),g:unidentified(0.1299),s:Rozellomycota_sp(0.0649) + k:Fungi
Otu116 k:Fungi(1.0000),p:unidentified(0.5900),c:unidentified(0.3481),o:unidentified(0.2054),f:unidentified(0.1212),g:unidentified(0.0921),s:Fungi_sp(0.0543) + k:Fungi
Otu118 k:Fungi(1.0000),p:Basidiomycota(0.8600),c:Tremellomycetes(0.6794),o:Tremellales(0.5367),f:Tremellaceae(0.3328),g:Cryptococcus(0.2030),s:Cryptococcus_sp(0.1238) + k:Fungi,p:Basidiomycota
Otu119 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Orbiliomycetes(0.9700),o:Orbiliales(0.9409),f:Orbiliaceae(0.9127),g:Orbilia(0.4198),s:Orbilia_sp(0.1259) + k:Fungi,p:Ascomycota,c:Orbiliomycetes,o:Orbiliales,f:Orbiliaceae
Otu121 k:Fungi(1.0000),p:Chytridiomycota(0.6200),c:Rhizophydiomycetes(0.2480),o:Rhizophydiales(0.0992),f:Rhizophydiaceae(0.0337),g:Rhizophydium(0.0115),s:Rhizophydium_sp(0.0039) + k:Fungi
Otu120 k:Fungi(1.0000),p:Rozellomycota(0.3800),c:Rozellomycota_cls_Incertae_sedis(0.1368),o:GS10(0.0315),f:unidentified(0.0138),g:unidentified(0.0096),s:GS10_sp(0.0022) + k:Fungi
Otu122 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Russulales(1.0000),f:Russulaceae(1.0000),g:unidentified(0.8000),s:Russulaceae_sp(0.6400) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Russulales,f:Russulaceae,g:unidentified
Otu123 k:Fungi(1.0000),p:Chytridiomycota(0.8300),c:unidentified(0.7055),o:unidentified(0.5997),f:unidentified(0.5277),g:unidentified(0.4749),s:Chytridiomycota_sp(0.3942) + k:Fungi,p:Chytridiomycota
Otu125 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Hypocreales_sp(1.0000) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:unidentified,g:unidentified,s:Hypocreales_sp
Otu124 k:Fungi(1.0000),p:Mortierellomycota(1.0000),c:Mortierellomycotina_cls_Incertae_sedis(1.0000),o:Mortierellales(1.0000),f:Mortierellaceae(1.0000),g:Mortierella(1.0000),s:Mortierella_sp(0.9800) + k:Fungi,p:Mortierellomycota,c:Mortierellomycotina_cls_Incertae_sedis,o:Mortierellales,f:Mortierellaceae,g:Mortierella,s:Mortierella_sp
Otu126 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Cystofilobasidiales(1.0000),f:Cystofilobasidiaceae(1.0000),g:Guehomyces(1.0000),s:Guehomyces_pullulans(1.0000) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Cystofilobasidiales,f:Cystofilobasidiaceae,g:Guehomyces,s:Guehomyces_pullulans
Otu128 k:Fungi(1.0000),p:Rozellomycota(0.2300),c:Rozellomycota_cls_Incertae_sedis(0.0506),o:GS02(0.0101),f:unidentified(0.0048),g:unidentified(0.0023),s:GS02_sp(0.0005) + k:Fungi
Otu129 k:Fungi(1.0000),p:Rozellomycota(0.5000),c:Rozellomycota_cls_Incertae_sedis(0.2300),o:GS11(0.0667),f:unidentified(0.0487),g:unidentified(0.0365),s:GS11_sp(0.0106) + k:Fungi
Otu127 k:Fungi(1.0000),p:Basidiomycota(0.9500),c:Tremellomycetes(0.7695),o:Trichosporonales(0.4309),f:Trichosporonaceae(0.2413),g:Cutaneotrichosporon(0.0531),s:Cutaneotrichosporon_cyanovorans(0.0090) + k:Fungi,p:Basidiomycota
Otu131 k:Fungi(1.0000),p:unidentified(0.4100),c:unidentified(0.1804),o:unidentified(0.0848),f:unidentified(0.0483),g:unidentified(0.0285),s:Fungi_sp(0.0117) + k:Fungi
Otu130 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Capnodiales(1.0000),f:Mycosphaerellaceae(1.0000),g:Sphaerulina(0.3400),s:Sphaerulina_rhododendricola(0.1156) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Capnodiales,f:Mycosphaerellaceae
Otu132 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Tremellomycetes(0.9801),o:Trichosporonales(0.9311),f:Trichosporonaceae(0.8845),g:Trichosporon(0.4865),s:Trichosporon_sp(0.2676) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Trichosporonales,f:Trichosporonaceae
Otu133 k:Fungi(1.0000),p:Chytridiomycota(0.6200),c:unidentified(0.3100),o:unidentified(0.1581),f:unidentified(0.0885),g:unidentified(0.0549),s:Chytridiomycota_sp(0.0247) + k:Fungi
Otu134 k:Fungi(1.0000),p:unidentified(0.5300),c:unidentified(0.2862),o:unidentified(0.1545),f:unidentified(0.1252),g:unidentified(0.1077),s:Fungi_sp(0.0571) + k:Fungi
Otu136 k:Protista(0.1000),p:Cercozoa(0.0100),c:unidentified(0.0015),o:unidentified(0.0003),f:unidentified(0.0001),g:unidentified(0.0000),s:Cercozoa_sp(0.0000) +
Otu135 k:Fungi(1.0000),p:Rozellomycota(0.4200),c:unidentified(0.2394),o:unidentified(0.1365),f:unidentified(0.0860),g:unidentified(0.0576),s:Rozellomycota_sp(0.0236) + k:Fungi
Otu138 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Cystofilobasidiales(1.0000),f:Cystofilobasidiaceae(1.0000),g:Itersonilia(1.0000),s:Itersonilia_perplexans(0.8800) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Cystofilobasidiales,f:Cystofilobasidiaceae,g:Itersonilia,s:Itersonilia_perplexans
Otu137 k:Fungi(1.0000),p:Basidiomycota(0.9400),c:Cystobasidiomycetes(0.8084),o:Cystobasidiomycetes_ord_Incertae_sedis(0.6386),f:Buckleyzymaceae(0.4981),g:Buckleyzyma(0.3885),s:Buckleyzyma_aurantiaca(0.3031) + k:Fungi,p:Basidiomycota,c:Cystobasidiomycetes
Otu139 k:Fungi(1.0000),p:Rozellomycota(0.5200),c:unidentified(0.2756),o:unidentified(0.1571),f:unidentified(0.0974),g:unidentified(0.0633),s:Rozellomycota_sp(0.0323) + k:Fungi
Otu140 k:Fungi(1.0000),p:Rozellomycota(0.6900),c:Rozellomycota_cls_Incertae_sedis(0.4485),o:GS10(0.2556),f:unidentified(0.1841),g:unidentified(0.1454),s:GS10_sp(0.0829) + k:Fungi
Otu141 k:Fungi(0.9700),p:GS19(0.0873),c:unidentified(0.0122),o:unidentified(0.0020),f:unidentified(0.0006),g:unidentified(0.0003),s:GS19_sp(0.0000) + k:Fungi
Otu142 k:Fungi(1.0000),p:unidentified(1.0000),c:unidentified(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Fungi_sp(1.0000) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu143 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:Trimorphomycetaceae(0.9900),g:Saitozyma(0.9801),s:Saitozyma_sp(0.8527) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Trimorphomycetaceae,g:Saitozyma,s:Saitozyma_sp
Otu145 k:Fungi(1.0000),p:Chytridiomycota(0.6100),c:unidentified(0.3294),o:unidentified(0.1911),f:unidentified(0.1165),g:unidentified(0.0746),s:Chytridiomycota_sp(0.0403) + k:Fungi
Otu144 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Tremellomycetes(0.9801),o:Tremellales(0.9703),f:Trimorphomycetaceae(0.5725),g:Saitozyma(0.3378),s:Saitozyma_podzolica(0.1959) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales
Otu146 k:Fungi(1.0000),p:unidentified(0.4700),c:unidentified(0.3760),o:unidentified(0.3008),f:unidentified(0.2858),g:unidentified(0.2715),s:Fungi_sp(0.1276) + k:Fungi
Otu147 k:Fungi(1.0000),p:Basidiomycota(0.9100),c:Tremellomycetes(0.7098),o:Holtermanniales(0.3691),f:Holtermanniales_fam_Incertae_sedis(0.1919),g:Holtermanniella(0.0960),s:Holtermanniella_takashimae(0.0480) + k:Fungi,p:Basidiomycota
Otu148 k:Fungi(1.0000),p:Ascomycota(0.7700),c:Sordariomycetes(0.5929),o:Hypocreales(0.4565),f:Hypocreales_fam_Incertae_sedis(0.2739),g:Ilyonectria(0.1644),s:Ilyonectria_mors-panacis(0.0970) + k:Fungi
Otu150 k:Protista(0.1200),p:Cercozoa(0.0144),c:unidentified(0.0032),o:unidentified(0.0007),f:unidentified(0.0003),g:unidentified(0.0001),s:Cercozoa_sp(0.0000) +
Otu149 k:Fungi(1.0000),p:Glomeromycota(0.4500),c:Glomeromycetes(0.1980),o:Glomerales(0.0812),f:Glomeraceae(0.0300),g:unidentified(0.0126),s:Glomeraceae_sp(0.0019) + k:Fungi
Otu151 k:Fungi(1.0000),p:Rozellomycota(0.5100),c:unidentified(0.2397),o:unidentified(0.1198),f:unidentified(0.0899),g:unidentified(0.0701),s:Rozellomycota_sp(0.0266) + k:Fungi
Otu153 k:Fungi(1.0000),p:Rozellomycota(0.4900),c:Rozellomycota_cls_Incertae_sedis(0.2254),o:GS11(0.0902),f:unidentified(0.0550),g:unidentified(0.0341),s:GS11_sp(0.0136) + k:Fungi
Otu152 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(0.9700),o:Cantharellales(0.9409),f:Ceratobasidiaceae(0.9127),g:Ceratobasidium(0.6480),s:Ceratobasidium_sp(0.4601) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Cantharellales,f:Ceratobasidiaceae
Otu154 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Agaricomycetes(0.9801),o:Thelephorales(0.9703),f:Thelephoraceae(0.9509),g:unidentified(0.6181),s:Thelephoraceae_sp(0.3894) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales,f:Thelephoraceae
Otu155 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(0.9900),f:unidentified(0.6435),g:unidentified(0.4247),s:Hypocreales_sp(0.2761) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales
Otu157 k:Fungi(0.9200),p:unidentified(0.6256),c:unidentified(0.4567),o:unidentified(0.3379),f:unidentified(0.2670),g:unidentified(0.2269),s:Fungi_sp(0.1475) + k:Fungi
Otu158 k:Fungi(1.0000),p:Glomeromycota(0.2300),c:Glomeromycetes(0.0460),o:Glomerales(0.0064),f:Glomeraceae(0.0009),g:unidentified(0.0003),s:Glomeraceae_sp(0.0000) + k:Fungi
Otu156 k:Fungi(1.0000),p:Rozellomycota(0.3400),c:Rozellomycota_cls_Incertae_sedis(0.0952),o:GS11(0.0105),f:unidentified(0.0047),g:unidentified(0.0026),s:GS11_sp(0.0003) + k:Fungi
Otu160 k:Fungi(1.0000),p:Rozellomycota(0.5100),c:Rozellomycota_cls_Incertae_sedis(0.2091),o:GS11(0.0439),f:unidentified(0.0303),g:unidentified(0.0233),s:GS11_sp(0.0049) + k:Fungi
Otu159 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(1.0000),f:Nectriaceae(1.0000),g:Campylocarpon(0.9900),s:Campylocarpon_pseudofasciculare(0.8118) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:Nectriaceae,g:Campylocarpon,s:Campylocarpon_pseudofasciculare
Otu162 k:Fungi(1.0000),p:Rozellomycota(0.6500),c:Rozellomycota_cls_Incertae_sedis(0.3965),o:GS10(0.2220),f:unidentified(0.1643),g:unidentified(0.1298),s:GS10_sp(0.0727) + k:Fungi
Otu161 k:Fungi(1.0000),p:Rozellomycota(0.4900),c:unidentified(0.2401),o:unidentified(0.1297),f:unidentified(0.0856),g:unidentified(0.0599),s:Rozellomycota_sp(0.0252) + k:Fungi
Otu163 k:Fungi(1.0000),p:Rozellomycota(0.4900),c:unidentified(0.2205),o:unidentified(0.1169),f:unidentified(0.0725),g:unidentified(0.0485),s:Rozellomycota_sp(0.0199) + k:Fungi
Otu164 k:Fungi(1.0000),p:Chytridiomycota(0.7400),c:unidentified(0.4144),o:unidentified(0.2486),f:unidentified(0.1616),g:unidentified(0.1083),s:Chytridiomycota_sp(0.0585) + k:Fungi
Otu166 k:Fungi(0.9900),p:Rozellomycota(0.5049),c:unidentified(0.2474),o:unidentified(0.1336),f:unidentified(0.0855),g:unidentified(0.0607),s:Rozellomycota_sp(0.0267) + k:Fungi
Otu165 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Pleosporales(1.0000),f:Phaeosphaeriaceae(1.0000),g:unidentified(1.0000),s:Phaeosphaeriaceae_sp(1.0000) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales,f:Phaeosphaeriaceae,g:unidentified,s:Phaeosphaeriaceae_sp
Otu168 k:Fungi(0.9800),p:unidentified(0.2352),c:unidentified(0.0612),o:unidentified(0.0177),f:unidentified(0.0080),g:unidentified(0.0045),s:Fungi_sp(0.0011) + k:Fungi
Otu167 k:Fungi(1.0000),p:Basidiomycota(0.9800),c:Tremellomycetes(0.9408),o:Tremellales(0.8938),f:Tremellaceae(0.8401),g:Papiliotrema(0.3613),s:Papiliotrema_flavescens(0.1373) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Tremellaceae
Otu169 k:Fungi(1.0000),p:Rozellomycota(0.4100),c:unidentified(0.2706),o:unidentified(0.1786),f:unidentified(0.1286),g:unidentified(0.1016),s:Rozellomycota_sp(0.0417) + k:Fungi
Otu170 k:Fungi(1.0000),p:Chytridiomycota(0.1500),c:unidentified(0.0360),o:unidentified(0.0086),f:unidentified(0.0042),g:unidentified(0.0022),s:Chytridiomycota_sp(0.0003) + k:Fungi
Otu172 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(1.0000),o:Helotiales(1.0000),f:Hyaloscyphaceae(0.9600),g:unidentified(0.9600),s:Hyaloscyphaceae_sp(0.9216) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales,f:Hyaloscyphaceae,g:unidentified,s:Hyaloscyphaceae_sp
Otu171 k:Fungi(1.0000),p:Rozellomycota(0.4000),c:unidentified(0.1320),o:unidentified(0.0502),f:unidentified(0.0316),g:unidentified(0.0212),s:Rozellomycota_sp(0.0051) + k:Fungi
Otu173 k:Fungi(1.0000),p:unidentified(0.3600),c:unidentified(0.2016),o:unidentified(0.1129),f:unidentified(0.0689),g:unidentified(0.0482),s:Fungi_sp(0.0174) + k:Fungi
Otu174 k:Fungi(1.0000),p:Rozellomycota(0.8600),c:unidentified(0.8342),o:unidentified(0.8092),f:unidentified(0.8011),g:unidentified(0.7931),s:Rozellomycota_sp(0.6662) + k:Fungi,p:Rozellomycota,c:unidentified,o:unidentified,f:unidentified
Otu176 k:Fungi(1.0000),p:unidentified(0.3400),c:unidentified(0.1156),o:unidentified(0.0416),f:unidentified(0.0225),g:unidentified(0.0128),s:Fungi_sp(0.0044) + k:Fungi
Otu175 k:Fungi(1.0000),p:Rozellomycota(0.5000),c:unidentified(0.2000),o:unidentified(0.1040),f:unidentified(0.0780),g:unidentified(0.0624),s:Rozellomycota_sp(0.0206) + k:Fungi
Otu178 k:Fungi(0.9900),p:Rozellomycota(0.4950),c:Rozellomycota_cls_Incertae_sedis(0.2128),o:GS11(0.0490),f:unidentified(0.0333),g:unidentified(0.0226),s:GS11_sp(0.0052) + k:Fungi
Otu177 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.5900),o:Helotiales(0.3481),f:Helotiales_fam_Incertae_sedis(0.1984),g:Spirosphaera(0.1131),s:Spirosphaera_floriformis(0.0645) + k:Fungi,p:Ascomycota
Otu179 k:Fungi(1.0000),p:Rozellomycota(0.7700),c:unidentified(0.5775),o:unidentified(0.4331),f:unidentified(0.3552),g:unidentified(0.2983),s:Rozellomycota_sp(0.2118) + k:Fungi
Otu181 k:Fungi(0.9600),p:Blastocladiomycota(0.0864),c:Blastocladiomycetes(0.0078),o:Blastocladiales(0.0007),f:Blastocladiaceae(0.0001),g:Allomyces(0.0000),s:Allomyces_arbusculus(0.0000) + k:Fungi
Otu180 k:Fungi(1.0000),p:Chytridiomycota(0.8000),c:unidentified(0.6720),o:unidentified(0.5846),f:unidentified(0.5203),g:unidentified(0.4787),s:Chytridiomycota_sp(0.3590) + k:Fungi,p:Chytridiomycota
Otu182 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Pezizomycetes(1.0000),o:Pezizales(1.0000),f:Pyronemataceae(0.9900),g:Scutellinia(0.9207),s:Scutellinia_scutellata(0.6629) + k:Fungi,p:Ascomycota,c:Pezizomycetes,o:Pezizales,f:Pyronemataceae,g:Scutellinia
Otu183 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Tremellomycetes(0.9801),o:Cystofilobasidiales(0.9703),f:Cystofilobasidiales_fam_Incertae_sedis(0.9509),g:Mrakiella(0.9319),s:Mrakiella_aquatica(0.9132) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Cystofilobasidiales,f:Cystofilobasidiales_fam_Incertae_sedis,g:Mrakiella,s:Mrakiella_aquatica
Otu184 k:Fungi(1.0000),p:Rozellomycota(0.2600),c:Rozellomycota_cls_Incertae_sedis(0.0598),o:GS11(0.0090),f:unidentified(0.0044),g:unidentified(0.0022),s:GS11_sp(0.0003) + k:Fungi
Otu186 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Pucciniomycetes(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Pucciniomycetes_sp(1.0000) + k:Fungi,p:Basidiomycota,c:Pucciniomycetes,o:unidentified,f:unidentified,g:unidentified,s:Pucciniomycetes_sp
Otu187 k:Fungi(1.0000),p:Rozellomycota(0.5300),c:unidentified(0.5088),o:unidentified(0.4884),f:unidentified(0.4884),g:unidentified(0.4884),s:Rozellomycota_sp(0.2393) + k:Fungi
Otu185 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(0.9700),o:Tremellales(0.9215),f:Bulleribasidiaceae(0.8109),g:Vishniacozyma(0.7136),s:Vishniacozyma_dimennae(0.5566) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Bulleribasidiaceae
Otu188 k:Protozoa(0.2100),p:Microsporidia(0.0441),c:Microsporea(0.0093),o:Microsporida(0.0019),f:Microsporida_fam_Incertae_sedis(0.0004),g:Paramicrosporidium(0.0001),s:Paramicrosporidium_saccamoebae(0.0000) +
Otu189 k:Fungi(0.9900),p:unidentified(0.1485),c:unidentified(0.0386),o:unidentified(0.0108),f:unidentified(0.0049),g:unidentified(0.0026),s:Fungi_sp(0.0004) + k:Fungi
Otu190 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Cystofilobasidiales(1.0000),f:Cystofilobasidiaceae(1.0000),g:Cystofilobasidium(1.0000),s:Cystofilobasidium_macerans(0.7500) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Cystofilobasidiales,f:Cystofilobasidiaceae,g:Cystofilobasidium
Otu192 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Russulales(1.0000),f:Russulaceae(1.0000),g:Russula(0.9300),s:Russula_crustosa(0.4743) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Russulales,f:Russulaceae,g:Russula
Otu191 k:Fungi(1.0000),p:Ascomycota(0.8000),c:Dothideomycetes(0.3280),o:Pleosporales(0.0820),f:unidentified(0.0295),g:unidentified(0.0112),s:Pleosporales_sp(0.0010) + k:Fungi,p:Ascomycota
Otu193 k:Fungi(1.0000),p:Ascomycota(0.7200),c:Sordariomycetes(0.5112),o:Hypocreales(0.3630),f:Nectriaceae(0.2577),g:Fusarium(0.1727),s:Fusarium_sp(0.1157) + k:Fungi
Otu194 k:Fungi(0.9900),p:Rozellomycota(0.2574),c:Rozellomycota_cls_Incertae_sedis(0.0618),o:GS10(0.0074),f:unidentified(0.0029),g:unidentified(0.0014),s:GS10_sp(0.0002) + k:Fungi
Otu196 k:Fungi(1.0000),p:unidentified(0.5200),c:unidentified(0.2808),o:unidentified(0.1516),f:unidentified(0.1077),g:unidentified(0.0829),s:Fungi_sp(0.0431) + k:Fungi
Otu195 k:Fungi(1.0000),p:Ascomycota(0.9400),c:Dothideomycetes(0.7708),o:Pleosporales(0.5010),f:Leptosphaeriaceae(0.2906),g:Coniothyrium(0.1220),s:Coniothyrium_dolichi(0.0513) + k:Fungi,p:Ascomycota
Otu197 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(0.8500),o:Sordariales(0.4505),f:unidentified(0.2793),g:unidentified(0.1843),s:Sordariales_sp(0.0885) + k:Fungi,p:Ascomycota,c:Sordariomycetes
Otu198 k:Fungi(1.0000),p:unidentified(0.4300),c:unidentified(0.2193),o:unidentified(0.1184),f:unidentified(0.0900),g:unidentified(0.0747),s:Fungi_sp(0.0321) + k:Fungi
Otu201 k:Fungi(1.0000),p:unidentified(0.4200),c:unidentified(0.2856),o:unidentified(0.1942),f:unidentified(0.1476),g:unidentified(0.1151),s:Fungi_sp(0.0484) + k:Fungi
Otu200 k:Fungi(1.0000),p:Rozellomycota(0.3600),c:unidentified(0.1512),o:unidentified(0.0665),f:unidentified(0.0306),g:unidentified(0.0202),s:Rozellomycota_sp(0.0073) + k:Fungi
Otu199 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Trichosporonales(0.9900),f:Trichosporonaceae(0.9801),g:Cutaneotrichosporon(0.8037),s:Cutaneotrichosporon_cyanovorans(0.3054) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Trichosporonales,f:Trichosporonaceae,g:Cutaneotrichosporon
Otu202 k:Fungi(0.9900),p:unidentified(0.7227),c:unidentified(0.5493),o:unidentified(0.4229),f:unidentified(0.3341),g:unidentified(0.2740),s:Fungi_sp(0.2000) + k:Fungi
Otu203 k:Fungi(1.0000),p:Rozellomycota(0.4800),c:unidentified(0.2592),o:unidentified(0.1607),f:unidentified(0.1173),g:unidentified(0.0915),s:Rozellomycota_sp(0.0375) + k:Fungi
Otu204 k:Fungi(1.0000),p:Rozellomycota(0.6100),c:Rozellomycota_cls_Incertae_sedis(0.3111),o:GS11(0.0747),f:unidentified(0.0538),g:unidentified(0.0409),s:GS11_sp(0.0098) + k:Fungi
Otu206 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Sordariomycetes(0.9801),o:Hypocreales(0.9703),f:unidentified(0.8539),g:unidentified(0.7514),s:Hypocreales_sp(0.6537) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:unidentified
Otu205 k:Fungi(1.0000),p:Rozellomycota(0.4600),c:Rozellomycota_cls_Incertae_sedis(0.1932),o:GS10(0.0580),f:unidentified(0.0307),g:unidentified(0.0175),s:GS10_sp(0.0053) + k:Fungi
Otu207 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Pleosporales(1.0000),f:Pleosporaceae(0.7100),g:Alternaria(0.5041),s:Alternaria_sp(0.3529) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales
Otu208 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Capnodiales(0.8000),f:Mycosphaerellaceae(0.5600),g:Cercospora(0.1176),s:Cercospora_coniogrammes(0.0247) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Capnodiales
Otu209 k:Protozoa(0.3900),p:Microsporidia(0.1521),c:Microsporea(0.0593),o:Microsporida(0.0231),f:Microsporida_fam_Incertae_sedis(0.0090),g:Paramicrosporidium(0.0035),s:Paramicrosporidium_saccamoebae(0.0014) +
Otu212 k:Fungi(1.0000),p:Rozellomycota(0.6200),c:Rozellomycota_cls_Incertae_sedis(0.3658),o:GS10(0.2048),f:unidentified(0.1413),g:unidentified(0.1004),s:GS10_sp(0.0562) + k:Fungi
Otu211 k:Fungi(1.0000),p:Basidiomycota(0.7700),c:Tremellomycetes(0.3080),o:Tremellales(0.1232),f:Tremellaceae(0.0357),g:Cryptococcus(0.0068),s:Cryptococcus_sp(0.0013) + k:Fungi
Otu210 k:Fungi(1.0000),p:Rozellomycota(0.5200),c:Rozellomycota_cls_Incertae_sedis(0.2288),o:GS11(0.0549),f:unidentified(0.0329),g:unidentified(0.0214),s:GS11_sp(0.0051) + k:Fungi
Otu213 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Capnodiales(0.9200),f:Mycosphaerellaceae(0.8464),g:Ramularia(0.7194),s:Ramularia_proteae(0.2590) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Capnodiales,f:Mycosphaerellaceae
Otu214 k:Fungi(1.0000),p:Rozellomycota(0.3200),c:Rozellomycota_cls_Incertae_sedis(0.0992),o:GS10(0.0218),f:unidentified(0.0096),g:unidentified(0.0051),s:GS10_sp(0.0011) + k:Fungi
Otu215 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Eurotiomycetes(0.9800),o:Chaetothyriales(0.9604),f:Herpotrichiellaceae(0.9412),g:Exophiala(0.9224),s:Exophiala_sp(0.9039) + k:Fungi,p:Ascomycota,c:Eurotiomycetes,o:Chaetothyriales,f:Herpotrichiellaceae,g:Exophiala,s:Exophiala_sp
Otu217 k:Fungi(1.0000),p:Glomeromycota(0.3100),c:Glomeromycetes(0.0961),o:Glomerales(0.0154),f:Glomeraceae(0.0023),g:unidentified(0.0011),s:Glomeraceae_sp(0.0001) + k:Fungi
Otu218 k:Fungi(1.0000),p:unidentified(0.5700),c:unidentified(0.3363),o:unidentified(0.2018),f:unidentified(0.1412),g:unidentified(0.1045),s:Fungi_sp(0.0596) + k:Fungi
Otu216 k:Fungi(1.0000),p:Rozellomycota(0.4400),c:Rozellomycota_cls_Incertae_sedis(0.1628),o:GS10(0.0326),f:unidentified(0.0163),g:unidentified(0.0090),s:GS10_sp(0.0018) + k:Fungi
Otu219 k:Fungi(1.0000),p:unidentified(0.1700),c:unidentified(0.0391),o:unidentified(0.0098),f:unidentified(0.0042),g:unidentified(0.0020),s:Fungi_sp(0.0003) + k:Fungi
Otu220 k:Fungi(1.0000),p:unidentified(0.4200),c:unidentified(0.2730),o:unidentified(0.1775),f:unidentified(0.1278),g:unidentified(0.0945),s:Fungi_sp(0.0397) + k:Fungi
Otu221 k:Fungi(1.0000),p:Ascomycota(0.8800),c:Sordariomycetes(0.7744),o:unidentified(0.4724),f:unidentified(0.2976),g:unidentified(0.1905),s:Sordariomycetes_sp(0.0933) + k:Fungi,p:Ascomycota
Otu222 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Eurotiomycetes(1.0000),o:Eurotiales(1.0000),f:Trichocomaceae(1.0000),g:unidentified(0.7900),s:Trichocomaceae_sp(0.6241) + k:Fungi,p:Ascomycota,c:Eurotiomycetes,o:Eurotiales,f:Trichocomaceae
Otu223 k:Fungi(1.0000),p:Basidiomycota(0.4900),c:Tremellomycetes(0.1470),o:unidentified(0.0367),f:unidentified(0.0121),g:unidentified(0.0058),s:Tremellomycetes_sp(0.0007) + k:Fungi
Otu224 k:Fungi(1.0000),p:Rozellomycota(0.5500),c:unidentified(0.2805),o:unidentified(0.1487),f:unidentified(0.1130),g:unidentified(0.0915),s:Rozellomycota_sp(0.0348) + k:Fungi
Otu226 k:Fungi(1.0000),p:unidentified(0.4200),c:unidentified(0.1806),o:unidentified(0.0795),f:unidentified(0.0532),g:unidentified(0.0394),s:Fungi_sp(0.0165) + k:Fungi
Otu225 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Pleosporales(0.9100),f:Montagnulaceae(0.8281),g:Paraphaeosphaeria(0.7453),s:Paraphaeosphaeria_sardoa(0.4174) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales,f:Montagnulaceae
Otu228 k:Fungi(1.0000),p:unidentified(0.5400),c:unidentified(0.3510),o:unidentified(0.2317),f:unidentified(0.1714),g:unidentified(0.1337),s:Fungi_sp(0.0722) + k:Fungi
Otu227 k:Fungi(1.0000),p:Basidiomycota(0.9800),c:Tremellomycetes(0.9604),o:Trichosporonales(0.9316),f:Trichosporonaceae(0.9036),g:unidentified(0.5422),s:Trichosporonaceae_sp(0.3199) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Trichosporonales,f:Trichosporonaceae
Otu230 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(0.9900),o:Xylariales(0.8910),f:Amphisphaeriaceae(0.7841),g:Neopestalotiopsis(0.6586),s:Neopestalotiopsis_mesopotamica(0.1976) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Xylariales
Otu231 k:Fungi(1.0000),p:Rozellomycota(0.5200),c:Rozellomycota_cls_Incertae_sedis(0.2340),o:GS11(0.0585),f:unidentified(0.0456),g:unidentified(0.0360),s:GS11_sp(0.0090) + k:Fungi
Otu229 k:Fungi(1.0000),p:Basidiomycota(0.9300),c:Agaricomycetes(0.8370),o:Boletales(0.5189),f:Sclerodermataceae(0.2439),g:Scleroderma(0.1146),s:Scleroderma_areolatum(0.0436) + k:Fungi,p:Basidiomycota,c:Agaricomycetes
Otu232 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Xylariales(1.0000),f:Xylariales_fam_Incertae_sedis(1.0000),g:Microdochium(1.0000),s:Microdochium_phragmitis(0.6200) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Xylariales,f:Xylariales_fam_Incertae_sedis,g:Microdochium
Otu233 k:Fungi(1.0000),p:Rozellomycota(0.4000),c:Rozellomycota_cls_Incertae_sedis(0.1400),o:GS11(0.0434),f:unidentified(0.0308),g:unidentified(0.0228),s:GS11_sp(0.0071) + k:Fungi
Otu234 k:Fungi(1.0000),p:Ascomycota(0.9900),c:unidentified(0.9801),o:unidentified(0.9703),f:unidentified(0.9606),g:unidentified(0.9606),s:Ascomycota_sp(0.9414) + k:Fungi,p:Ascomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Ascomycota_sp
Otu236 k:Fungi(1.0000),p:Ascomycota(0.9600),c:Dothideomycetes(0.7584),o:Pleosporales(0.5536),f:Lentitheciaceae(0.3488),g:Murilentithecium(0.1116),s:Murilentithecium_clematidis(0.0357) + k:Fungi,p:Ascomycota
Otu235 k:Fungi(1.0000),p:Ascomycota(0.9800),c:Pezizomycotina_cls_Incertae_sedis(0.8232),o:Pezizomycotina_ord_Incertae_sedis(0.6915),f:Pezizomycotina_fam_Incertae_sedis(0.5808),g:Chalara(0.4879),s:Chalara_sp(0.4001) + k:Fungi,p:Ascomycota,c:Pezizomycotina_cls_Incertae_sedis
Otu237 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.8900),o:Helotiales(0.7832),f:Hyaloscyphaceae(0.6579),g:Mycoarthris(0.5000),s:Mycoarthris_corallina(0.3800) + k:Fungi,p:Ascomycota,c:Leotiomycetes
Otu238 k:Fungi(1.0000),p:Ascomycota(0.9600),c:Dothideomycetes(0.8832),o:Pleosporales(0.8125),f:Leptosphaeriaceae(0.7232),g:Leptosphaeria(0.6436),s:Leptosphaeria_sp(0.4441) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales
Otu239 k:Fungi(1.0000),p:Basidiomycota(0.9700),c:Agaricomycetes(0.9409),o:Sebacinales(0.9127),f:Serendipitaceae(0.4381),g:unidentified(0.4162),s:Serendipitaceae_sp(0.1790) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Sebacinales
Otu241 k:Fungi(1.0000),p:Basidiomycota(0.9000),c:Cystobasidiomycetes(0.6210),o:Cystobasidiomycetes_ord_Incertae_sedis(0.4285),f:Symmetrosporaceae(0.2957),g:Symmetrospora(0.2040),s:Symmetrospora_coprosmae(0.1387) + k:Fungi,p:Basidiomycota
Otu240 k:Fungi(1.0000),p:Rozellomycota(0.5800),c:unidentified(0.4292),o:unidentified(0.3176),f:unidentified(0.2477),g:unidentified(0.2056),s:Rozellomycota_sp(0.1151) + k:Fungi
Otu242 k:Fungi(1.0000),p:Rozellomycota(0.6500),c:unidentified(0.3640),o:unidentified(0.2220),f:unidentified(0.1754),g:unidentified(0.1526),s:Rozellomycota_sp(0.0748) + k:Fungi
Otu243 k:Fungi(1.0000),p:Rozellomycota(0.7900),c:Rozellomycota_cls_Incertae_sedis(0.6083),o:GS11(0.4623),f:unidentified(0.4022),g:unidentified(0.3620),s:GS11_sp(0.2751) + k:Fungi
Otu244 k:Fungi(1.0000),p:Rozellomycota(0.4600),c:Rozellomycota_cls_Incertae_sedis(0.1380),o:GS11(0.0386),f:unidentified(0.0213),g:unidentified(0.0130),s:GS11_sp(0.0036) + k:Fungi
Otu246 k:Fungi(1.0000),p:Rozellomycota(0.2600),c:Rozellomycota_cls_Incertae_sedis(0.0572),o:GS11(0.0092),f:unidentified(0.0038),g:unidentified(0.0019),s:GS11_sp(0.0003) + k:Fungi
Otu247 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Sebacinales(1.0000),f:Sebacinaceae(0.9600),g:unidentified(0.5184),s:Sebacinaceae_sp(0.2592) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Sebacinales,f:Sebacinaceae
Otu248 k:Fungi(1.0000),p:Rozellomycota(0.6200),c:unidentified(0.3596),o:unidentified(0.2158),f:unidentified(0.1575),g:unidentified(0.1213),s:Rozellomycota_sp(0.0631) + k:Fungi
Otu249 k:Fungi(1.0000),p:Chytridiomycota(0.6500),c:unidentified(0.2080),o:unidentified(0.0770),f:unidentified(0.0346),g:unidentified(0.0173),s:Chytridiomycota_sp(0.0055) + k:Fungi
Otu250 k:Fungi(1.0000),p:Basidiomycota(0.6900),c:Tremellomycetes(0.4761),o:Filobasidiales(0.2619),f:Piskurozymaceae(0.1440),g:Solicoccozyma(0.0792),s:Solicoccozyma_terrea(0.0269) + k:Fungi
Otu245 k:Fungi(1.0000),p:Basidiomycota(0.6900),c:Agaricomycetes(0.4347),o:Sebacinales(0.1826),f:unidentified(0.0383),g:unidentified(0.0161),s:Sebacinales_sp(0.0021) + k:Fungi
Otu251 k:Fungi(0.9800),p:Rozellomycota(0.5684),c:unidentified(0.3183),o:unidentified(0.1973),f:unidentified(0.1362),g:unidentified(0.0994),s:Rozellomycota_sp(0.0547) + k:Fungi
Otu252 k:Fungi(1.0000),p:unidentified(0.4200),c:unidentified(0.1806),o:unidentified(0.0795),f:unidentified(0.0532),g:unidentified(0.0362),s:Fungi_sp(0.0152) + k:Fungi
Otu253 k:Fungi(1.0000),p:unidentified(0.6500),c:unidentified(0.4225),o:unidentified(0.2746),f:unidentified(0.2197),g:unidentified(0.1867),s:Fungi_sp(0.1214) + k:Fungi
Otu254 k:Fungi(1.0000),p:Rozellomycota(0.6500),c:unidentified(0.6435),o:unidentified(0.6371),f:unidentified(0.6371),g:unidentified(0.6371),s:Rozellomycota_sp(0.4077) + k:Fungi
Otu255 k:Fungi(1.0000),p:Rozellomycota(0.4200),c:unidentified(0.1680),o:unidentified(0.0706),f:unidentified(0.0423),g:unidentified(0.0284),s:Rozellomycota_sp(0.0085) + k:Fungi
Otu256 k:Fungi(1.0000),p:Rozellomycota(0.3600),c:unidentified(0.1872),o:unidentified(0.0992),f:unidentified(0.0685),g:unidentified(0.0520),s:Rozellomycota_sp(0.0146) + k:Fungi
Otu257 k:Fungi(1.0000),p:Chytridiomycota(0.3900),c:unidentified(0.2301),o:unidentified(0.1404),f:unidentified(0.0912),g:unidentified(0.0630),s:Chytridiomycota_sp(0.0239) + k:Fungi
Otu258 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Thelephorales(1.0000),f:Thelephoraceae(1.0000),g:unidentified(0.6900),s:Thelephoraceae_sp(0.4761) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales,f:Thelephoraceae
Otu259 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.9700),o:unidentified(0.8633),f:unidentified(0.7683),g:unidentified(0.6838),s:Leotiomycetes_sp(0.5881) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:unidentified
Otu260 k:Fungi(1.0000),p:Ascomycota(0.9400),c:Leotiomycetes(0.7896),o:Helotiales(0.5448),f:unidentified(0.3378),g:unidentified(0.2398),s:Helotiales_sp(0.1127) + k:Fungi,p:Ascomycota
Otu261 k:Fungi(1.0000),p:Rozellomycota(0.9800),c:Rozellomycota_cls_Incertae_sedis(0.9604),o:GS11(0.9412),f:unidentified(0.9318),g:unidentified(0.9225),s:GS11_sp(0.9040) + k:Fungi,p:Rozellomycota,c:Rozellomycota_cls_Incertae_sedis,o:GS11,f:unidentified,g:unidentified,s:GS11_sp
Otu262 k:Fungi(1.0000),p:Rozellomycota(0.1600),c:unidentified(0.0304),o:unidentified(0.0076),f:unidentified(0.0032),g:unidentified(0.0018),s:Rozellomycota_sp(0.0001) + k:Fungi
Otu263 k:Fungi(1.0000),p:Chytridiomycota(1.0000),c:Chytridiomycetes(0.9900),o:unidentified(0.9900),f:unidentified(0.9900),g:unidentified(0.9900),s:Chytridiomycetes_sp(0.9801) + k:Fungi,p:Chytridiomycota,c:Chytridiomycetes,o:unidentified,f:unidentified,g:unidentified,s:Chytridiomycetes_sp
Otu265 k:Fungi(1.0000),p:Rozellomycota(0.7500),c:Rozellomycota_cls_Incertae_sedis(0.5550),o:GS11(0.4107),f:unidentified(0.3327),g:unidentified(0.2728),s:GS11_sp(0.2019) + k:Fungi
Otu264 k:Fungi(1.0000),p:unidentified(0.9900),c:unidentified(0.9900),o:unidentified(0.9900),f:unidentified(0.9900),g:unidentified(0.9900),s:Fungi_sp(0.9801) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu267 k:Fungi(1.0000),p:Rozellomycota(0.5900),c:Rozellomycota_cls_Incertae_sedis(0.2714),o:GS11(0.0624),f:unidentified(0.0468),g:unidentified(0.0365),s:GS11_sp(0.0084) + k:Fungi
Otu266 k:Fungi(1.0000),p:unidentified(0.5800),c:unidentified(0.3712),o:unidentified(0.2450),f:unidentified(0.1984),g:unidentified(0.1647),s:Fungi_sp(0.0955) + k:Fungi
Otu268 k:Fungi(1.0000),p:Rozellomycota(0.5900),c:unidentified(0.3540),o:unidentified(0.2124),f:unidentified(0.1381),g:unidentified(0.0939),s:Rozellomycota_sp(0.0526) + k:Fungi
Otu269 k:Fungi(1.0000),p:Basidiomycota(0.6600),c:Tremellomycetes(0.1056),o:Tremellales(0.0158),f:Tremellales_fam_Incertae_sedis(0.0021),g:Derxomyces(0.0003),s:Derxomyces_wuzhishanensis(0.0000) + k:Fungi
Otu271 k:Fungi(1.0000),p:Glomeromycota(0.3500),c:Glomeromycetes(0.1225),o:Archaeosporales(0.0135),f:Archaeosporaceae(0.0011),g:Palaeospora(0.0001),s:Palaeospora_spainiae(0.0000) + k:Fungi
Otu270 k:Fungi(1.0000),p:Ascomycota(1.0000),c:unidentified(0.6200),o:unidentified(0.3844),f:unidentified(0.2537),g:unidentified(0.2309),s:Ascomycota_sp(0.1431) + k:Fungi,p:Ascomycota
Otu272 k:Fungi(1.0000),p:Rozellomycota(0.5000),c:Rozellomycota_cls_Incertae_sedis(0.2100),o:GS11(0.0441),f:unidentified(0.0304),g:unidentified(0.0228),s:GS11_sp(0.0048) + k:Fungi
Otu275 k:Fungi(1.0000),p:unidentified(0.3700),c:unidentified(0.1517),o:unidentified(0.0622),f:unidentified(0.0386),g:unidentified(0.0262),s:Fungi_sp(0.0097) + k:Fungi
Otu274 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Thelephorales(0.9900),f:Thelephoraceae(0.9306),g:unidentified(0.4653),s:Thelephoraceae_sp(0.2047) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales,f:Thelephoraceae
Otu273 k:Fungi(1.0000),p:unidentified(0.3300),c:unidentified(0.1089),o:unidentified(0.0359),f:unidentified(0.0147),g:unidentified(0.0066),s:Fungi_sp(0.0022) + k:Fungi
Otu276 k:Fungi(1.0000),p:Rozellomycota(0.4400),c:Rozellomycota_cls_Incertae_sedis(0.1628),o:GS07(0.0277),f:unidentified(0.0147),g:unidentified(0.0085),s:GS07_sp(0.0014) + k:Fungi
Otu278 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(0.9900),o:Trichosporonales(0.9801),f:Trichosporonaceae(0.9703),g:Trichosporon(0.9218),s:Trichosporon_sp(0.4517) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Trichosporonales,f:Trichosporonaceae,g:Trichosporon
Otu277 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Microbotryomycetes(1.0000),o:Leucosporidiales(0.9600),f:Leucosporidiaceae(0.9120),g:Leucosporidium(0.8664),s:Leucosporidium_sp(0.8231) + k:Fungi,p:Basidiomycota,c:Microbotryomycetes,o:Leucosporidiales,f:Leucosporidiaceae,g:Leucosporidium,s:Leucosporidium_sp
Otu279 k:Fungi(1.0000),p:unidentified(1.0000),c:unidentified(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Fungi_sp(1.0000) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu280 k:Fungi(1.0000),p:Rozellomycota(0.5900),c:unidentified(0.4071),o:unidentified(0.2890),f:unidentified(0.2226),g:unidentified(0.1803),s:Rozellomycota_sp(0.1010) + k:Fungi
Otu281 k:Fungi(1.0000),p:Basidiomycota(0.9800),c:Tremellomycetes(0.9604),o:Filobasidiales(0.9412),f:Piskurozymaceae(0.9224),g:Solicoccozyma(0.9039),s:Solicoccozyma_terricola(0.8858) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Filobasidiales,f:Piskurozymaceae,g:Solicoccozyma,s:Solicoccozyma_terricola
Otu282 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Tremellomycetes(0.9801),o:Tremellales(0.9703),f:Tremellaceae(0.9606),g:Naganishia(0.6532),s:Naganishia_adeliensis(0.4311) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Tremellaceae
Otu283 k:Fungi(1.0000),p:unidentified(0.9600),c:unidentified(0.9216),o:unidentified(0.8847),f:unidentified(0.8847),g:unidentified(0.8847),s:Fungi_sp(0.8493) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu284 k:Fungi(1.0000),p:Ascomycota(0.9400),c:Dothideomycetes(0.8648),o:Pleosporales(0.7264),f:unidentified(0.5376),g:unidentified(0.4516),s:Pleosporales_sp(0.2709) + k:Fungi,p:Ascomycota,c:Dothideomycetes
Otu285 k:Fungi(1.0000),p:Basidiomycota(0.9700),c:Tremellomycetes(0.9118),o:Tremellales(0.8571),f:Trimorphomycetaceae(0.7971),g:Saitozyma(0.7413),s:Saitozyma_sp(0.6672) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales
Otu287 k:Fungi(0.9900),p:Entorrhizomycota(0.0594),c:Entorrhizomycota_cls_Incertae_sedis(0.0036),o:Branch04(0.0002),f:unidentified(0.0000),g:unidentified(0.0000),s:Branch04_sp(0.0000) + k:Fungi
Otu286 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.9500),o:Helotiales(0.6460),f:Dermateaceae(0.1873),g:unidentified(0.0843),s:Dermateaceae_sp(0.0211) + k:Fungi,p:Ascomycota,c:Leotiomycetes
Otu288 k:Fungi(1.0000),p:Ascomycota(0.7500),c:Dothideomycetes(0.3750),o:Pleosporales(0.1575),f:unidentified(0.0851),g:unidentified(0.0485),s:Pleosporales_sp(0.0121) + k:Fungi
Otu289 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Pleosporales(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Pleosporales_sp(1.0000) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales,f:unidentified,g:unidentified,s:Pleosporales_sp
Otu290 k:Fungi(1.0000),p:Rozellomycota(0.6400),c:Rozellomycota_cls_Incertae_sedis(0.3840),o:GS10(0.1766),f:unidentified(0.1325),g:unidentified(0.1047),s:GS10_sp(0.0481) + k:Fungi
Otu291 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(1.0000),o:Helotiales(0.9900),f:unidentified(0.4356),g:unidentified(0.3311),s:Helotiales_sp(0.1457) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales
Otu292 k:Fungi(1.0000),p:Ascomycota(0.9300),c:Eurotiomycetes(0.8649),o:Eurotiales(0.8044),f:Trichocomaceae(0.7400),g:Penicillium(0.6364),s:Penicillium_laeve(0.1591) + k:Fungi,p:Ascomycota,c:Eurotiomycetes,o:Eurotiales
Otu293 k:Fungi(1.0000),p:Ascomycota(0.6500),c:Dothideomycetes(0.2535),o:Pleosporales(0.0659),f:Dictyosporiaceae(0.0112),g:Dictyosporium(0.0018),s:Dictyosporium_strelitziae(0.0003) + k:Fungi
Otu294 k:Fungi(1.0000),p:Rozellomycota(0.4900),c:Rozellomycota_cls_Incertae_sedis(0.2205),o:GS11(0.0573),f:unidentified(0.0396),g:unidentified(0.0285),s:GS11_sp(0.0074) + k:Fungi
Otu295 k:Fungi(1.0000),p:Ascomycota(0.6200),c:Orbiliomycetes(0.0620),o:Orbiliales(0.0043),f:Orbiliaceae(0.0003),g:unidentified(0.0001),s:Orbiliaceae_sp(0.0000) + k:Fungi
Otu296 k:Fungi(1.0000),p:Rozellomycota(0.5400),c:unidentified(0.4158),o:unidentified(0.3285),f:unidentified(0.2628),g:unidentified(0.2207),s:Rozellomycota_sp(0.1170) + k:Fungi
Otu297 k:Fungi(1.0000),p:Basidiomycota(0.9600),c:Tremellomycetes(0.9216),o:Filobasidiales(0.8847),f:Filobasidiaceae(0.8493),g:Filobasidium(0.8154),s:Filobasidium_chernovii(0.7338) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Filobasidiales,f:Filobasidiaceae,g:Filobasidium
Otu298 k:Fungi(1.0000),p:Rozellomycota(0.3900),c:unidentified(0.0975),o:unidentified(0.0254),f:unidentified(0.0124),g:unidentified(0.0067),s:Rozellomycota_sp(0.0011) + k:Fungi
Otu300 k:Fungi(1.0000),p:unidentified(0.4300),c:unidentified(0.1935),o:unidentified(0.0890),f:unidentified(0.0623),g:unidentified(0.0461),s:Fungi_sp(0.0198) + k:Fungi
Otu299 k:Fungi(1.0000),p:Rozellomycota(0.4800),c:unidentified(0.3312),o:unidentified(0.2418),f:unidentified(0.1934),g:unidentified(0.1605),s:Rozellomycota_sp(0.0738) + k:Fungi
Otu301 k:Fungi(1.0000),p:unidentified(0.2100),c:unidentified(0.0546),o:unidentified(0.0158),f:unidentified(0.0078),g:unidentified(0.0043),s:Fungi_sp(0.0009) + k:Fungi
Otu302 k:Fungi(1.0000),p:Rozellomycota(0.6400),c:Rozellomycota_cls_Incertae_sedis(0.3904),o:GS11(0.1288),f:unidentified(0.1056),g:unidentified(0.0898),s:GS11_sp(0.0296) + k:Fungi
Otu304 k:Fungi(1.0000),p:Rozellomycota(0.5700),c:Rozellomycota_cls_Incertae_sedis(0.3078),o:GS10(0.0739),f:unidentified(0.0480),g:unidentified(0.0341),s:GS10_sp(0.0082) + k:Fungi
Otu303 k:Fungi(1.0000),p:Rozellomycota(0.5000),c:unidentified(0.1850),o:unidentified(0.0703),f:unidentified(0.0415),g:unidentified(0.0261),s:Rozellomycota_sp(0.0081) + k:Fungi
Otu305 k:Fungi(1.0000),p:unidentified(0.3700),c:unidentified(0.1480),o:unidentified(0.0592),f:unidentified(0.0414),g:unidentified(0.0303),s:Fungi_sp(0.0112) + k:Fungi
Otu306 k:Fungi(1.0000),p:Ascomycota(0.9400),c:Sordariomycetes(0.8836),o:unidentified(0.8748),f:unidentified(0.8660),g:unidentified(0.8660),s:Sordariomycetes_sp(0.8054) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:unidentified,f:unidentified,g:unidentified,s:Sordariomycetes_sp
Otu309 k:Fungi(1.0000),p:Rozellomycota(0.7700),c:unidentified(0.3696),o:unidentified(0.1774),f:unidentified(0.1384),g:unidentified(0.1079),s:Rozellomycota_sp(0.0507) + k:Fungi
Otu307 k:Fungi(0.9900),p:Rozellomycota(0.3861),c:unidentified(0.2973),o:unidentified(0.2289),f:unidentified(0.1808),g:unidentified(0.1519),s:Rozellomycota_sp(0.0577) + k:Fungi
Otu308 k:Fungi(1.0000),p:Mortierellomycota(0.9800),c:Mortierellomycotina_cls_Incertae_sedis(0.9114),o:Mortierellales(0.8476),f:Mortierellaceae(0.7120),g:Mortierella(0.5981),s:Mortierella_amoeboidea(0.1316) + k:Fungi,p:Mortierellomycota,c:Mortierellomycotina_cls_Incertae_sedis,o:Mortierellales
Otu310 k:Fungi(1.0000),p:Rozellomycota(0.3600),c:unidentified(0.0900),o:unidentified(0.0225),f:unidentified(0.0122),g:unidentified(0.0072),s:Rozellomycota_sp(0.0011) + k:Fungi
Otu313 k:Fungi(1.0000),p:Rozellomycota(0.1900),c:Rozellomycota_cls_Incertae_sedis(0.0361),o:GS10(0.0036),f:unidentified(0.0014),g:unidentified(0.0007),s:GS10_sp(0.0001) + k:Fungi
Otu311 k:Fungi(1.0000),p:Ascomycota(0.9500),c:Leotiomycetes(0.9025),o:Helotiales(0.8574),f:Helotiales_fam_Incertae_sedis(0.7802),g:Tetracladium(0.7100),s:Tetracladium_marchalianum(0.4970) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales
Otu312 k:Fungi(1.0000),p:Ascomycota(0.7700),c:Pezizomycotina_cls_Incertae_sedis(0.0847),o:Pezizomycotina_ord_Incertae_sedis(0.0093),f:Pezizomycotina_fam_Incertae_sedis(0.0010),g:Pulchromyces(0.0001),s:Pulchromyces_fimicola(0.0000) + k:Fungi
Otu314 k:Fungi(1.0000),p:Chytridiomycota(0.6200),c:unidentified(0.2480),o:unidentified(0.1042),f:unidentified(0.0615),g:unidentified(0.0393),s:Chytridiomycota_sp(0.0142) + k:Fungi
Otu315 k:Fungi(1.0000),p:Rozellomycota(0.4700),c:unidentified(0.2303),o:unidentified(0.1151),f:unidentified(0.0737),g:unidentified(0.0486),s:Rozellomycota_sp(0.0199) + k:Fungi
Otu316 k:Fungi(1.0000),p:Ascomycota(0.8500),c:Dothideomycetes(0.6375),o:Pleosporales(0.4654),f:Pleosporales_fam_Incertae_sedis(0.1955),g:Anguillospora(0.0821),s:Anguillospora_longissima(0.0345) + k:Fungi,p:Ascomycota
Otu317 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(0.5900),f:Nectriaceae(0.3481),g:Fusarium(0.1845),s:Fusarium_sp(0.0886) + k:Fungi,p:Ascomycota,c:Sordariomycetes
Otu318 k:Fungi(1.0000),p:Rozellomycota(0.4100),c:unidentified(0.1558),o:unidentified(0.0639),f:unidentified(0.0370),g:unidentified(0.0237),s:Rozellomycota_sp(0.0081) + k:Fungi
Otu319 k:Fungi(1.0000),p:Ascomycota(0.7000),c:Dothideomycetes(0.4900),o:Pleosporales(0.3381),f:unidentified(0.2401),g:unidentified(0.1728),s:Pleosporales_sp(0.0691) + k:Fungi
Otu320 k:Fungi(1.0000),p:Ascomycota(0.4000),c:Xylonomycetes(0.0560),o:Symbiotaphrinales(0.0078),f:Symbiotaphrinales_fam._Incertae_sedis(0.0011),g:Symbiotaphrina(0.0002),s:Symbiotaphrina_buchneri(0.0000) + k:Fungi
Otu321 k:Fungi(1.0000),p:Rozellomycota(0.4700),c:unidentified(0.2397),o:unidentified(0.1390),f:unidentified(0.0945),g:unidentified(0.0709),s:Rozellomycota_sp(0.0326) + k:Fungi
Otu322 k:Fungi(1.0000),p:unidentified(0.1100),c:unidentified(0.0275),o:unidentified(0.0072),f:unidentified(0.0031),g:unidentified(0.0018),s:Fungi_sp(0.0002) + k:Fungi
Otu323 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Capnodiales(0.9800),f:Mycosphaerellaceae(0.9604),g:Mycosphaerella(0.6627),s:Mycosphaerella_pruni-persicae(0.4572) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Capnodiales,f:Mycosphaerellaceae
Otu325 k:Fungi(1.0000),p:Basidiomycota(0.9800),c:Pucciniomycetes(0.9604),o:unidentified(0.9412),f:unidentified(0.9318),g:unidentified(0.9225),s:Pucciniomycetes_sp(0.9040) + k:Fungi,p:Basidiomycota,c:Pucciniomycetes,o:unidentified,f:unidentified,g:unidentified,s:Pucciniomycetes_sp
Otu324 k:Fungi(1.0000),p:Rozellomycota(0.7200),c:unidentified(0.7128),o:unidentified(0.7057),f:unidentified(0.6986),g:unidentified(0.6916),s:Rozellomycota_sp(0.4980) + k:Fungi
Otu326 k:Fungi(1.0000),p:Rozellomycota(0.5600),c:unidentified(0.3864),o:unidentified(0.2705),f:unidentified(0.2002),g:unidentified(0.1561),s:Rozellomycota_sp(0.0859) + k:Fungi
Otu328 k:Fungi(1.0000),p:Basidiomycota(0.3500),c:Agaricomycetes(0.1225),o:Agaricales(0.0429),f:Bolbitiaceae(0.0150),g:unidentified(0.0113),s:Bolbitiaceae_sp(0.0039) + k:Fungi
Otu327 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Xylariales(1.0000),f:Amphisphaeriaceae(1.0000),g:Pestalotiopsis(0.7800),s:Pestalotiopsis_sp(0.6084) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Xylariales,f:Amphisphaeriaceae
Otu329 k:Protozoa(0.9600),p:Microsporidia(0.9216),c:Microsporea(0.8847),o:Microsporida(0.8493),f:Microsporida_fam_Incertae_sedis(0.8154),g:Paramicrosporidium(0.7828),s:Paramicrosporidium_saccamoebae(0.7514) + k:Protozoa,p:Microsporidia,c:Microsporea,o:Microsporida,f:Microsporida_fam_Incertae_sedis
Otu330 k:Fungi(1.0000),p:Glomeromycota(0.1700),c:Glomeromycetes(0.0289),o:Diversisporales(0.0038),f:Gigasporaceae(0.0003),g:Cetraspora(0.0000),s:Cetraspora_nodosa(0.0000) + k:Fungi
Otu331 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.8900),o:Helotiales(0.7565),f:Sclerotiniaceae(0.3329),g:Sclerotinia(0.0766),s:Sclerotinia_sclerotiorum(0.0176) + k:Fungi,p:Ascomycota,c:Leotiomycetes
Otu333 k:Fungi(1.0000),p:Rozellomycota(0.5900),c:Rozellomycota_cls_Incertae_sedis(0.3127),o:GS11(0.0907),f:unidentified(0.0671),g:unidentified(0.0523),s:GS11_sp(0.0152) + k:Fungi
Otu332 k:Fungi(1.0000),p:Ascomycota(0.9000),c:unidentified(0.5850),o:unidentified(0.3861),f:unidentified(0.3012),g:unidentified(0.2379),s:Ascomycota_sp(0.1332) + k:Fungi,p:Ascomycota
Otu334 k:Fungi(1.0000),p:Rozellomycota(0.4400),c:unidentified(0.2772),o:unidentified(0.1830),f:unidentified(0.1281),g:unidentified(0.0948),s:Rozellomycota_sp(0.0408) + k:Fungi
Otu336 k:Fungi(1.0000),p:unidentified(0.9300),c:unidentified(0.8649),o:unidentified(0.8476),f:unidentified(0.8306),g:unidentified(0.8140),s:Fungi_sp(0.7571) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified
Otu335 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:Bulleribasidiaceae(0.9800),g:Vishniacozyma(0.9604),s:Vishniacozyma_tephrensis(0.9412) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Bulleribasidiaceae,g:Vishniacozyma,s:Vishniacozyma_tephrensis
Otu337 k:Fungi(1.0000),p:unidentified(0.3500),c:unidentified(0.1820),o:unidentified(0.0946),f:unidentified(0.0492),g:unidentified(0.0256),s:Fungi_sp(0.0090) + k:Fungi
Otu338 k:Fungi(1.0000),p:unidentified(0.5300),c:unidentified(0.4717),o:unidentified(0.4198),f:unidentified(0.3862),g:unidentified(0.3592),s:Fungi_sp(0.1904) + k:Fungi
Otu339 k:Fungi(1.0000),p:Chytridiomycota(0.1200),c:unidentified(0.0180),o:unidentified(0.0034),f:unidentified(0.0009),g:unidentified(0.0003),s:Chytridiomycota_sp(0.0000) + k:Fungi
Otu340 k:Fungi(1.0000),p:unidentified(0.4300),c:unidentified(0.1849),o:unidentified(0.0795),f:unidentified(0.0684),g:unidentified(0.0588),s:Fungi_sp(0.0253) + k:Fungi
Otu341 k:Fungi(1.0000),p:unidentified(1.0000),c:unidentified(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Fungi_sp(1.0000) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu342 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Trichosporonales(0.9900),f:Trichosporonaceae(0.9801),g:unidentified(0.9213),s:Trichosporonaceae_sp(0.8568) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Trichosporonales,f:Trichosporonaceae,g:unidentified,s:Trichosporonaceae_sp
Otu344 k:Fungi(0.9500),p:unidentified(0.5700),c:unidentified(0.3933),o:unidentified(0.2753),f:unidentified(0.2065),g:unidentified(0.1652),s:Fungi_sp(0.0991) + k:Fungi
Otu345 k:Fungi(1.0000),p:Glomeromycota(0.2500),c:Glomeromycetes(0.0575),o:Glomerales(0.0092),f:Glomeraceae(0.0014),g:unidentified(0.0006),s:Glomeraceae_sp(0.0001) + k:Fungi
Otu343 k:Fungi(1.0000),p:Rozellomycota(0.4200),c:Rozellomycota_cls_Incertae_sedis(0.1680),o:GS11(0.0672),f:unidentified(0.0403),g:unidentified(0.0254),s:GS11_sp(0.0102) + k:Fungi
Otu346 k:Fungi(1.0000),p:Rozellomycota(0.3200),c:Rozellomycota_cls_Incertae_sedis(0.0960),o:GS11(0.0115),f:unidentified(0.0061),g:unidentified(0.0036),s:GS11_sp(0.0004) + k:Fungi
Otu347 k:Fungi(1.0000),p:unidentified(0.2000),c:unidentified(0.0600),o:unidentified(0.0180),f:unidentified(0.0090),g:unidentified(0.0048),s:Fungi_sp(0.0010) + k:Fungi
Otu348 k:Fungi(1.0000),p:unidentified(0.5200),c:unidentified(0.4368),o:unidentified(0.3669),f:unidentified(0.3155),g:unidentified(0.2714),s:Fungi_sp(0.1411) + k:Fungi
Otu349 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Thelephorales(1.0000),f:Thelephoraceae(1.0000),g:unidentified(0.8300),s:Thelephoraceae_sp(0.6889) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales,f:Thelephoraceae,g:unidentified
Otu350 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.9400),o:Leotiomycetes_ord_Incertae_sedis(0.7144),f:Pseudeurotiaceae(0.5358),g:unidentified(0.4340),s:Pseudeurotiaceae_sp(0.3168) + k:Fungi,p:Ascomycota,c:Leotiomycetes
Otu351 k:Fungi(1.0000),p:unidentified(0.2300),c:unidentified(0.0667),o:unidentified(0.0207),f:unidentified(0.0103),g:unidentified(0.0054),s:Fungi_sp(0.0012) + k:Fungi
Otu352 k:Fungi(0.9900),p:Glomeromycota(0.3366),c:Glomeromycetes(0.1077),o:Archaeosporales(0.0108),f:Archaeosporaceae(0.0009),g:Archaeospora(0.0000),s:Archaeospora_trappei(0.0000) + k:Fungi
Otu353 k:Fungi(1.0000),p:Basidiomycota(0.4600),c:Agaricomycetes(0.1840),o:Agaricales(0.0515),f:Clavariaceae(0.0129),g:unidentified(0.0064),s:Clavariaceae_sp(0.0010) + k:Fungi
Otu354 k:Fungi(1.0000),p:Rozellomycota(0.6700),c:unidentified(0.4422),o:unidentified(0.3007),f:unidentified(0.2225),g:unidentified(0.1780),s:Rozellomycota_sp(0.1121) + k:Fungi
Otu355 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(1.0000),o:Helotiales(1.0000),f:Helotiaceae(0.5900),g:unidentified(0.5015),s:Helotiaceae_sp(0.2257) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales
Otu356 k:Fungi(1.0000),p:Basidiomycota(0.9800),c:Wallemiomycetes(0.9604),o:Wallemiales(0.9412),f:Wallemiaceae(0.9224),g:Wallemia(0.9039),s:Wallemia_muriae(0.8226) + k:Fungi,p:Basidiomycota,c:Wallemiomycetes,o:Wallemiales,f:Wallemiaceae,g:Wallemia,s:Wallemia_muriae
Otu357 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Saccharomycetes(0.9900),o:Saccharomycetales(0.9801),f:Saccharomycetales_fam_Incertae_sedis(0.9703),g:Candida(0.9606),s:Candida_sake(0.8165) + k:Fungi,p:Ascomycota,c:Saccharomycetes,o:Saccharomycetales,f:Saccharomycetales_fam_Incertae_sedis,g:Candida,s:Candida_sake
Otu358 k:Fungi(1.0000),p:Rozellomycota(0.4300),c:unidentified(0.1935),o:unidentified(0.0909),f:unidentified(0.0546),g:unidentified(0.0360),s:Rozellomycota_sp(0.0148) + k:Fungi
Otu359 k:Fungi(1.0000),p:Ascomycota(0.9100),c:Taphrinomycetes(0.8099),o:Taphrinales(0.7208),f:Taphrinaceae(0.6415),g:Taphrina(0.5710),s:Taphrina_carpini(0.4796) + k:Fungi,p:Ascomycota,c:Taphrinomycetes
Otu360 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Agaricomycetes(0.9801),o:Thelephorales(0.9703),f:Thelephoraceae(0.9606),g:Tomentella(0.8357),s:Tomentella_sp(0.7271) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales,f:Thelephoraceae,g:Tomentella
Otu362 k:Fungi(1.0000),p:unidentified(0.2500),c:unidentified(0.0700),o:unidentified(0.0210),f:unidentified(0.0092),g:unidentified(0.0045),s:Fungi_sp(0.0011) + k:Fungi
Otu361 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(0.9700),o:Venturiales(0.9409),f:Venturiaceae(0.9127),g:unidentified(0.6480),s:Venturiaceae_sp(0.4536) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Venturiales,f:Venturiaceae
Otu363 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:unidentified(0.6900),f:unidentified(0.4761),g:unidentified(0.3380),s:Dothideomycetes_sp(0.2332) + k:Fungi,p:Ascomycota,c:Dothideomycetes
Otu364 k:Fungi(1.0000),p:Rozellomycota(0.0900),c:Rozellomycota_cls_Incertae_sedis(0.0072),o:GS11(0.0006),f:unidentified(0.0001),g:unidentified(0.0001),s:GS11_sp(0.0000) + k:Fungi
Otu365 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:Bulleraceae(0.6500),g:Bullera(0.4225),s:Bullera_crocea(0.2746) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales
Otu366 k:Fungi(1.0000),p:Rozellomycota(0.5100),c:Rozellomycota_cls_Incertae_sedis(0.1989),o:GS05(0.0398),f:unidentified(0.0255),g:unidentified(0.0173),s:GS05_sp(0.0035) + k:Fungi
Otu367 k:Fungi(1.0000),p:Rozellomycota(0.5300),c:unidentified(0.2226),o:unidentified(0.0957),f:unidentified(0.0622),g:unidentified(0.0442),s:Rozellomycota_sp(0.0168) + k:Fungi
Otu368 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Dothideomycetes(0.8316),o:unidentified(0.5655),f:unidentified(0.4524),g:unidentified(0.3619),s:Dothideomycetes_sp(0.1954) + k:Fungi,p:Ascomycota,c:Dothideomycetes
Otu369 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(0.9900),o:Pleosporales(0.9702),f:Phaeosphaeriaceae(0.7956),g:Phaeosphaeria(0.6205),s:Phaeosphaeria_podocarpi(0.4840) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales
Otu370 k:Fungi(1.0000),p:Chytridiomycota(0.5300),c:unidentified(0.3286),o:unidentified(0.2070),f:unidentified(0.1346),g:unidentified(0.0888),s:Chytridiomycota_sp(0.0302) + k:Fungi
Otu371 k:Fungi(1.0000),p:Glomeromycota(0.2500),c:Glomeromycetes(0.0600),o:Glomerales(0.0138),f:Glomeraceae(0.0032),g:unidentified(0.0014),s:Glomeraceae_sp(0.0002) + k:Fungi
Otu372 k:Fungi(0.9400),p:Basidiomycota(0.2444),c:Agaricomycetes(0.0513),o:Agaricales(0.0062),f:Clavariaceae(0.0004),g:unidentified(0.0002),s:Clavariaceae_sp(0.0000) + k:Fungi
Otu373 k:Fungi(1.0000),p:Rozellomycota(0.2500),c:unidentified(0.0925),o:unidentified(0.0361),f:unidentified(0.0173),g:unidentified(0.0092),s:Rozellomycota_sp(0.0016) + k:Fungi
Otu374 k:Fungi(1.0000),p:Rozellomycota(0.4300),c:unidentified(0.3483),o:unidentified(0.2856),f:unidentified(0.2428),g:unidentified(0.2088),s:Rozellomycota_sp(0.0835) + k:Fungi
Otu375 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Tremellomycetes(0.9702),o:Tremellales(0.8926),f:unidentified(0.7765),g:unidentified(0.6756),s:Tremellales_sp(0.5743) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales
Otu376 k:Fungi(0.9900),p:Rozellomycota(0.2079),c:unidentified(0.0333),o:unidentified(0.0057),f:unidentified(0.0026),g:unidentified(0.0014),s:Rozellomycota_sp(0.0001) + k:Fungi
Otu377 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Saccharomycetes(1.0000),o:Saccharomycetales(1.0000),f:Saccharomycetales_fam_Incertae_sedis(1.0000),g:Candida(0.9900),s:Candida_apicola(0.8415) + k:Fungi,p:Ascomycota,c:Saccharomycetes,o:Saccharomycetales,f:Saccharomycetales_fam_Incertae_sedis,g:Candida,s:Candida_apicola
Otu378 k:Fungi(1.0000),p:Rozellomycota(0.4100),c:unidentified(0.1476),o:unidentified(0.0546),f:unidentified(0.0317),g:unidentified(0.0200),s:Rozellomycota_sp(0.0046) + k:Fungi
Otu379 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(1.0000),f:unidentified(0.9200),g:unidentified(0.8464),s:Hypocreales_sp(0.7787) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:unidentified,g:unidentified
Otu380 k:Fungi(1.0000),p:Basidiomycota(0.8600),c:Agaricomycetes(0.7052),o:Agaricales(0.5360),f:unidentified(0.2412),g:unidentified(0.1182),s:Agaricales_sp(0.0473) + k:Fungi,p:Basidiomycota
Otu381 k:Fungi(1.0000),p:Rozellomycota(0.6000),c:unidentified(0.3000),o:unidentified(0.1530),f:unidentified(0.1025),g:unidentified(0.0718),s:Rozellomycota_sp(0.0344) + k:Fungi
Otu382 k:Fungi(1.0000),p:Ascomycota(0.6100),c:Dothideomycetes(0.1769),o:Pleosporales(0.0442),f:Dacampiaceae(0.0040),g:Teichospora(0.0004),s:Teichospora_grandicipis(0.0000) + k:Fungi
Otu383 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Eurotiomycetes(1.0000),o:Chaetothyriales(1.0000),f:Chaetothyriales_fam_Incertae_sedis(1.0000),g:Strelitziana(1.0000),s:Strelitziana_eucalypti(0.5700) + k:Fungi,p:Ascomycota,c:Eurotiomycetes,o:Chaetothyriales,f:Chaetothyriales_fam_Incertae_sedis,g:Strelitziana
Otu384 k:Fungi(1.0000),p:Ascomycota(0.8600),c:Leotiomycetes(0.6966),o:Helotiales(0.5642),f:Helotiales_fam_Incertae_sedis(0.4345),g:Calloria(0.2911),s:Calloria_urticae(0.1950) + k:Fungi,p:Ascomycota
Otu385 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:Tremellaceae(1.0000),g:Dioszegia(1.0000),s:Dioszegia_hungarica(0.7700) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Tremellaceae,g:Dioszegia
Otu386 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Sebacinales(1.0000),f:Sebacinaceae(1.0000),g:unidentified(0.6400),s:Sebacinaceae_sp(0.4096) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Sebacinales,f:Sebacinaceae
Otu387 k:Fungi(1.0000),p:Ascomycota(0.9100),c:Sordariomycetes(0.6370),o:Chaetosphaeriales(0.0255),f:Chaetosphaeriaceae(0.0010),g:Chloridium(0.0000),s:Chloridium_sp(0.0000) + k:Fungi,p:Ascomycota
Otu388 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Microbotryomycetes(0.9900),o:Leucosporidiales(0.7227),f:unidentified(0.3035),g:unidentified(0.1275),s:Leucosporidiales_sp(0.0268) + k:Fungi,p:Basidiomycota,c:Microbotryomycetes
Otu389 k:Fungi(1.0000),p:Ascomycota(0.7000),c:Pezizomycotina_cls_Incertae_sedis(0.1260),o:Pezizomycotina_ord_Incertae_sedis(0.0227),f:Pezizomycotina_fam_Incertae_sedis(0.0041),g:Pulchromyces(0.0007),s:Pulchromyces_fimicola(0.0001) + k:Fungi
Otu391 k:Fungi(1.0000),p:Rozellomycota(0.4300),c:unidentified(0.2150),o:unidentified(0.1096),f:unidentified(0.0658),g:unidentified(0.0408),s:Rozellomycota_sp(0.0155) + k:Fungi
Otu390 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(0.9300),o:Xylariales(0.8556),f:Amphisphaeriaceae(0.7700),g:unidentified(0.3542),s:Amphisphaeriaceae_sp(0.1523) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Xylariales
Otu392 k:Fungi(1.0000),p:Rozellomycota(0.3600),c:Rozellomycota_cls_Incertae_sedis(0.1224),o:GS11(0.0220),f:unidentified(0.0099),g:unidentified(0.0055),s:GS11_sp(0.0010) + k:Fungi
Otu393 k:Fungi(1.0000),p:Rozellomycota(0.5000),c:Rozellomycota_cls_Incertae_sedis(0.2200),o:GS11(0.0638),f:unidentified(0.0447),g:unidentified(0.0322),s:GS11_sp(0.0093) + k:Fungi
Otu395 k:Fungi(1.0000),p:Ascomycota(0.4600),c:Orbiliomycetes(0.1104),o:Orbiliales(0.0254),f:Orbiliaceae(0.0058),g:Arthrobotrys(0.0005),s:Arthrobotrys_superba(0.0000) + k:Fungi
Otu394 k:Fungi(1.0000),p:Rozellomycota(0.7900),c:unidentified(0.5688),o:unidentified(0.4152),f:unidentified(0.3488),g:unidentified(0.3069),s:Rozellomycota_sp(0.2118) + k:Fungi
Otu396 k:Fungi(1.0000),p:Rozellomycota(0.3200),c:unidentified(0.1344),o:unidentified(0.0591),f:unidentified(0.0302),g:unidentified(0.0211),s:Rozellomycota_sp(0.0061) + k:Fungi
Otu397 k:Fungi(1.0000),p:Ascomycota(1.0000),c:unidentified(0.7600),o:unidentified(0.5776),f:unidentified(0.4852),g:unidentified(0.4076),s:Ascomycota_sp(0.3097) + k:Fungi,p:Ascomycota
Otu398 k:Fungi(1.0000),p:Rozellomycota(0.7100),c:unidentified(0.4260),o:unidentified(0.2599),f:unidentified(0.2027),g:unidentified(0.1743),s:Rozellomycota_sp(0.1011) + k:Fungi
Otu399 k:Fungi(1.0000),p:Ascomycota(0.8200),c:Dothideomycetes(0.4346),o:Pleosporales(0.1391),f:unidentified(0.0528),g:unidentified(0.0233),s:Pleosporales_sp(0.0030) + k:Fungi,p:Ascomycota
Otu400 k:Fungi(1.0000),p:Ascomycota(0.9400),c:Dothideomycetes(0.8178),o:Pleosporales(0.6870),f:unidentified(0.4122),g:unidentified(0.2638),s:Pleosporales_sp(0.1398) + k:Fungi,p:Ascomycota,c:Dothideomycetes
Otu401 k:Fungi(1.0000),p:unidentified(0.1600),c:unidentified(0.0480),o:unidentified(0.0178),f:unidentified(0.0101),g:unidentified(0.0065),s:Fungi_sp(0.0010) + k:Fungi
Otu402 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:Tremellaceae(1.0000),g:Dioszegia(1.0000),s:Dioszegia_hungarica(0.7900) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Tremellaceae,g:Dioszegia
Otu403 k:Fungi(1.0000),p:Rozellomycota(0.2100),c:unidentified(0.0273),o:unidentified(0.0044),f:unidentified(0.0016),g:unidentified(0.0007),s:Rozellomycota_sp(0.0000) + k:Fungi
Otu404 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Thelephorales(1.0000),f:Thelephoraceae(1.0000),g:Tomentella(0.9500),s:Tomentella_sp(0.7220) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales,f:Thelephoraceae,g:Tomentella
Otu405 k:Fungi(1.0000),p:Glomeromycota(0.5900),c:Glomeromycetes(0.3481),o:Diversisporales(0.1740),f:Acaulosporaceae(0.0801),g:Acaulospora(0.0368),s:Acaulospora_lacunosa(0.0048) + k:Fungi
Otu406 k:Fungi(1.0000),p:Basidiomycota(0.9300),c:Pucciniomycetes(0.8277),o:unidentified(0.7449),f:unidentified(0.6928),g:unidentified(0.6443),s:Pucciniomycetes_sp(0.5734) + k:Fungi,p:Basidiomycota,c:Pucciniomycetes
Otu407 k:Fungi(1.0000),p:Rozellomycota(1.0000),c:Rozellomycota_cls_Incertae_sedis(1.0000),o:GS07(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:GS07_sp(1.0000) + k:Fungi,p:Rozellomycota,c:Rozellomycota_cls_Incertae_sedis,o:GS07,f:unidentified,g:unidentified,s:GS07_sp
Otu409 k:Fungi(1.0000),p:Rozellomycota(0.6400),c:unidentified(0.3904),o:unidentified(0.2460),f:unidentified(0.1746),g:unidentified(0.1292),s:Rozellomycota_sp(0.0762) + k:Fungi
Otu408 k:Fungi(1.0000),p:Basidiomycota(0.9700),c:Agaricomycetes(0.8924),o:Agaricales(0.5265),f:Cortinariaceae(0.1895),g:Cortinarius(0.0531),s:Cortinarius_sp(0.0037) + k:Fungi,p:Basidiomycota,c:Agaricomycetes
Otu410 k:Fungi(1.0000),p:Rozellomycota(0.5200),c:unidentified(0.2704),o:unidentified(0.1595),f:unidentified(0.1181),g:unidentified(0.0944),s:Rozellomycota_sp(0.0406) + k:Fungi
Otu411 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Exobasidiomycetes(1.0000),o:Entylomatales(1.0000),f:Entylomataceae(1.0000),g:Entyloma(1.0000),s:Entyloma_microsporum(1.0000) + k:Fungi,p:Basidiomycota,c:Exobasidiomycetes,o:Entylomatales,f:Entylomataceae,g:Entyloma,s:Entyloma_microsporum
Otu412 k:Fungi(1.0000),p:Ascomycota(0.9500),c:Sordariomycetes(0.8835),o:Hypocreales(0.8217),f:Nectriaceae(0.7641),g:unidentified(0.7030),s:Nectriaceae_sp(0.5976) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales
Otu414 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Leotiomycetes(0.9702),o:Helotiales(0.9508),f:unidentified(0.7036),g:unidentified(0.5558),s:Helotiales_sp(0.4058) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales
Otu413 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Tremellomycetes(0.9207),o:Tremellales(0.8563),f:Tremellaceae(0.7621),g:Tremella(0.6706),s:Tremella_sp(0.5901) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales
Otu415 k:Fungi(1.0000),p:unidentified(0.1600),c:unidentified(0.0480),o:unidentified(0.0149),f:unidentified(0.0089),g:unidentified(0.0056),s:Fungi_sp(0.0009) + k:Fungi
Otu416 k:Fungi(1.0000),p:unidentified(0.0900),c:unidentified(0.0144),o:unidentified(0.0027),f:unidentified(0.0009),g:unidentified(0.0004),s:Fungi_sp(0.0000) + k:Fungi
Otu418 k:Fungi(1.0000),p:Rozellomycota(0.3000),c:Rozellomycota_cls_Incertae_sedis(0.0780),o:GS10(0.0125),f:unidentified(0.0080),g:unidentified(0.0054),s:GS10_sp(0.0009) + k:Fungi
Otu419 k:Fungi(1.0000),p:Rozellomycota(0.7300),c:unidentified(0.5183),o:unidentified(0.3784),f:unidentified(0.3065),g:unidentified(0.2636),s:Rozellomycota_sp(0.1792) + k:Fungi
Otu417 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Sebacinales(1.0000),f:Sebacinaceae(1.0000),g:unidentified(0.8000),s:Sebacinaceae_sp(0.6400) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Sebacinales,f:Sebacinaceae,g:unidentified
Otu420 k:Fungi(1.0000),p:Rozellomycota(0.7400),c:unidentified(0.5328),o:unidentified(0.3996),f:unidentified(0.3397),g:unidentified(0.2989),s:Rozellomycota_sp(0.2003) + k:Fungi
Otu421 k:Fungi(1.0000),p:unidentified(0.1100),c:unidentified(0.0264),o:unidentified(0.0066),f:unidentified(0.0022),g:unidentified(0.0008),s:Fungi_sp(0.0001) + k:Fungi
Otu422 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Tremellomycetes(0.9603),o:Cystofilobasidiales(0.9219),f:Cystofilobasidiaceae(0.8850),g:Cystofilobasidium(0.8496),s:Cystofilobasidium_capitatum(0.3823) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Cystofilobasidiales,f:Cystofilobasidiaceae,g:Cystofilobasidium
Otu423 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Pleosporales(1.0000),f:Leptosphaeriaceae(0.9800),g:unidentified(0.9702),s:Leptosphaeriaceae_sp(0.9508) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales,f:Leptosphaeriaceae,g:unidentified,s:Leptosphaeriaceae_sp
Otu424 k:Fungi(1.0000),p:Chytridiomycota(0.3700),c:unidentified(0.1813),o:unidentified(0.0961),f:unidentified(0.0557),g:unidentified(0.0373),s:Chytridiomycota_sp(0.0131) + k:Fungi
Otu427 k:Fungi(1.0000),p:unidentified(0.4800),c:unidentified(0.2304),o:unidentified(0.1152),f:unidentified(0.0749),g:unidentified(0.0502),s:Fungi_sp(0.0241) + k:Fungi
Otu425 k:Fungi(1.0000),p:Ascomycota(0.7900),c:Xylonomycetes(0.0948),o:Symbiotaphrinales(0.0114),f:Symbiotaphrinales_fam._Incertae_sedis(0.0014),g:Symbiotaphrina(0.0002),s:Symbiotaphrina_buchneri(0.0000) + k:Fungi
Otu426 k:Fungi(0.9900),p:Glomeromycota(0.1980),c:Glomeromycetes(0.0396),o:Glomerales(0.0032),f:Glomeraceae(0.0003),g:unidentified(0.0001),s:Glomeraceae_sp(0.0000) + k:Fungi
Otu428 k:Fungi(1.0000),p:Ascomycota(0.9700),c:Pezizomycotina_cls_Incertae_sedis(0.9409),o:Pezizomycotina_ord_Incertae_sedis(0.9127),f:Pezizomycotina_fam_Incertae_sedis(0.8853),g:Chaetospermum(0.8587),s:Chaetospermum_chaetosporum(0.8330) + k:Fungi,p:Ascomycota,c:Pezizomycotina_cls_Incertae_sedis,o:Pezizomycotina_ord_Incertae_sedis,f:Pezizomycotina_fam_Incertae_sedis,g:Chaetospermum,s:Chaetospermum_chaetosporum
Otu429 k:Fungi(1.0000),p:Chytridiomycota(0.6300),c:Chytridiomycetes(0.3087),o:Chytridiales(0.1513),f:Endochytriaceae(0.0741),g:Entophlyctis(0.0363),s:Entophlyctis_sp(0.0178) + k:Fungi
Otu431 k:Fungi(1.0000),p:unidentified(0.8000),c:unidentified(0.6960),o:unidentified(0.6125),f:unidentified(0.5635),g:unidentified(0.5240),s:Fungi_sp(0.4192) + k:Fungi,p:unidentified
Otu430 k:Fungi(1.0000),p:Mortierellomycota(1.0000),c:Mortierellomycotina_cls_Incertae_sedis(1.0000),o:Mortierellales(1.0000),f:Mortierellaceae(1.0000),g:Mortierella(1.0000),s:Mortierella_sp(0.9900) + k:Fungi,p:Mortierellomycota,c:Mortierellomycotina_cls_Incertae_sedis,o:Mortierellales,f:Mortierellaceae,g:Mortierella,s:Mortierella_sp
Otu432 k:Fungi(1.0000),p:Ascomycota(0.9700),c:Eurotiomycetes(0.5529),o:Chaetothyriales(0.2654),f:unidentified(0.1274),g:unidentified(0.0675),s:Chaetothyriales_sp(0.0230) + k:Fungi,p:Ascomycota
Otu433 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(1.0000),o:Helotiales(1.0000),f:Helotiaceae(1.0000),g:Neobulgaria(1.0000),s:Neobulgaria_sp(0.5100) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales,f:Helotiaceae,g:Neobulgaria
Otu434 k:Fungi(1.0000),p:Rozellomycota(0.3000),c:Rozellomycota_cls_Incertae_sedis(0.0630),o:GS11(0.0088),f:unidentified(0.0050),g:unidentified(0.0036),s:GS11_sp(0.0005) + k:Fungi
Otu435 k:Fungi(1.0000),p:unidentified(0.1200),c:unidentified(0.0168),o:unidentified(0.0029),f:unidentified(0.0010),g:unidentified(0.0004),s:Fungi_sp(0.0001) + k:Fungi
Otu436 k:Fungi(1.0000),p:Chytridiomycota(0.8700),c:unidentified(0.8178),o:unidentified(0.7687),f:unidentified(0.7226),g:unidentified(0.6865),s:Chytridiomycota_sp(0.5972) + k:Fungi,p:Chytridiomycota,c:unidentified
Otu438 k:Fungi(1.0000),p:Rozellomycota(0.4300),c:Rozellomycota_cls_Incertae_sedis(0.1505),o:GS11(0.0391),f:unidentified(0.0266),g:unidentified(0.0189),s:GS11_sp(0.0049) + k:Fungi
Otu437 k:Fungi(1.0000),p:Ascomycota(0.9200),c:Pezizomycetes(0.6900),o:Pezizales(0.5175),f:Pezizaceae(0.1449),g:unidentified(0.0710),s:Pezizaceae_sp(0.0199) + k:Fungi,p:Ascomycota
Otu439 k:Fungi(1.0000),p:Rozellomycota(0.5500),c:unidentified(0.2530),o:unidentified(0.1240),f:unidentified(0.0781),g:unidentified(0.0539),s:Rozellomycota_sp(0.0221) + k:Fungi
Otu440 k:Fungi(1.0000),p:Chytridiomycota(0.5200),c:unidentified(0.1976),o:unidentified(0.0771),f:unidentified(0.0424),g:unidentified(0.0267),s:Chytridiomycota_sp(0.0088) + k:Fungi
Otu442 k:Fungi(1.0000),p:Ascomycota(0.3600),c:Pezizomycotina_cls_Incertae_sedis(0.0216),o:Pezizomycotina_ord_Incertae_sedis(0.0011),f:Pezizomycotina_fam_Incertae_sedis(0.0001),g:Pulchromyces(0.0000),s:Pulchromyces_fimicola(0.0000) + k:Fungi
Otu441 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:unidentified(0.3700),f:unidentified(0.1406),g:unidentified(0.0534),s:Sordariomycetes_sp(0.0198) + k:Fungi,p:Ascomycota,c:Sordariomycetes
Otu443 k:Fungi(1.0000),p:unidentified(0.3500),c:unidentified(0.1225),o:unidentified(0.0735),f:unidentified(0.0478),g:unidentified(0.0320),s:Fungi_sp(0.0112) + k:Fungi
Otu444 k:Fungi(1.0000),p:unidentified(0.4200),c:unidentified(0.2814),o:unidentified(0.2026),f:unidentified(0.1560),g:unidentified(0.1264),s:Fungi_sp(0.0531) + k:Fungi
Otu445 k:Fungi(0.9800),p:Rozellomycota(0.4312),c:unidentified(0.2027),o:unidentified(0.1054),f:unidentified(0.0664),g:unidentified(0.0425),s:Rozellomycota_sp(0.0161) + k:Fungi
Otu446 k:Fungi(1.0000),p:Rozellomycota(0.3700),c:unidentified(0.1591),o:unidentified(0.0700),f:unidentified(0.0385),g:unidentified(0.0227),s:Rozellomycota_sp(0.0066) + k:Fungi
Otu447 k:Fungi(1.0000),p:Rozellomycota(1.0000),c:Rozellomycota_cls_Incertae_sedis(1.0000),o:GS11(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:GS11_sp(1.0000) + k:Fungi,p:Rozellomycota,c:Rozellomycota_cls_Incertae_sedis,o:GS11,f:unidentified,g:unidentified,s:GS11_sp
Otu449 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Russulales(1.0000),f:Russulaceae(1.0000),g:Russula(0.7900),s:Russula_violeipes(0.4582) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Russulales,f:Russulaceae
Otu448 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Eurotiomycetes(0.9801),o:Eurotiales(0.9703),f:Trichocomaceae(0.9606),g:Penicillium(0.9414),s:Penicillium_macrosclerotiorum(0.2730) + k:Fungi,p:Ascomycota,c:Eurotiomycetes,o:Eurotiales,f:Trichocomaceae,g:Penicillium
Otu450 k:Fungi(1.0000),p:Basidiomycota(0.7700),c:Tremellomycetes(0.3157),o:Tremellales(0.1137),f:Tremellaceae(0.0136),g:Tremella(0.0015),s:Tremella_cerebriformis(0.0001) + k:Fungi
Otu451 k:Fungi(1.0000),p:Rozellomycota(0.2400),c:Rozellomycota_cls_Incertae_sedis(0.0384),o:GS02(0.0031),f:unidentified(0.0015),g:unidentified(0.0009),s:GS02_sp(0.0001) + k:Fungi
Otu454 k:Fungi(1.0000),p:Basidiomycota(0.9800),c:Ustilaginomycetes(0.9310),o:Ustilaginales(0.8844),f:Ustilaginaceae(0.8402),g:unidentified(0.7478),s:Ustilaginaceae_sp(0.6282) + k:Fungi,p:Basidiomycota,c:Ustilaginomycetes,o:Ustilaginales,f:Ustilaginaceae
Otu452 k:Fungi(1.0000),p:Ascomycota(1.0000),c:unidentified(0.7500),o:unidentified(0.5625),f:unidentified(0.4219),g:unidentified(0.3164),s:Ascomycota_sp(0.2373) + k:Fungi,p:Ascomycota
Otu453 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Agaricomycetes(0.9801),o:Russulales(0.9703),f:Russulaceae(0.9606),g:Russula(0.9318),s:Russula_virescens(0.8945) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Russulales,f:Russulaceae,g:Russula,s:Russula_virescens
Otu455 k:Fungi(1.0000),p:Basidiomycota(0.9700),c:Tremellomycetes(0.8924),o:Tremellales(0.8121),f:Bulleraceae(0.4954),g:Bullera(0.3022),s:Bullera_globospora(0.1843) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales
Otu457 k:Fungi(1.0000),p:Chytridiomycota(0.4700),c:unidentified(0.3055),o:unidentified(0.2047),f:unidentified(0.1412),g:unidentified(0.1017),s:Chytridiomycota_sp(0.0478) + k:Fungi
Otu458 k:Fungi(1.0000),p:Basidiomycota(0.5300),c:Agaricomycetes(0.2226),o:Agaricales(0.0556),f:Clavariaceae(0.0045),g:unidentified(0.0020),s:Clavariaceae_sp(0.0001) + k:Fungi
Otu456 k:Fungi(1.0000),p:Ascomycota(0.8600),c:Pezizomycotina_cls_Incertae_sedis(0.3354),o:Pezizomycotina_ord_Incertae_sedis(0.1308),f:Pezizomycotina_fam_Incertae_sedis(0.0510),g:Chalara(0.0194),s:Chalara_sp(0.0074) + k:Fungi,p:Ascomycota
Otu459 k:Fungi(1.0000),p:Rozellomycota(0.4900),c:Rozellomycota_cls_Incertae_sedis(0.2058),o:GS11(0.0782),f:unidentified(0.0555),g:unidentified(0.0422),s:GS11_sp(0.0160) + k:Fungi
Otu460 k:Fungi(1.0000),p:Rozellomycota(0.5500),c:Rozellomycota_cls_Incertae_sedis(0.2640),o:GS11(0.0845),f:unidentified(0.0583),g:unidentified(0.0414),s:GS11_sp(0.0132) + k:Fungi
Otu462 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.9800),o:Leotiomycetes_ord_Incertae_sedis(0.8232),f:Pseudeurotiaceae(0.6750),g:Pseudeurotium(0.5535),s:Pseudeurotium_sp(0.3764) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Leotiomycetes_ord_Incertae_sedis
Otu461 k:Fungi(1.0000),p:Glomeromycota(0.4100),c:Paraglomeromycetes(0.0738),o:Paraglomerales(0.0133),f:unidentified(0.0076),g:unidentified(0.0045),s:Paraglomerales_sp(0.0008) + k:Fungi
Otu463 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(0.9900),f:unidentified(0.9207),g:unidentified(0.8655),s:Tremellales_sp(0.8049) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:unidentified,g:unidentified,s:Tremellales_sp
Otu466 k:Fungi(1.0000),p:Chytridiomycota(0.0800),c:unidentified(0.0160),o:unidentified(0.0040),f:unidentified(0.0016),g:unidentified(0.0007),s:Chytridiomycota_sp(0.0001) + k:Fungi
Otu464 k:Fungi(1.0000),p:Ascomycota(0.7600),c:Sordariomycetes(0.5776),o:Hypocreales(0.4159),f:Hypocreaceae(0.2994),g:Acrostalagmus(0.2156),s:Acrostalagmus_luteoalbus(0.1552) + k:Fungi
Otu465 k:Fungi(1.0000),p:Ascomycota(0.8700),c:Leotiomycetes(0.7308),o:Helotiales(0.5700),f:unidentified(0.4674),g:unidentified(0.3880),s:Helotiales_sp(0.2561) + k:Fungi,p:Ascomycota
Otu467 k:Fungi(1.0000),p:Mortierellomycota(1.0000),c:Mortierellomycotina_cls_Incertae_sedis(1.0000),o:Mortierellales(1.0000),f:Mortierellaceae(1.0000),g:Mortierella(1.0000),s:Mortierella_amoeboidea(0.2800) + k:Fungi,p:Mortierellomycota,c:Mortierellomycotina_cls_Incertae_sedis,o:Mortierellales,f:Mortierellaceae,g:Mortierella
Otu468 k:Fungi(1.0000),p:Rozellomycota(0.5600),c:unidentified(0.2856),o:unidentified(0.1685),f:unidentified(0.1129),g:unidentified(0.0779),s:Rozellomycota_sp(0.0389) + k:Fungi
Otu469 k:Fungi(1.0000),p:unidentified(0.9800),c:unidentified(0.9702),o:unidentified(0.9605),f:unidentified(0.9509),g:unidentified(0.9414),s:Fungi_sp(0.9226) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu470 k:Fungi(1.0000),p:Ascomycota(0.9800),c:Dothideomycetes(0.9604),o:unidentified(0.9220),f:unidentified(0.8851),g:unidentified(0.8586),s:Dothideomycetes_sp(0.8070) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:unidentified,f:unidentified,g:unidentified,s:Dothideomycetes_sp
Otu471 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Saccharomycetes(1.0000),o:Saccharomycetales(1.0000),f:Saccharomycetales_fam_Incertae_sedis(0.9900),g:Debaryomyces(0.9603),s:Debaryomyces_hansenii(0.4994) + k:Fungi,p:Ascomycota,c:Saccharomycetes,o:Saccharomycetales,f:Saccharomycetales_fam_Incertae_sedis,g:Debaryomyces
Otu472 k:Fungi(1.0000),p:Chytridiomycota(0.4300),c:unidentified(0.2322),o:unidentified(0.1254),f:unidentified(0.0790),g:unidentified(0.0521),s:Chytridiomycota_sp(0.0146) + k:Fungi
Otu473 k:Fungi(1.0000),p:Rozellomycota(0.6400),c:Rozellomycota_cls_Incertae_sedis(0.4032),o:GS10(0.1613),f:unidentified(0.1210),g:unidentified(0.1004),s:GS10_sp(0.0402) + k:Fungi
Otu474 k:Fungi(1.0000),p:unidentified(0.5400),c:unidentified(0.3240),o:unidentified(0.1976),f:unidentified(0.1482),g:unidentified(0.1171),s:Fungi_sp(0.0632) + k:Fungi
Otu475 k:Fungi(1.0000),p:unidentified(0.6300),c:unidentified(0.4158),o:unidentified(0.2744),f:unidentified(0.2278),g:unidentified(0.1959),s:Fungi_sp(0.1234) + k:Fungi
Otu476 k:Fungi(1.0000),p:Ascomycota(0.5000),c:Saccharomycetes(0.1900),o:Saccharomycetales(0.0722),f:Trichomonascaceae(0.0238),g:Sugiyamaella(0.0074),s:Sugiyamaella_sp(0.0023) + k:Fungi
Otu478 k:Fungi(1.0000),p:Mortierellomycota(1.0000),c:Mortierellomycotina_cls_Incertae_sedis(1.0000),o:Mortierellales(1.0000),f:Mortierellaceae(1.0000),g:Mortierella(1.0000),s:Mortierella_elongata(0.7300) + k:Fungi,p:Mortierellomycota,c:Mortierellomycotina_cls_Incertae_sedis,o:Mortierellales,f:Mortierellaceae,g:Mortierella
Otu477 k:Fungi(0.9400),p:Rozellomycota(0.2350),c:unidentified(0.0893),o:unidentified(0.0357),f:unidentified(0.0168),g:unidentified(0.0106),s:Rozellomycota_sp(0.0024) + k:Fungi
Otu479 k:Fungi(1.0000),p:Rozellomycota(0.5900),c:unidentified(0.5900),o:unidentified(0.5900),f:unidentified(0.5900),g:unidentified(0.5900),s:Rozellomycota_sp(0.3481) + k:Fungi
Otu480 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Sebacinales(1.0000),f:Serendipitaceae(0.5500),g:unidentified(0.5500),s:Serendipitaceae_sp(0.3025) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Sebacinales
Otu481 k:Fungi(1.0000),p:Monoblepharidomycota(0.0800),c:Monoblepharidiomycetes(0.0064),o:unidentified(0.0011),f:unidentified(0.0003),g:unidentified(0.0001),s:Monoblepharidiomycetes_sp(0.0000) + k:Fungi
Otu482 k:Fungi(1.0000),p:Basidiomycota(0.9500),c:Agaricomycetes(0.9025),o:Russulales(0.8574),f:Russulaceae(0.8145),g:unidentified(0.1710),s:Russulaceae_sp(0.0274) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Russulales,f:Russulaceae
Otu483 k:Fungi(1.0000),p:Glomeromycota(0.3000),c:Glomeromycetes(0.0900),o:Glomerales(0.0126),f:Glomeraceae(0.0018),g:unidentified(0.0007),s:Glomeraceae_sp(0.0000) + k:Fungi
Otu484 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.5600),o:Helotiales(0.3136),f:Helotiaceae(0.1725),g:Articulospora(0.0949),s:Articulospora_sp(0.0522) + k:Fungi,p:Ascomycota
Otu486 k:Protista(0.0800),p:Cercozoa(0.0064),c:unidentified(0.0011),o:unidentified(0.0002),f:unidentified(0.0001),g:unidentified(0.0000),s:Cercozoa_sp(0.0000) +
Otu485 k:Fungi(1.0000),p:Chytridiomycota(0.1100),c:unidentified(0.0297),o:unidentified(0.0092),f:unidentified(0.0043),g:unidentified(0.0023),s:Chytridiomycota_sp(0.0002) + k:Fungi
Otu487 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Trichosporonales(1.0000),f:Trichosporonaceae(1.0000),g:Cutaneotrichosporon(0.9000),s:Cutaneotrichosporon_cyanovorans(0.7650) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Trichosporonales,f:Trichosporonaceae,g:Cutaneotrichosporon
Otu488 k:Fungi(1.0000),p:Rozellomycota(0.4100),c:unidentified(0.1517),o:unidentified(0.0592),f:unidentified(0.0355),g:unidentified(0.0227),s:Rozellomycota_sp(0.0057) + k:Fungi
Otu489 k:Fungi(1.0000),p:Ascomycota(0.9400),c:Leotiomycetes(0.2914),o:Helotiales(0.0816),f:unidentified(0.0294),g:unidentified(0.0117),s:Helotiales_sp(0.0016) + k:Fungi,p:Ascomycota
Otu491 k:Fungi(1.0000),p:unidentified(0.4700),c:unidentified(0.2820),o:unidentified(0.1692),f:unidentified(0.1184),g:unidentified(0.0912),s:Fungi_sp(0.0429) + k:Fungi
Otu492 k:Fungi(0.9900),p:Rozellomycota(0.3663),c:Rozellomycota_cls_Incertae_sedis(0.1099),o:GS07(0.0132),f:unidentified(0.0071),g:unidentified(0.0040),s:GS07_sp(0.0005) + k:Fungi
Otu490 k:Fungi(1.0000),p:unidentified(0.4500),c:unidentified(0.2070),o:unidentified(0.0994),f:unidentified(0.0596),g:unidentified(0.0399),s:Fungi_sp(0.0180) + k:Fungi
Otu493 k:Fungi(1.0000),p:Glomeromycota(0.3500),c:Glomeromycetes(0.1155),o:Glomerales(0.0266),f:Glomeraceae(0.0056),g:Glomus(0.0006),s:Glomus_sp(0.0001) + k:Fungi
Otu494 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(0.9900),o:Tremellales(0.9702),f:Tremellaceae(0.9411),g:Dioszegia(0.9129),s:Dioszegia_zsoltii_var._yunnanensis(0.4382) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Tremellaceae,g:Dioszegia
Otu495 k:Fungi(1.0000),p:Glomeromycota(0.3300),c:Glomeromycetes(0.1089),o:Diversisporales(0.0240),f:Acaulosporaceae(0.0029),g:unidentified(0.0014),s:Acaulosporaceae_sp(0.0001) + k:Fungi
Otu497 k:Fungi(1.0000),p:unidentified(0.1000),c:unidentified(0.0250),o:unidentified(0.0063),f:unidentified(0.0031),g:unidentified(0.0017),s:Fungi_sp(0.0002) + k:Fungi
Otu496 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Pleosporales(1.0000),f:unidentified(0.6000),g:unidentified(0.3720),s:Pleosporales_sp(0.2232) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales
Otu498 k:Fungi(1.0000),p:Basidiomycota(0.9800),c:Agaricomycetes(0.9604),o:Sebacinales(0.9412),f:Sebacinaceae(0.9224),g:unidentified(0.5350),s:Sebacinaceae_sp(0.3049) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Sebacinales,f:Sebacinaceae
Otu500 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.7400),o:Helotiales(0.5254),f:Helotiales_fam_Incertae_sedis(0.2785),g:Cadophora(0.1448),s:Cadophora_melinii(0.0652) + k:Fungi,p:Ascomycota
Otu501 k:Fungi(0.9200),p:unidentified(0.2300),c:unidentified(0.0736),o:unidentified(0.0236),f:unidentified(0.0106),g:unidentified(0.0065),s:Fungi_sp(0.0016) + k:Fungi
Otu499 k:Fungi(1.0000),p:Basidiomycota(0.8900),c:Tremellomycetes(0.7921),o:Tremellales(0.6970),f:Tremellaceae(0.6134),g:Cryptococcus(0.5398),s:Cryptococcus_uniguttulatus(0.4696) + k:Fungi,p:Basidiomycota
Otu502 k:Fungi(1.0000),p:Monoblepharidomycota(0.1400),c:Monoblepharidiomycetes(0.0196),o:unidentified(0.0043),f:unidentified(0.0014),g:unidentified(0.0006),s:Monoblepharidiomycetes_sp(0.0001) + k:Fungi
Otu503 k:Fungi(1.0000),p:unidentified(0.1300),c:unidentified(0.0208),o:unidentified(0.0035),f:unidentified(0.0009),g:unidentified(0.0004),s:Fungi_sp(0.0000) + k:Fungi
Otu504 k:Fungi(1.0000),p:Rozellomycota(0.3500),c:unidentified(0.1120),o:unidentified(0.0381),f:unidentified(0.0217),g:unidentified(0.0143),s:Rozellomycota_sp(0.0024) + k:Fungi
Otu505 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Pleosporales(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Pleosporales_sp(1.0000) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales,f:unidentified,g:unidentified,s:Pleosporales_sp
Otu506 k:Fungi(0.9600),p:Ascomycota(0.3648),c:Saccharomycetes(0.0620),o:Saccharomycetales(0.0105),f:Trichomonascaceae(0.0015),g:Sugiyamaella(0.0002),s:Sugiyamaella_sp(0.0000) + k:Fungi
Otu507 k:Fungi(1.0000),p:Rozellomycota(0.6400),c:Rozellomycota_cls_Incertae_sedis(0.4032),o:GS04(0.1008),f:unidentified(0.0685),g:unidentified(0.0494),s:GS04_sp(0.0123) + k:Fungi
Otu508 k:Fungi(1.0000),p:Rozellomycota(0.3900),c:Rozellomycota_cls_Incertae_sedis(0.1170),o:GS05(0.0222),f:unidentified(0.0131),g:unidentified(0.0089),s:GS05_sp(0.0017) + k:Fungi
Otu509 k:Fungi(1.0000),p:Rozellomycota(0.3500),c:Rozellomycota_cls_Incertae_sedis(0.1190),o:GS11(0.0226),f:unidentified(0.0118),g:unidentified(0.0066),s:GS11_sp(0.0013) + k:Fungi
Otu510 k:Fungi(1.0000),p:unidentified(0.6800),c:unidentified(0.6800),o:unidentified(0.6800),f:unidentified(0.6800),g:unidentified(0.6800),s:Fungi_sp(0.4624) + k:Fungi
Otu512 k:Fungi(1.0000),p:unidentified(0.3000),c:unidentified(0.0990),o:unidentified(0.0337),f:unidentified(0.0202),g:unidentified(0.0127),s:Fungi_sp(0.0038) + k:Fungi
Otu511 k:Fungi(1.0000),p:Basidiomycota(0.8000),c:Tremellomycetes(0.3520),o:unidentified(0.0528),f:unidentified(0.0121),g:unidentified(0.0036),s:Tremellomycetes_sp(0.0003) + k:Fungi,p:Basidiomycota
Otu513 k:Fungi(1.0000),p:unidentified(0.3900),c:unidentified(0.1638),o:unidentified(0.0704),f:unidentified(0.0437),g:unidentified(0.0297),s:Fungi_sp(0.0116) + k:Fungi
Otu514 k:Fungi(1.0000),p:unidentified(0.3200),c:unidentified(0.1120),o:unidentified(0.0403),f:unidentified(0.0246),g:unidentified(0.0172),s:Fungi_sp(0.0055) + k:Fungi
Otu515 k:Fungi(1.0000),p:Chytridiomycota(0.7500),c:unidentified(0.5025),o:unidentified(0.3618),f:unidentified(0.2858),g:unidentified(0.2315),s:Chytridiomycota_sp(0.1459) + k:Fungi
Otu517 k:Fungi(1.0000),p:Chytridiomycota(0.4500),c:unidentified(0.2385),o:unidentified(0.1336),f:unidentified(0.0841),g:unidentified(0.0564),s:Chytridiomycota_sp(0.0220) + k:Fungi
Otu516 k:Fungi(1.0000),p:Ascomycota(0.9100),c:Orbiliomycetes(0.3094),o:Orbiliales(0.1021),f:Orbiliaceae(0.0337),g:Monacrosporium(0.0027),s:Monacrosporium_tentaculatum(0.0002) + k:Fungi,p:Ascomycota
Otu518 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Dothideomycetes(0.9603),o:unidentified(0.4033),f:unidentified(0.2097),g:unidentified(0.1091),s:Dothideomycetes_sp(0.0436) + k:Fungi,p:Ascomycota,c:Dothideomycetes
Otu519 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.9800),o:Helotiales(0.9604),f:Helotiaceae(0.6435),g:Articulospora(0.4311),s:Articulospora_sp(0.2845) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales
Otu521 k:Fungi(1.0000),p:Rozellomycota(0.1700),c:Rozellomycota_cls_Incertae_sedis(0.0289),o:GS04(0.0032),f:unidentified(0.0014),g:unidentified(0.0007),s:GS04_sp(0.0001) + k:Fungi
Otu520 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Leotiomycetes_sp(1.0000) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:unidentified,f:unidentified,g:unidentified,s:Leotiomycetes_sp
Otu522 k:Fungi(1.0000),p:Basidiomycota(0.5500),c:Agaricomycetes(0.2365),o:Sebacinales(0.0709),f:Sebacinaceae(0.0177),g:unidentified(0.0103),s:Sebacinaceae_sp(0.0019) + k:Fungi
Otu523 k:Fungi(1.0000),p:Ascomycota(0.7300),c:Sordariomycetes(0.5329),o:Xylariales(0.3624),f:Xylariales_fam_Incertae_sedis(0.2464),g:Microdochium(0.1676),s:Microdochium_bolleyi(0.0637) + k:Fungi
Otu524 k:Fungi(1.0000),p:Rozellomycota(0.7200),c:unidentified(0.5184),o:unidentified(0.3836),f:unidentified(0.3146),g:unidentified(0.2800),s:Rozellomycota_sp(0.1904) + k:Fungi
Otu525 k:Fungi(1.0000),p:Rozellomycota(0.2900),c:Rozellomycota_cls_Incertae_sedis(0.0841),o:GS11(0.0143),f:unidentified(0.0070),g:unidentified(0.0039),s:GS11_sp(0.0007) + k:Fungi
Otu526 k:Fungi(1.0000),p:Rozellomycota(0.1500),c:unidentified(0.0285),o:unidentified(0.0057),f:unidentified(0.0021),g:unidentified(0.0010),s:Rozellomycota_sp(0.0001) + k:Fungi
Otu527 k:Fungi(1.0000),p:unidentified(0.5100),c:unidentified(0.2754),o:unidentified(0.1515),f:unidentified(0.1197),g:unidentified(0.1017),s:Fungi_sp(0.0519) + k:Fungi
Otu528 k:Fungi(1.0000),p:Rozellomycota(0.2400),c:Rozellomycota_cls_Incertae_sedis(0.0528),o:GS11(0.0042),f:unidentified(0.0019),g:unidentified(0.0011),s:GS11_sp(0.0001) + k:Fungi
Otu529 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Dothideomycetes(0.9207),o:Pleosporales(0.8470),f:Leptosphaeriaceae(0.6946),g:Leptosphaeria(0.5696),s:Leptosphaeria_sp(0.3873) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales
Otu530 k:Fungi(1.0000),p:Glomeromycota(0.3300),c:Glomeromycetes(0.1089),o:Diversisporales(0.0338),f:Acaulosporaceae(0.0091),g:unidentified(0.0063),s:Acaulosporaceae_sp(0.0011) + k:Fungi
Otu531 k:Fungi(1.0000),p:unidentified(0.3700),c:unidentified(0.1406),o:unidentified(0.0534),f:unidentified(0.0342),g:unidentified(0.0236),s:Fungi_sp(0.0087) + k:Fungi
Otu532 k:Fungi(1.0000),p:unidentified(0.8700),c:unidentified(0.8613),o:unidentified(0.8527),f:unidentified(0.8442),g:unidentified(0.8357),s:Fungi_sp(0.7271) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified
Otu533 k:Fungi(1.0000),p:Rozellomycota(0.4800),c:unidentified(0.3744),o:unidentified(0.2958),f:unidentified(0.2396),g:unidentified(0.2012),s:Rozellomycota_sp(0.0926) + k:Fungi
Otu534 k:Fungi(1.0000),p:unidentified(0.3600),c:unidentified(0.1332),o:unidentified(0.0493),f:unidentified(0.0286),g:unidentified(0.0192),s:Fungi_sp(0.0069) + k:Fungi
Otu535 k:Fungi(1.0000),p:unidentified(1.0000),c:unidentified(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Fungi_sp(1.0000) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu537 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Pezizomycetes(1.0000),o:Pezizales(1.0000),f:Pyronemataceae(1.0000),g:Scutellinia(1.0000),s:Scutellinia_patagonica(1.0000) + k:Fungi,p:Ascomycota,c:Pezizomycetes,o:Pezizales,f:Pyronemataceae,g:Scutellinia,s:Scutellinia_patagonica
Otu536 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Capnodiales(1.0000),f:Mycosphaerellaceae(1.0000),g:unidentified(0.3100),s:Mycosphaerellaceae_sp(0.0961) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Capnodiales,f:Mycosphaerellaceae
Otu538 k:Fungi(1.0000),p:Ascomycota(0.9600),c:Leotiomycetes(0.6816),o:Leotiomycetes_ord_Incertae_sedis(0.3544),f:Leotiomycetes_fam_Incertae_sedis(0.1843),g:Leohumicola(0.0958),s:Leohumicola_sp(0.0345) + k:Fungi,p:Ascomycota
Otu539 k:Fungi(1.0000),p:Rozellomycota(0.4000),c:unidentified(0.1600),o:unidentified(0.0736),f:unidentified(0.0456),g:unidentified(0.0315),s:Rozellomycota_sp(0.0094) + k:Fungi
Otu540 k:Fungi(1.0000),p:Rozellomycota(0.2300),c:unidentified(0.0483),o:unidentified(0.0126),f:unidentified(0.0059),g:unidentified(0.0032),s:Rozellomycota_sp(0.0003) + k:Fungi
Otu541 k:Fungi(1.0000),p:Basidiomycota(0.8700),c:Tremellomycetes(0.5307),o:Trichosporonales(0.0955),f:Trichosporonaceae(0.0172),g:Cryptotrichosporon(0.0029),s:Cryptotrichosporon_tibetense(0.0005) + k:Fungi,p:Basidiomycota
Otu542 k:Fungi(1.0000),p:Rozellomycota(0.2400),c:Rozellomycota_cls_Incertae_sedis(0.0360),o:GS05(0.0036),f:unidentified(0.0020),g:unidentified(0.0014),s:GS05_sp(0.0001) + k:Fungi
Otu543 k:Fungi(0.9900),p:unidentified(0.0891),c:unidentified(0.0107),o:unidentified(0.0014),f:unidentified(0.0003),g:unidentified(0.0001),s:Fungi_sp(0.0000) + k:Fungi
Otu544 k:Fungi(1.0000),p:Basidiomycota(0.1900),c:Agaricomycetes(0.0342),o:Russulales(0.0034),f:Russulaceae(0.0003),g:Russula(0.0000),s:Russula_farinipes(0.0000) + k:Fungi
Otu545 k:Fungi(1.0000),p:unidentified(0.5600),c:unidentified(0.3136),o:unidentified(0.2791),f:unidentified(0.2512),g:unidentified(0.2261),s:Fungi_sp(0.1266) + k:Fungi
Otu547 k:Fungi(1.0000),p:unidentified(0.4700),c:unidentified(0.2209),o:unidentified(0.1104),f:unidentified(0.0795),g:unidentified(0.0596),s:Fungi_sp(0.0280) + k:Fungi
Otu546 k:Fungi(1.0000),p:unidentified(0.4400),c:unidentified(0.1936),o:unidentified(0.0891),f:unidentified(0.0606),g:unidentified(0.0430),s:Fungi_sp(0.0189) + k:Fungi
Otu550 k:Fungi(1.0000),p:unidentified(0.2400),c:unidentified(0.0744),o:unidentified(0.0260),f:unidentified(0.0143),g:unidentified(0.0095),s:Fungi_sp(0.0023) + k:Fungi
Otu548 k:Fungi(1.0000),p:Rozellomycota(0.2900),c:Rozellomycota_cls_Incertae_sedis(0.0609),o:GS11(0.0055),f:unidentified(0.0029),g:unidentified(0.0018),s:GS11_sp(0.0002) + k:Fungi
Otu549 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Cystofilobasidiales(1.0000),f:Cystofilobasidiaceae(1.0000),g:Cystofilobasidium(1.0000),s:Cystofilobasidium_bisporidii(0.5300) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Cystofilobasidiales,f:Cystofilobasidiaceae,g:Cystofilobasidium
Otu551 k:Fungi(1.0000),p:Rozellomycota(0.4900),c:Rozellomycota_cls_Incertae_sedis(0.2205),o:GS11(0.0706),f:unidentified(0.0473),g:unidentified(0.0321),s:GS11_sp(0.0103) + k:Fungi
Otu552 k:Fungi(1.0000),p:Basidiomycota(0.9200),c:Tremellomycetes(0.8464),o:Filobasidiales(0.7787),f:Filobasidiaceae(0.7164),g:Filobasidium(0.6591),s:Filobasidium_wieringae(0.6064) + k:Fungi,p:Basidiomycota,c:Tremellomycetes
Otu555 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(0.8800),o:Sordariomycetes_ord_Incertae_sedis(0.7744),f:Sordariomycetes_fam_Incertae_sedis(0.6815),g:Myrmecridium(0.5997),s:Myrmecridium_sp(0.4378) + k:Fungi,p:Ascomycota,c:Sordariomycetes
Otu554 k:Fungi(1.0000),p:Ascomycota(0.8600),c:Sordariomycetes(0.6794),o:Hypocreales(0.4756),f:Bionectriaceae(0.2425),g:Clonostachys(0.1091),s:Clonostachys_divergens(0.0491) + k:Fungi,p:Ascomycota
Otu553 k:Fungi(1.0000),p:Rozellomycota(0.6100),c:Rozellomycota_cls_Incertae_sedis(0.3599),o:GS10(0.1224),f:unidentified(0.0820),g:unidentified(0.0607),s:GS10_sp(0.0206) + k:Fungi
Otu557 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Exobasidiomycetes(1.0000),o:Entylomatales(0.9800),f:unidentified(0.9114),g:unidentified(0.8476),s:Entylomatales_sp(0.7713) + k:Fungi,p:Basidiomycota,c:Exobasidiomycetes,o:Entylomatales,f:unidentified,g:unidentified
Otu556 k:Fungi(1.0000),p:Ascomycota(1.0000),c:unidentified(0.8700),o:unidentified(0.7743),f:unidentified(0.7666),g:unidentified(0.7589),s:Ascomycota_sp(0.6602) + k:Fungi,p:Ascomycota,c:unidentified
Otu559 k:Fungi(1.0000),p:unidentified(0.2600),c:unidentified(0.0754),o:unidentified(0.0234),f:unidentified(0.0112),g:unidentified(0.0059),s:Fungi_sp(0.0015) + k:Fungi
Otu558 k:Fungi(1.0000),p:unidentified(0.0900),c:unidentified(0.0117),o:unidentified(0.0021),f:unidentified(0.0007),g:unidentified(0.0003),s:Fungi_sp(0.0000) + k:Fungi
Otu560 k:Fungi(1.0000),p:Rozellomycota(0.7700),c:unidentified(0.6545),o:unidentified(0.5694),f:unidentified(0.5125),g:unidentified(0.4766),s:Rozellomycota_sp(0.3622) + k:Fungi
Otu561 k:Fungi(1.0000),p:Chytridiomycota(0.6300),c:unidentified(0.3843),o:unidentified(0.2421),f:unidentified(0.1622),g:unidentified(0.1152),s:Chytridiomycota_sp(0.0668) + k:Fungi
Otu563 k:Fungi(1.0000),p:Rozellomycota(0.5900),c:Rozellomycota_cls_Incertae_sedis(0.3363),o:GS11(0.1211),f:unidentified(0.0932),g:unidentified(0.0727),s:GS11_sp(0.0262) + k:Fungi
Otu562 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(0.9800),o:unidentified(0.9212),f:unidentified(0.9028),g:unidentified(0.8847),s:Dothideomycetes_sp(0.8228) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:unidentified,f:unidentified,g:unidentified,s:Dothideomycetes_sp
Otu564 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Sordariomycetes(0.9702),o:Sordariales(0.9023),f:unidentified(0.5504),g:unidentified(0.3743),s:Sordariales_sp(0.2133) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Sordariales
Otu565 k:Fungi(1.0000),p:Ascomycota(0.9700),c:Dothideomycetes(0.9021),o:Capnodiales(0.8209),f:Teratosphaeriaceae(0.4515),g:Penidiella(0.1671),s:Penidiella_aggregata(0.0618) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Capnodiales
Otu566 k:Fungi(1.0000),p:unidentified(0.5900),c:unidentified(0.3540),o:unidentified(0.2159),f:unidentified(0.1620),g:unidentified(0.1231),s:Fungi_sp(0.0726) + k:Fungi
Otu567 k:Fungi(1.0000),p:Rozellomycota(0.9200),c:unidentified(0.8556),o:unidentified(0.7957),f:unidentified(0.7559),g:unidentified(0.7181),s:Rozellomycota_sp(0.6535) + k:Fungi,p:Rozellomycota,c:unidentified
Otu569 k:Fungi(1.0000),p:unidentified(0.8300),c:unidentified(0.8300),o:unidentified(0.8300),f:unidentified(0.8300),g:unidentified(0.8300),s:Fungi_sp(0.6889) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified
Otu570 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(1.0000),f:Clavicipitaceae(1.0000),g:Metarhizium(1.0000),s:Metarhizium_robertsii(0.9900) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:Clavicipitaceae,g:Metarhizium,s:Metarhizium_robertsii
Otu568 k:Fungi(1.0000),p:unidentified(0.6900),c:unidentified(0.5037),o:unidentified(0.3677),f:unidentified(0.2758),g:unidentified(0.2261),s:Fungi_sp(0.1560) + k:Fungi
Otu571 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(1.0000),o:Helotiales(1.0000),f:Helotiales_fam_Incertae_sedis(1.0000),g:Pilidium(1.0000),s:Pilidium_concavum(0.3700) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales,f:Helotiales_fam_Incertae_sedis,g:Pilidium
Otu572 k:Fungi(1.0000),p:Rozellomycota(0.3100),c:Rozellomycota_cls_Incertae_sedis(0.0961),o:GS10(0.0211),f:unidentified(0.0097),g:unidentified(0.0056),s:GS10_sp(0.0012) + k:Fungi
Otu573 k:Fungi(1.0000),p:Ascomycota(1.0000),c:unidentified(0.9200),o:unidentified(0.8464),f:unidentified(0.7956),g:unidentified(0.7479),s:Ascomycota_sp(0.6880) + k:Fungi,p:Ascomycota,c:unidentified,o:unidentified
Otu574 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(1.0000),o:Helotiales(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Helotiales_sp(1.0000) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales,f:unidentified,g:unidentified,s:Helotiales_sp
Otu575 k:Fungi(1.0000),p:Glomeromycota(0.3200),c:Glomeromycetes(0.0928),o:Diversisporales(0.0139),f:Gigasporaceae(0.0010),g:Dentiscutata(0.0001),s:Dentiscutata_savannicola(0.0000) + k:Fungi
Otu577 k:Fungi(1.0000),p:Basidiomycota(0.5200),c:Agaricomycetes(0.2340),o:Thelephorales(0.0164),f:Thelephoraceae(0.0010),g:unidentified(0.0003),s:Thelephoraceae_sp(0.0000) + k:Fungi
Otu576 k:Fungi(1.0000),p:Rozellomycota(0.6200),c:unidentified(0.5766),o:unidentified(0.5362),f:unidentified(0.5309),g:unidentified(0.5256),s:Rozellomycota_sp(0.2943) + k:Fungi
Otu578 k:Fungi(1.0000),p:Basidiomycota(0.4400),c:Agaricomycetes(0.1672),o:Sebacinales(0.0217),f:unidentified(0.0074),g:unidentified(0.0038),s:Sebacinales_sp(0.0003) + k:Fungi
Otu579 k:Fungi(1.0000),p:unidentified(0.9400),c:unidentified(0.9400),o:unidentified(0.9400),f:unidentified(0.9400),g:unidentified(0.9400),s:Fungi_sp(0.8836) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu580 k:Fungi(1.0000),p:Ascomycota(0.5000),c:Xylonomycetes(0.1050),o:Symbiotaphrinales(0.0220),f:Symbiotaphrinales_fam._Incertae_sedis(0.0046),g:Symbiotaphrina(0.0010),s:Symbiotaphrina_buchneri(0.0002) + k:Fungi
Otu582 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Microbotryomycetes(1.0000),o:Leucosporidiales(0.6300),f:Leucosporidiaceae(0.3717),g:Leucosporidium(0.2193),s:Leucosporidium_golubevii(0.1250) + k:Fungi,p:Basidiomycota,c:Microbotryomycetes
Otu581 k:Fungi(1.0000),p:Ascomycota(0.8900),c:Lecanoromycetes(0.2759),o:Lecanorales(0.0745),f:Parmeliaceae(0.0186),g:Pannoparmelia(0.0022),s:Pannoparmelia_wilsonii(0.0003) + k:Fungi,p:Ascomycota
Otu583 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.7700),o:Helotiales(0.5929),f:Helotiaceae(0.2253),g:Articulospora(0.0834),s:Articulospora_sp(0.0308) + k:Fungi,p:Ascomycota
Otu584 k:Fungi(1.0000),p:Glomeromycota(0.3800),c:Glomeromycetes(0.1406),o:Diversisporales(0.0239),f:Acaulosporaceae(0.0041),g:Acaulospora(0.0006),s:Acaulospora_sp(0.0001) + k:Fungi
Otu585 k:Fungi(1.0000),p:Ascomycota(0.9600),c:Dothideomycetes(0.6240),o:Pleosporales(0.3432),f:Sporormiaceae(0.1819),g:Preussia(0.0837),s:Preussia_persica(0.0360) + k:Fungi,p:Ascomycota
Otu586 k:Fungi(1.0000),p:unidentified(0.4600),c:unidentified(0.3312),o:unidentified(0.2385),f:unidentified(0.1788),g:unidentified(0.1377),s:Fungi_sp(0.0633) + k:Fungi
Otu588 k:Fungi(1.0000),p:Rozellomycota(0.5300),c:unidentified(0.2438),o:unidentified(0.1170),f:unidentified(0.0843),g:unidentified(0.0615),s:Rozellomycota_sp(0.0246) + k:Fungi
Otu587 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Leotiomycetes(0.6336),o:Helotiales(0.3992),f:unidentified(0.1317),g:unidentified(0.0566),s:Helotiales_sp(0.0136) + k:Fungi,p:Ascomycota
Otu589 k:Fungi(1.0000),p:Ascomycota(0.9700),c:unidentified(0.4268),o:unidentified(0.1878),f:unidentified(0.0826),g:unidentified(0.0364),s:Ascomycota_sp(0.0149) + k:Fungi,p:Ascomycota
Otu590 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(0.7600),f:Tremellaceae(0.4256),g:Cryptococcus(0.2383),s:Cryptococcus_sp(0.1335) + k:Fungi,p:Basidiomycota,c:Tremellomycetes
Otu591 k:Fungi(1.0000),p:unidentified(0.4200),c:unidentified(0.1764),o:unidentified(0.0741),f:unidentified(0.0489),g:unidentified(0.0352),s:Fungi_sp(0.0148) + k:Fungi
Otu592 k:Fungi(1.0000),p:Ascomycota(0.9500),c:Sordariomycetes(0.8740),o:Hypocreales(0.7167),f:Hypocreales_fam_Incertae_sedis(0.3583),g:Acremonium(0.1505),s:Acremonium_sp(0.0632) + k:Fungi,p:Ascomycota,c:Sordariomycetes
Otu595 k:Fungi(1.0000),p:Rozellomycota(0.3300),c:unidentified(0.1386),o:unidentified(0.0610),f:unidentified(0.0378),g:unidentified(0.0261),s:Rozellomycota_sp(0.0065) + k:Fungi
Otu594 k:Fungi(1.0000),p:Rozellomycota(0.6100),c:unidentified(0.3904),o:unidentified(0.2655),f:unidentified(0.2044),g:unidentified(0.1635),s:Rozellomycota_sp(0.0883) + k:Fungi
Otu593 k:Fungi(1.0000),p:Basidiomycota(0.8100),c:Agaricomycetes(0.6480),o:Sebacinales(0.4212),f:Sebacinaceae(0.1853),g:unidentified(0.1168),s:Sebacinaceae_sp(0.0292) + k:Fungi,p:Basidiomycota
Otu596 k:Fungi(1.0000),p:Rozellomycota(0.4100),c:unidentified(0.1271),o:unidentified(0.0445),f:unidentified(0.0280),g:unidentified(0.0191),s:Rozellomycota_sp(0.0042) + k:Fungi
Otu598 k:Fungi(1.0000),p:Ascomycota(0.9200),c:Dothideomycetes(0.7268),o:unidentified(0.2471),f:unidentified(0.1186),g:unidentified(0.0581),s:Dothideomycetes_sp(0.0163) + k:Fungi,p:Ascomycota
Otu597 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Pleosporales(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Pleosporales_sp(1.0000) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales,f:unidentified,g:unidentified,s:Pleosporales_sp
Otu600 k:Fungi(0.9800),p:Rozellomycota(0.4508),c:unidentified(0.2074),o:unidentified(0.0954),f:unidentified(0.0610),g:unidentified(0.0415),s:Rozellomycota_sp(0.0145) + k:Fungi
Otu599 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Dothideomycetes(0.9603),o:Pleosporales(0.9219),f:Phaeosphaeriaceae(0.6914),g:Sclerostagonospora(0.4287),s:Sclerostagonospora_opuntiae(0.2658) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales
Otu601 k:Fungi(1.0000),p:unidentified(0.6100),c:unidentified(0.3782),o:unidentified(0.2383),f:unidentified(0.1739),g:unidentified(0.1322),s:Fungi_sp(0.0806) + k:Fungi
Otu602 k:Fungi(1.0000),p:Ascomycota(0.9800),c:Sordariomycetes(0.9604),o:Hypocreales(0.9412),f:Nectriaceae(0.9224),g:unidentified(0.8670),s:Nectriaceae_sp(0.7977) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:Nectriaceae,g:unidentified
Otu603 k:Fungi(1.0000),p:Rozellomycota(0.7000),c:Rozellomycota_cls_Incertae_sedis(0.4830),o:GS10(0.2463),f:unidentified(0.2045),g:unidentified(0.1799),s:GS10_sp(0.0918) + k:Fungi
Otu604 k:Fungi(1.0000),p:Rozellomycota(0.6600),c:unidentified(0.6336),o:unidentified(0.6083),f:unidentified(0.6083),g:unidentified(0.6083),s:Rozellomycota_sp(0.3771) + k:Fungi
Otu605 k:Fungi(1.0000),p:Rozellomycota(0.4300),c:Rozellomycota_cls_Incertae_sedis(0.1634),o:GS11(0.0392),f:unidentified(0.0239),g:unidentified(0.0167),s:GS11_sp(0.0040) + k:Fungi
Otu606 k:Fungi(1.0000),p:Ascomycota(0.8100),c:Taphrinomycetes(0.6318),o:Taphrinales(0.4928),f:Taphrinaceae(0.3844),g:Taphrina(0.2998),s:Taphrina_sadebeckii(0.2129) + k:Fungi,p:Ascomycota
Otu607 k:Fungi(1.0000),p:Chytridiomycota(0.0900),c:unidentified(0.0198),o:unidentified(0.0049),f:unidentified(0.0028),g:unidentified(0.0017),s:Chytridiomycota_sp(0.0002) + k:Fungi
Otu608 k:Fungi(1.0000),p:Rozellomycota(0.3700),c:unidentified(0.2516),o:unidentified(0.1761),f:unidentified(0.1321),g:unidentified(0.1110),s:Rozellomycota_sp(0.0366) + k:Fungi
Otu609 k:Fungi(1.0000),p:Rozellomycota(0.5500),c:unidentified(0.2640),o:unidentified(0.1373),f:unidentified(0.0879),g:unidentified(0.0606),s:Rozellomycota_sp(0.0267) + k:Fungi
Otu613 k:Fungi(1.0000),p:unidentified(0.8500),c:unidentified(0.7310),o:unidentified(0.6287),f:unidentified(0.5469),g:unidentified(0.4922),s:Fungi_sp(0.4184) + k:Fungi,p:unidentified
Otu612 k:Fungi(1.0000),p:Chytridiomycota(0.6000),c:unidentified(0.1740),o:unidentified(0.0644),f:unidentified(0.0245),g:unidentified(0.0113),s:Chytridiomycota_sp(0.0029) + k:Fungi
Otu610 k:Fungi(1.0000),p:Basidiomycota(0.6400),c:Agaricomycetes(0.3968),o:Sebacinales(0.0714),f:unidentified(0.0193),g:unidentified(0.0081),s:Sebacinales_sp(0.0008) + k:Fungi
Otu611 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:Tremellales_fam_Incertae_sedis(1.0000),g:Mingxiaea(1.0000),s:Mingxiaea_panici(1.0000) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Tremellales_fam_Incertae_sedis,g:Mingxiaea,s:Mingxiaea_panici
Otu615 k:Fungi(1.0000),p:unidentified(0.1800),c:unidentified(0.0648),o:unidentified(0.0233),f:unidentified(0.0121),g:unidentified(0.0067),s:Fungi_sp(0.0012) + k:Fungi
Otu616 k:Fungi(1.0000),p:Rozellomycota(0.1400),c:Rozellomycota_cls_Incertae_sedis(0.0168),o:GS04(0.0017),f:unidentified(0.0007),g:unidentified(0.0004),s:GS04_sp(0.0000) + k:Fungi
Otu614 k:Fungi(1.0000),p:Ascomycota(0.9800),c:unidentified(0.5978),o:unidentified(0.3826),f:unidentified(0.2487),g:unidentified(0.1616),s:Ascomycota_sp(0.0954) + k:Fungi,p:Ascomycota
Otu617 k:Fungi(1.0000),p:Basidiomycota(0.9500),c:Tremellomycetes(0.5700),o:Tremellales(0.3420),f:Tremellales_fam_Incertae_sedis(0.1847),g:Hannaella(0.0776),s:Hannaella_oryzae(0.0326) + k:Fungi,p:Basidiomycota
Otu620 k:Fungi(1.0000),p:Chytridiomycota(0.0900),c:unidentified(0.0099),o:unidentified(0.0017),f:unidentified(0.0007),g:unidentified(0.0003),s:Chytridiomycota_sp(0.0000) + k:Fungi
Otu618 k:Fungi(1.0000),p:Basidiomycota(0.9700),c:Tremellomycetes(0.9312),o:Cystofilobasidiales(0.8846),f:Cystofilobasidiaceae(0.6104),g:Mrakia(0.4090),s:Mrakia_frigida(0.2740) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Cystofilobasidiales
Otu619 k:Fungi(1.0000),p:Chytridiomycota(0.7500),c:unidentified(0.5475),o:unidentified(0.3997),f:unidentified(0.3077),g:unidentified(0.2431),s:Chytridiomycota_sp(0.1702) + k:Fungi
Otu621 k:Fungi(1.0000),p:Rozellomycota(0.4100),c:Rozellomycota_cls_Incertae_sedis(0.1599),o:GS10(0.0400),f:unidentified(0.0244),g:unidentified(0.0166),s:GS10_sp(0.0041) + k:Fungi
Otu623 k:Fungi(1.0000),p:Rozellomycota(0.4900),c:Rozellomycota_cls_Incertae_sedis(0.2156),o:GS11(0.0690),f:unidentified(0.0469),g:unidentified(0.0342),s:GS11_sp(0.0110) + k:Fungi
Otu622 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:unidentified(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Basidiomycota_sp(1.0000) + k:Fungi,p:Basidiomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Basidiomycota_sp
Otu624 k:Fungi(1.0000),p:Ascomycota(0.9600),c:Dothideomycetes(0.9216),o:Pleosporales(0.8755),f:Phaeosphaeriaceae(0.7880),g:unidentified(0.5437),s:Phaeosphaeriaceae_sp(0.3208) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales
Otu625 k:Fungi(1.0000),p:Ascomycota(0.9100),c:Dothideomycetes(0.8281),o:Pleosporales(0.7536),f:Pleosporales_fam_Incertae_sedis(0.6405),g:Pyrenochaeta(0.5445),s:Pyrenochaeta_sp(0.4628) + k:Fungi,p:Ascomycota,c:Dothideomycetes
Otu627 k:Fungi(1.0000),p:Ascomycota(0.9700),c:Dothideomycetes(0.8536),o:Pleosporales(0.7426),f:Lophiostomataceae(0.4753),g:Lophiotrema(0.3042),s:Lophiotrema_sp(0.1947) + k:Fungi,p:Ascomycota,c:Dothideomycetes
Otu628 k:Fungi(1.0000),p:Rozellomycota(0.4200),c:unidentified(0.1596),o:unidentified(0.0670),f:unidentified(0.0389),g:unidentified(0.0249),s:Rozellomycota_sp(0.0075) + k:Fungi
Otu626 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Archaeorhizomycetes(0.9801),o:Archaeorhizomycetales(0.9703),f:Archaeorhizomycetaceae(0.9509),g:Archaeorhizomyces(0.9319),s:Archaeorhizomyces_sp(0.9132) + k:Fungi,p:Ascomycota,c:Archaeorhizomycetes,o:Archaeorhizomycetales,f:Archaeorhizomycetaceae,g:Archaeorhizomyces,s:Archaeorhizomyces_sp
Otu629 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Microbotryomycetes(1.0000),o:Sporidiobolales(0.6000),f:Sporidiobolales_fam_Incertae_sedis(0.3600),g:Rhodotorula(0.2124),s:Rhodotorula_fragaria(0.1189) + k:Fungi,p:Basidiomycota,c:Microbotryomycetes
Otu630 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(0.9800),o:Trichosporonales(0.8918),f:Trichosporonaceae(0.8115),g:Cutaneotrichosporon(0.5194),s:Cutaneotrichosporon_guehoae(0.3220) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Trichosporonales,f:Trichosporonaceae
Otu631 k:Fungi(0.9800),p:Rozellomycota(0.3822),c:unidentified(0.1108),o:unidentified(0.0366),f:unidentified(0.0212),g:unidentified(0.0138),s:Rozellomycota_sp(0.0023) + k:Fungi
Otu632 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:Bulleraceae(0.9700),g:Bullera(0.9409),s:Bullera_alba(0.7339) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Bulleraceae,g:Bullera
Otu633 k:Fungi(1.0000),p:Rozellomycota(1.0000),c:Rozellomycota_cls_Incertae_sedis(1.0000),o:GS10(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:GS10_sp(1.0000) + k:Fungi,p:Rozellomycota,c:Rozellomycota_cls_Incertae_sedis,o:GS10,f:unidentified,g:unidentified,s:GS10_sp
Otu634 k:Fungi(1.0000),p:Rozellomycota(0.6300),c:Rozellomycota_cls_Incertae_sedis(0.3780),o:GS11(0.1474),f:unidentified(0.1106),g:unidentified(0.0829),s:GS11_sp(0.0323) + k:Fungi
Otu635 k:Fungi(1.0000),p:unidentified(0.4400),c:unidentified(0.3696),o:unidentified(0.3105),f:unidentified(0.2701),g:unidentified(0.2377),s:Fungi_sp(0.1046) + k:Fungi
Otu636 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Dothideomycetes_sp(1.0000) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:unidentified,f:unidentified,g:unidentified,s:Dothideomycetes_sp
Otu638 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Pezizomycotina_cls_Incertae_sedis(0.6900),o:Pezizomycotina_ord_Incertae_sedis(0.4761),f:Pezizomycotina_fam_Incertae_sedis(0.3285),g:Knufia(0.2267),s:Knufia_karalitana(0.0884) + k:Fungi,p:Ascomycota
Otu637 k:Fungi(1.0000),p:unidentified(0.7400),c:unidentified(0.5994),o:unidentified(0.4855),f:unidentified(0.4127),g:unidentified(0.3549),s:Fungi_sp(0.2626) + k:Fungi
Otu639 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Microbotryomycetes(0.9801),o:Microbotryomycetes_ord_Incertae_sedis(0.4999),f:Microbotryomycetes_fam_Incertae_sedis(0.2549),g:Curvibasidium(0.1300),s:Curvibasidium_cygneicollum(0.0663) + k:Fungi,p:Basidiomycota,c:Microbotryomycetes
Otu640 k:Fungi(1.0000),p:Rozellomycota(0.5400),c:Rozellomycota_cls_Incertae_sedis(0.2430),o:GS11(0.0680),f:unidentified(0.0503),g:unidentified(0.0398),s:GS11_sp(0.0111) + k:Fungi
Otu641 k:Fungi(1.0000),p:Ascomycota(0.7400),c:Sordariomycetes(0.5254),o:unidentified(0.2890),f:unidentified(0.1647),g:unidentified(0.0939),s:Sordariomycetes_sp(0.0272) + k:Fungi
Otu642 k:Fungi(1.0000),p:Rozellomycota(0.5900),c:unidentified(0.4543),o:unidentified(0.3498),f:unidentified(0.2938),g:unidentified(0.2527),s:Rozellomycota_sp(0.1390) + k:Fungi
Otu643 k:Fungi(0.8800),p:Glomeromycota(0.2640),c:Glomeromycetes(0.0686),o:Glomerales(0.0103),f:Glomeraceae(0.0014),g:unidentified(0.0008),s:Glomeraceae_sp(0.0001) + k:Fungi
Otu644 k:Fungi(1.0000),p:Basidiomycota(0.7100),c:Tremellomycetes(0.3266),o:Tremellales(0.1241),f:Sirobasidiaceae(0.0236),g:Fibulobasidium(0.0045),s:Fibulobasidium_murrhardtense(0.0009) + k:Fungi
Otu645 k:Fungi(1.0000),p:Rozellomycota(0.4600),c:unidentified(0.1104),o:unidentified(0.0287),f:unidentified(0.0161),g:unidentified(0.0098),s:Rozellomycota_sp(0.0019) + k:Fungi
Otu646 k:Fungi(1.0000),p:Glomeromycota(0.4900),c:Glomeromycetes(0.2352),o:Diversisporales(0.0917),f:Gigasporaceae(0.0147),g:Dentiscutata(0.0022),s:Dentiscutata_savannicola(0.0003) + k:Fungi
Otu647 k:Fungi(1.0000),p:Rozellomycota(0.6000),c:Rozellomycota_cls_Incertae_sedis(0.3600),o:GS10(0.1512),f:unidentified(0.1164),g:unidentified(0.0931),s:GS10_sp(0.0391) + k:Fungi
Otu648 k:Fungi(1.0000),p:Ascomycota(0.9000),c:Eurotiomycetes(0.4500),o:Chaetothyriales(0.2250),f:Herpotrichiellaceae(0.1125),g:Phialophora(0.0563),s:Phialophora_cyclaminis(0.0281) + k:Fungi,p:Ascomycota
Otu649 k:Fungi(1.0000),p:unidentified(0.3700),c:unidentified(0.2072),o:unidentified(0.1181),f:unidentified(0.0720),g:unidentified(0.0468),s:Fungi_sp(0.0173) + k:Fungi
Otu650 k:Fungi(1.0000),p:Mortierellomycota(0.7500),c:Mortierellomycotina_cls_Incertae_sedis(0.5625),o:Mortierellales(0.4219),f:Mortierellaceae(0.3164),g:Mortierella(0.2373),s:Mortierella_alpina(0.1685) + k:Fungi
Otu651 k:Fungi(0.9900),p:unidentified(0.3861),c:unidentified(0.1544),o:unidentified(0.0633),f:unidentified(0.0386),g:unidentified(0.0247),s:Fungi_sp(0.0096) + k:Fungi
Otu653 k:Fungi(1.0000),p:Rozellomycota(0.9700),c:unidentified(0.9506),o:unidentified(0.9316),f:unidentified(0.9316),g:unidentified(0.9316),s:Rozellomycota_sp(0.8850) + k:Fungi,p:Rozellomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Rozellomycota_sp
Otu654 k:Fungi(1.0000),p:Rozellomycota(0.8600),c:Rozellomycota_cls_Incertae_sedis(0.7396),o:GS10(0.6213),f:unidentified(0.5405),g:unidentified(0.4702),s:GS10_sp(0.3950) + k:Fungi,p:Rozellomycota
Otu652 k:Fungi(1.0000),p:Basidiomycota(0.8100),c:Tremellomycetes(0.3402),o:Tremellales(0.1429),f:Bulleribasidiaceae(0.0572),g:Bulleribasidium(0.0229),s:Bulleribasidium_oberjochense(0.0091) + k:Fungi,p:Basidiomycota
Otu656 k:Fungi(1.0000),p:Glomeromycota(0.4400),c:Glomeromycetes(0.1936),o:Diversisporales(0.0697),f:Acaulosporaceae(0.0223),g:Acaulospora(0.0069),s:Acaulospora_minuta(0.0006) + k:Fungi
Otu655 k:Fungi(1.0000),p:Rozellomycota(0.3000),c:unidentified(0.0690),o:unidentified(0.0159),f:unidentified(0.0075),g:unidentified(0.0041),s:Rozellomycota_sp(0.0007) + k:Fungi
Otu657 k:Fungi(0.9900),p:Ascomycota(0.2574),c:Xylonomycetes(0.0154),o:Symbiotaphrinales(0.0009),f:Symbiotaphrinales_fam._Incertae_sedis(0.0001),g:Symbiotaphrina(0.0000),s:Symbiotaphrina_buchneri(0.0000) + k:Fungi
Otu658 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.9100),o:Rhytismatales(0.6825),f:Rhytismataceae(0.4982),g:Lophodermium(0.3587),s:Lophodermium_piceae(0.2583) + k:Fungi,p:Ascomycota,c:Leotiomycetes
Otu659 k:Fungi(1.0000),p:unidentified(0.1600),c:unidentified(0.0448),o:unidentified(0.0134),f:unidentified(0.0060),g:unidentified(0.0037),s:Fungi_sp(0.0006) + k:Fungi
Otu660 k:Fungi(1.0000),p:Ascomycota(0.9400),c:unidentified(0.4700),o:unidentified(0.2350),f:unidentified(0.1527),g:unidentified(0.0993),s:Ascomycota_sp(0.0437) + k:Fungi,p:Ascomycota
Otu661 k:Fungi(1.0000),p:Mortierellomycota(1.0000),c:Mortierellomycotina_cls_Incertae_sedis(1.0000),o:Mortierellales(1.0000),f:Mortierellaceae(1.0000),g:Mortierella(1.0000),s:Mortierella_sp(1.0000) + k:Fungi,p:Mortierellomycota,c:Mortierellomycotina_cls_Incertae_sedis,o:Mortierellales,f:Mortierellaceae,g:Mortierella,s:Mortierella_sp
Otu662 k:Fungi(1.0000),p:Basidiomycota(0.9600),c:Tremellomycetes(0.8544),o:Tremellales(0.7604),f:Tremellaceae(0.6768),g:Cryptococcus(0.4196),s:Cryptococcus_sp(0.2350) + k:Fungi,p:Basidiomycota,c:Tremellomycetes
Otu663 k:Fungi(1.0000),p:Ascomycota(0.8400),c:Dothideomycetes(0.6636),o:Pleosporales(0.4844),f:unidentified(0.2325),g:unidentified(0.1744),s:Pleosporales_sp(0.0471) + k:Fungi,p:Ascomycota
Otu664 k:Fungi(1.0000),p:unidentified(0.1600),c:unidentified(0.0384),o:unidentified(0.0100),f:unidentified(0.0043),g:unidentified(0.0024),s:Fungi_sp(0.0004) + k:Fungi
Otu665 k:Fungi(1.0000),p:Rozellomycota(0.3200),c:unidentified(0.1440),o:unidentified(0.0677),f:unidentified(0.0426),g:unidentified(0.0307),s:Rozellomycota_sp(0.0058) + k:Fungi
Otu667 k:Fungi(1.0000),p:Ascomycota(0.4200),c:Dothideomycetes(0.0294),o:Mytilinidiales(0.0012),f:Mytilinidiaceae(0.0000),g:Lophium(0.0000),s:Lophium_mytilinum(0.0000) + k:Fungi
Otu666 k:Fungi(1.0000),p:Ascomycota(0.9600),c:Leotiomycetes(0.7680),o:Helotiales(0.5683),f:Hyaloscyphaceae(0.3467),g:unidentified(0.2461),s:Hyaloscyphaceae_sp(0.1058) + k:Fungi,p:Ascomycota
Otu669 k:Fungi(1.0000),p:Ascomycota(0.9800),c:Dothideomycetes(0.9506),o:Pleosporales(0.8841),f:unidentified(0.8045),g:unidentified(0.7321),s:Pleosporales_sp(0.6296) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales,f:unidentified
Otu670 k:Fungi(1.0000),p:Basidiomycota(0.5800),c:Agaricomycetes(0.2610),o:Agaricales(0.0940),f:unidentified(0.0207),g:unidentified(0.0074),s:Agaricales_sp(0.0007) + k:Fungi
Otu668 k:Fungi(1.0000),p:Rozellomycota(0.4700),c:Rozellomycota_cls_Incertae_sedis(0.2162),o:GS10(0.0713),f:unidentified(0.0407),g:unidentified(0.0264),s:GS10_sp(0.0087) + k:Fungi
Otu671 k:Fungi(1.0000),p:Basidiomycota(0.9100),c:Cystobasidiomycetes(0.6552),o:Cystobasidiomycetes_ord_Incertae_sedis(0.4390),f:Symmetrosporaceae(0.2722),g:Symmetrospora(0.1687),s:Symmetrospora_sp(0.0827) + k:Fungi,p:Basidiomycota
Otu674 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreomycetidae_ord_Incertae_sedis(1.0000),f:Glomerellaceae(1.0000),g:Colletotrichum(1.0000),s:Colletotrichum_sp(0.7000) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreomycetidae_ord_Incertae_sedis,f:Glomerellaceae,g:Colletotrichum
Otu672 k:Fungi(1.0000),p:Rozellomycota(0.3500),c:Rozellomycota_cls_Incertae_sedis(0.1190),o:GS11(0.0262),f:unidentified(0.0141),g:unidentified(0.0082),s:GS11_sp(0.0018) + k:Fungi
Otu676 k:Fungi(1.0000),p:Ascomycota(0.9400),c:Dothideomycetes(0.8648),o:Pleosporales(0.7610),f:Leptosphaeriaceae(0.6393),g:Leptosphaeria(0.5050),s:Leptosphaeria_rubefaciens(0.3939) + k:Fungi,p:Ascomycota,c:Dothideomycetes
Otu673 k:Fungi(1.0000),p:Basidiomycota(0.9200),c:Tremellomycetes(0.7820),o:Tremellales(0.6334),f:Bulleraceae(0.4561),g:Genolevuria(0.3010),s:Genolevuria_amylolytica(0.1987) + k:Fungi,p:Basidiomycota
Otu675 k:Fungi(1.0000),p:Ascomycota(0.9700),c:Pezizomycetes(0.8730),o:Pezizales(0.7857),f:Pezizaceae(0.6993),g:unidentified(0.6433),s:Pezizaceae_sp(0.5726) + k:Fungi,p:Ascomycota,c:Pezizomycetes
Otu677 k:Fungi(1.0000),p:Glomeromycota(0.2600),c:Glomeromycetes(0.0598),o:Glomerales(0.0108),f:Glomeraceae(0.0019),g:unidentified(0.0007),s:Glomeraceae_sp(0.0001) + k:Fungi
Otu679 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(1.0000),o:Helotiales(1.0000),f:Helotiaceae(0.5100),g:unidentified(0.3774),s:Helotiaceae_sp(0.1623) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales
Otu678 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Microbotryomycetes(1.0000),o:unidentified(0.5900),f:unidentified(0.3481),g:unidentified(0.2054),s:Microbotryomycetes_sp(0.1212) + k:Fungi,p:Basidiomycota,c:Microbotryomycetes
Otu680 k:Fungi(1.0000),p:unidentified(0.1600),c:unidentified(0.0432),o:unidentified(0.0121),f:unidentified(0.0075),g:unidentified(0.0051),s:Fungi_sp(0.0008) + k:Fungi
Otu681 k:Fungi(1.0000),p:Ascomycota(0.4200),c:Pezizomycetes(0.0882),o:Pezizales(0.0185),f:Pyronemataceae(0.0022),g:unidentified(0.0010),s:Pyronemataceae_sp(0.0001) + k:Fungi
Otu682 k:Fungi(1.0000),p:Chytridiomycota(0.5100),c:Lobulomycetes(0.1326),o:Lobulomycetales(0.0345),f:Lobulomycetaceae(0.0090),g:Clydaea(0.0023),s:Clydaea_vesicula(0.0006) + k:Fungi
Otu683 k:Fungi(0.9800),p:Rozellomycota(0.1470),c:unidentified(0.0250),o:unidentified(0.0052),f:unidentified(0.0016),g:unidentified(0.0007),s:Rozellomycota_sp(0.0000) + k:Fungi
Otu684 k:Fungi(1.0000),p:Chytridiomycota(0.6100),c:unidentified(0.3721),o:unidentified(0.2530),f:unidentified(0.1898),g:unidentified(0.1461),s:Chytridiomycota_sp(0.0818) + k:Fungi
Otu685 k:Fungi(0.9900),p:Basidiomycota(0.5742),c:Agaricomycetes(0.3043),o:Thelephorales(0.0700),f:Thelephoraceae(0.0133),g:unidentified(0.0047),s:Thelephoraceae_sp(0.0005) + k:Fungi
Otu688 k:Fungi(1.0000),p:Rozellomycota(0.6800),c:unidentified(0.4420),o:unidentified(0.3006),f:unidentified(0.2344),g:unidentified(0.1969),s:Rozellomycota_sp(0.1221) + k:Fungi
Otu686 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.6400),o:Helotiales(0.3072),f:Helotiaceae(0.1167),g:Articulospora(0.0432),s:Articulospora_sp(0.0160) + k:Fungi,p:Ascomycota
Otu687 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Corticiales(1.0000),f:Vuilleminiaceae(1.0000),g:Vuilleminia(1.0000),s:Vuilleminia_comedens(1.0000) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Corticiales,f:Vuilleminiaceae,g:Vuilleminia,s:Vuilleminia_comedens
Otu689 k:Fungi(1.0000),p:Rozellomycota(0.4300),c:unidentified(0.1935),o:unidentified(0.0871),f:unidentified(0.0522),g:unidentified(0.0371),s:Rozellomycota_sp(0.0119) + k:Fungi
Otu690 k:Fungi(1.0000),p:Rozellomycota(0.3400),c:unidentified(0.1292),o:unidentified(0.0504),f:unidentified(0.0257),g:unidentified(0.0157),s:Rozellomycota_sp(0.0045) + k:Fungi
Otu692 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(0.9900),f:Nectriaceae(0.9801),g:unidentified(0.9213),s:Nectriaceae_sp(0.8660) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:Nectriaceae,g:unidentified,s:Nectriaceae_sp
Otu691 k:Fungi(1.0000),p:Rozellomycota(0.7100),c:unidentified(0.4118),o:unidentified(0.2388),f:unidentified(0.1815),g:unidentified(0.1434),s:Rozellomycota_sp(0.0803) + k:Fungi
Otu693 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Tremellomycetes(0.9801),o:Trichosporonales(0.9507),f:Trichosporonaceae(0.9222),g:Apiotrichum(0.8115),s:Apiotrichum_xylopini(0.6817) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Trichosporonales,f:Trichosporonaceae,g:Apiotrichum
Otu694 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Capnodiales(1.0000),f:Mycosphaerellaceae(1.0000),g:Ramularia(0.9900),s:Ramularia_eucalypti(0.8613) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Capnodiales,f:Mycosphaerellaceae,g:Ramularia,s:Ramularia_eucalypti
Otu695 k:Fungi(0.9300),p:Rozellomycota(0.2046),c:Rozellomycota_cls_Incertae_sedis(0.0368),o:GS02(0.0055),f:unidentified(0.0025),g:unidentified(0.0014),s:GS02_sp(0.0002) + k:Fungi
Otu696 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Pezizomycetes(1.0000),o:Pezizales(1.0000),f:Pezizaceae(1.0000),g:Hydnobolites(1.0000),s:Hydnobolites_cerebriformis(1.0000) + k:Fungi,p:Ascomycota,c:Pezizomycetes,o:Pezizales,f:Pezizaceae,g:Hydnobolites,s:Hydnobolites_cerebriformis
Otu697 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(0.9800),o:Pleosporales(0.9604),f:Phaeosphaeriaceae(0.6243),g:unidentified(0.5993),s:Phaeosphaeriaceae_sp(0.3656) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales
Otu698 k:Fungi(1.0000),p:unidentified(1.0000),c:unidentified(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Fungi_sp(1.0000) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu700 k:Fungi(1.0000),p:Ascomycota(1.0000),c:unidentified(0.7900),o:unidentified(0.6241),f:unidentified(0.4930),g:unidentified(0.3895),s:Ascomycota_sp(0.3077) + k:Fungi,p:Ascomycota
Otu699 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(0.9000),o:unidentified(0.5670),f:unidentified(0.5670),g:unidentified(0.5670),s:Dothideomycetes_sp(0.3005) + k:Fungi,p:Ascomycota,c:Dothideomycetes
Otu701 k:Fungi(1.0000),p:unidentified(0.4700),c:unidentified(0.2350),o:unidentified(0.1363),f:unidentified(0.1131),g:unidentified(0.0962),s:Fungi_sp(0.0452) + k:Fungi
Otu704 k:Fungi(1.0000),p:Ascomycota(0.8900),c:Dothideomycetes(0.5785),o:unidentified(0.2083),f:unidentified(0.1083),g:unidentified(0.0596),s:Dothideomycetes_sp(0.0149) + k:Fungi,p:Ascomycota
Otu702 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Thelephorales(1.0000),f:Thelephoraceae(0.9900),g:unidentified(0.4851),s:Thelephoraceae_sp(0.2328) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales,f:Thelephoraceae
Otu705 k:Fungi(1.0000),p:unidentified(0.2600),c:unidentified(0.0780),o:unidentified(0.0250),f:unidentified(0.0145),g:unidentified(0.0088),s:Fungi_sp(0.0023) + k:Fungi
Otu703 k:Fungi(1.0000),p:unidentified(0.2200),c:unidentified(0.0484),o:unidentified(0.0165),f:unidentified(0.0086),g:unidentified(0.0050),s:Fungi_sp(0.0011) + k:Fungi
Otu707 k:Fungi(1.0000),p:Rozellomycota(0.4000),c:Rozellomycota_cls_Incertae_sedis(0.1440),o:GS11(0.0302),f:unidentified(0.0160),g:unidentified(0.0093),s:GS11_sp(0.0020) + k:Fungi
Otu706 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Microbotryomycetes(0.9800),o:Sporidiobolales(0.9604),f:Sporidiobolales_fam_Incertae_sedis(0.9412),g:Sporobolomyces(0.9224),s:Sporobolomyces_ruberrimus(0.8855) + k:Fungi,p:Basidiomycota,c:Microbotryomycetes,o:Sporidiobolales,f:Sporidiobolales_fam_Incertae_sedis,g:Sporobolomyces,s:Sporobolomyces_ruberrimus
Otu708 k:Fungi(1.0000),p:Ascomycota(0.8300),c:Sordariomycetes(0.6806),o:Hypocreomycetidae_ord_Incertae_sedis(0.5377),f:Plectosphaerellaceae(0.4248),g:Lectera(0.3313),s:Lectera_longa(0.1888) + k:Fungi,p:Ascomycota
Otu709 k:Fungi(1.0000),p:Chytridiomycota(0.5300),c:unidentified(0.2226),o:unidentified(0.0935),f:unidentified(0.0430),g:unidentified(0.0232),s:Chytridiomycota_sp(0.0098) + k:Fungi
Otu711 k:Fungi(1.0000),p:Rozellomycota(0.2900),c:unidentified(0.1334),o:unidentified(0.0667),f:unidentified(0.0447),g:unidentified(0.0326),s:Rozellomycota_sp(0.0075) + k:Fungi
Otu710 k:Fungi(1.0000),p:Rozellomycota(0.3800),c:unidentified(0.0988),o:unidentified(0.0306),f:unidentified(0.0193),g:unidentified(0.0129),s:Rozellomycota_sp(0.0032) + k:Fungi
Otu713 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(1.0000),f:unidentified(0.9900),g:unidentified(0.9801),s:Hypocreales_sp(0.9703) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:unidentified,g:unidentified,s:Hypocreales_sp
Otu714 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Sordariomycetes(0.9801),o:Hypocreales(0.9703),f:Nectriaceae(0.9509),g:Dactylonectria(0.9319),s:Dactylonectria_estremocensis(0.9039) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:Nectriaceae,g:Dactylonectria,s:Dactylonectria_estremocensis
Otu715 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Eurotiomycetes(0.6200),o:Chaetothyriales(0.3844),f:Herpotrichiellaceae(0.2383),g:Exophiala(0.1430),s:Exophiala_sp(0.0858) + k:Fungi,p:Ascomycota
Otu712 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(0.9900),o:Trichosporonales(0.9504),f:Trichosporonaceae(0.9124),g:unidentified(0.7847),s:Trichosporonaceae_sp(0.6513) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Trichosporonales,f:Trichosporonaceae
Otu716 k:Fungi(1.0000),p:Rozellomycota(0.3600),c:Rozellomycota_cls_Incertae_sedis(0.1044),o:GS07(0.0136),f:unidentified(0.0068),g:unidentified(0.0037),s:GS07_sp(0.0005) + k:Fungi
Otu717 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Pleosporales(1.0000),f:Montagnulaceae(1.0000),g:Paraphaeosphaeria(1.0000),s:Paraphaeosphaeria_michotii(1.0000) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales,f:Montagnulaceae,g:Paraphaeosphaeria,s:Paraphaeosphaeria_michotii
Otu718 k:Fungi(1.0000),p:Ascomycota(0.7500),c:Dothideomycetes(0.4875),o:Pleosporales(0.3071),f:unidentified(0.2242),g:unidentified(0.1928),s:Pleosporales_sp(0.0771) + k:Fungi
Otu719 k:Fungi(1.0000),p:Basidiomycota(0.9100),c:Tremellomycetes(0.7098),o:Tremellales(0.5465),f:unidentified(0.2623),g:unidentified(0.1285),s:Tremellales_sp(0.0566) + k:Fungi,p:Basidiomycota
Otu720 k:Fungi(1.0000),p:Basidiomycota(0.3300),c:Agaricomycetes(0.0957),o:Agaricales(0.0172),f:unidentified(0.0045),g:unidentified(0.0019),s:Agaricales_sp(0.0001) + k:Fungi
Otu721 k:Fungi(1.0000),p:Ascomycota(0.8200),c:Dothideomycetes(0.5986),o:Pleosporales(0.4190),f:Phaeosphaeriaceae(0.1634),g:unidentified(0.1291),s:Phaeosphaeriaceae_sp(0.0478) + k:Fungi,p:Ascomycota
Otu722 k:Fungi(1.0000),p:Ascomycota(0.9700),c:Dothideomycetes(0.9409),o:Pleosporales(0.9127),f:Cucurbitariaceae(0.7210),g:Pyrenochaetopsis(0.5696),s:Pyrenochaetopsis_sp(0.4500) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales
Otu723 k:Fungi(1.0000),p:unidentified(0.1700),c:unidentified(0.0323),o:unidentified(0.0061),f:unidentified(0.0022),g:unidentified(0.0010),s:Fungi_sp(0.0002) + k:Fungi
Otu724 k:Fungi(1.0000),p:Chytridiomycota(0.1100),c:unidentified(0.0253),o:unidentified(0.0068),f:unidentified(0.0034),g:unidentified(0.0019),s:Chytridiomycota_sp(0.0002) + k:Fungi
Otu727 k:Fungi(1.0000),p:Rozellomycota(0.2800),c:Rozellomycota_cls_Incertae_sedis(0.0588),o:GS05(0.0071),f:unidentified(0.0036),g:unidentified(0.0021),s:GS05_sp(0.0003) + k:Fungi
Otu726 k:Fungi(1.0000),p:Ascomycota(0.8900),c:Dothideomycetes(0.7565),o:Pleosporales(0.6052),f:Leptosphaeriaceae(0.3934),g:Subplenodomus(0.2282),s:Subplenodomus_valerianae(0.1323) + k:Fungi,p:Ascomycota
Otu725 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(1.0000),o:Helotiales(1.0000),f:unidentified(0.9000),g:unidentified(0.8730),s:Helotiales_sp(0.7857) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales,f:unidentified,g:unidentified
Otu728 k:Fungi(0.9600),p:unidentified(0.6240),c:unidentified(0.4555),o:unidentified(0.3325),f:unidentified(0.2660),g:unidentified(0.2181),s:Fungi_sp(0.1418) + k:Fungi
Otu730 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Ustilaginomycotina_cls_Incertae_sedis(1.0000),o:Malasseziales(1.0000),f:Malasseziaceae(0.9800),g:Malassezia(0.9604),s:Malassezia_restricta(0.9412) + k:Fungi,p:Basidiomycota,c:Ustilaginomycotina_cls_Incertae_sedis,o:Malasseziales,f:Malasseziaceae,g:Malassezia,s:Malassezia_restricta
Otu729 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:unidentified(0.7900),f:unidentified(0.6241),g:unidentified(0.4930),s:Agaricomycetes_sp(0.3895) + k:Fungi,p:Basidiomycota,c:Agaricomycetes
Otu731 k:Fungi(1.0000),p:Rozellomycota(0.4500),c:unidentified(0.2025),o:unidentified(0.0972),f:unidentified(0.0593),g:unidentified(0.0403),s:Rozellomycota_sp(0.0141) + k:Fungi
Otu733 k:Fungi(1.0000),p:Basidiomycota(0.7500),c:Tremellomycetes(0.2775),o:Tremellales(0.0638),f:Bulleribasidiaceae(0.0128),g:Bulleribasidium(0.0026),s:Bulleribasidium_oberjochense(0.0005) + k:Fungi
Otu732 k:Fungi(1.0000),p:Ascomycota(0.5200),c:Saccharomycetes(0.1612),o:Saccharomycetales(0.0500),f:Trichomonascaceae(0.0100),g:Sugiyamaella(0.0020),s:Sugiyamaella_sp(0.0004) + k:Fungi
Otu735 k:Fungi(1.0000),p:Rozellomycota(0.3200),c:unidentified(0.0928),o:unidentified(0.0297),f:unidentified(0.0143),g:unidentified(0.0073),s:Rozellomycota_sp(0.0015) + k:Fungi
Otu734 k:Fungi(1.0000),p:Rozellomycota(0.1600),c:Rozellomycota_cls_Incertae_sedis(0.0192),o:GS11(0.0023),f:unidentified(0.0006),g:unidentified(0.0003),s:GS11_sp(0.0000) + k:Fungi
Otu736 k:Fungi(1.0000),p:Ascomycota(0.9800),c:Taphrinomycetes(0.9506),o:Taphrinales(0.9221),f:Taphrinaceae(0.8944),g:Taphrina(0.8676),s:Taphrina_vestergrenii(0.8242) + k:Fungi,p:Ascomycota,c:Taphrinomycetes,o:Taphrinales,f:Taphrinaceae,g:Taphrina,s:Taphrina_vestergrenii
Otu737 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Dothideomycetes(0.9603),o:Pleosporales(0.9219),f:unidentified(0.8850),g:unidentified(0.8496),s:Pleosporales_sp(0.8071) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales,f:unidentified,g:unidentified,s:Pleosporales_sp
Otu738 k:Fungi(1.0000),p:unidentified(0.3900),c:unidentified(0.1599),o:unidentified(0.0672),f:unidentified(0.0457),g:unidentified(0.0329),s:Fungi_sp(0.0128) + k:Fungi
Otu739 k:Fungi(1.0000),p:unidentified(0.1200),c:unidentified(0.0228),o:unidentified(0.0048),f:unidentified(0.0016),g:unidentified(0.0007),s:Fungi_sp(0.0001) + k:Fungi
Otu741 k:Fungi(1.0000),p:Ascomycota(0.9700),c:Dothideomycetes(0.8730),o:unidentified(0.3055),f:unidentified(0.1100),g:unidentified(0.0396),s:Dothideomycetes_sp(0.0103) + k:Fungi,p:Ascomycota,c:Dothideomycetes
Otu742 k:Fungi(1.0000),p:Rozellomycota(0.6000),c:unidentified(0.3780),o:unidentified(0.2533),f:unidentified(0.1975),g:unidentified(0.1659),s:Rozellomycota_sp(0.0913) + k:Fungi
Otu740 k:Fungi(1.0000),p:Rozellomycota(0.8200),c:unidentified(0.8036),o:unidentified(0.7875),f:unidentified(0.7718),g:unidentified(0.7563),s:Rozellomycota_sp(0.6202) + k:Fungi,p:Rozellomycota,c:unidentified
Otu743 k:Fungi(1.0000),p:unidentified(0.4000),c:unidentified(0.1680),o:unidentified(0.0739),f:unidentified(0.0525),g:unidentified(0.0373),s:Fungi_sp(0.0149) + k:Fungi
Otu746 k:Fungi(1.0000),p:Rozellomycota(0.6700),c:Rozellomycota_cls_Incertae_sedis(0.4489),o:GS10(0.1975),f:unidentified(0.1402),g:unidentified(0.1024),s:GS10_sp(0.0450) + k:Fungi
Otu744 k:Fungi(0.9900),p:Rozellomycota(0.2970),c:unidentified(0.0950),o:unidentified(0.0352),f:unidentified(0.0200),g:unidentified(0.0132),s:Rozellomycota_sp(0.0026) + k:Fungi
Otu745 k:Fungi(1.0000),p:unidentified(0.5600),c:unidentified(0.4536),o:unidentified(0.3674),f:unidentified(0.3086),g:unidentified(0.2654),s:Fungi_sp(0.1486) + k:Fungi
Otu747 k:Fungi(1.0000),p:Ascomycota(0.9600),c:unidentified(0.9408),o:unidentified(0.9220),f:unidentified(0.9035),g:unidentified(0.9035),s:Ascomycota_sp(0.8493) + k:Fungi,p:Ascomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Ascomycota_sp
Otu748 k:Protista(0.1400),p:Cercozoa(0.0196),c:unidentified(0.0037),o:unidentified(0.0009),f:unidentified(0.0003),g:unidentified(0.0001),s:Cercozoa_sp(0.0000) +
Otu749 k:Fungi(1.0000),p:Basidiomycota(0.4700),c:Agaricomycetes(0.1833),o:Sebacinales(0.0220),f:Sebacinaceae(0.0026),g:Sebacina(0.0002),s:Sebacina_sp(0.0000) + k:Fungi
Otu751 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(0.9800),o:Tremellales(0.9212),f:Tremellales_fam_Incertae_sedis(0.8659),g:Fellomyces(0.8140),s:Fellomyces_sp(0.7651) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Tremellales_fam_Incertae_sedis,g:Fellomyces
Otu750 k:Fungi(1.0000),p:unidentified(0.4300),c:unidentified(0.3010),o:unidentified(0.2167),f:unidentified(0.1690),g:unidentified(0.1352),s:Fungi_sp(0.0582) + k:Fungi
Otu753 k:Fungi(0.8400),p:unidentified(0.4536),c:unidentified(0.3221),o:unidentified(0.2287),f:unidentified(0.1715),g:unidentified(0.1458),s:Fungi_sp(0.0787) + k:Fungi
Otu752 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Eurotiomycetes(0.9801),o:Eurotiales(0.9703),f:Trichocomaceae(0.9606),g:Aspergillus(0.8837),s:Aspergillus_versicolor(0.6540) + k:Fungi,p:Ascomycota,c:Eurotiomycetes,o:Eurotiales,f:Trichocomaceae,g:Aspergillus
Otu755 k:Fungi(1.0000),p:Rozellomycota(0.8900),c:unidentified(0.8099),o:unidentified(0.7370),f:unidentified(0.6707),g:unidentified(0.6237),s:Rozellomycota_sp(0.5551) + k:Fungi,p:Rozellomycota,c:unidentified
Otu756 k:Fungi(1.0000),p:unidentified(0.6400),c:unidentified(0.4224),o:unidentified(0.2999),f:unidentified(0.2309),g:unidentified(0.1847),s:Fungi_sp(0.1182) + k:Fungi
Otu754 k:Fungi(1.0000),p:Rozellomycota(0.3800),c:unidentified(0.2128),o:unidentified(0.1234),f:unidentified(0.0926),g:unidentified(0.0713),s:Rozellomycota_sp(0.0214) + k:Fungi
Otu757 k:Fungi(1.0000),p:Ascomycota(0.8800),c:Leotiomycetes(0.2816),o:Helotiales(0.0760),f:Helotiaceae(0.0114),g:unidentified(0.0049),s:Helotiaceae_sp(0.0006) + k:Fungi,p:Ascomycota
Otu760 k:Fungi(1.0000),p:Rozellomycota(0.9900),c:unidentified(0.9801),o:unidentified(0.9703),f:unidentified(0.9606),g:unidentified(0.9510),s:Rozellomycota_sp(0.9415) + k:Fungi,p:Rozellomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Rozellomycota_sp
Otu758 k:Fungi(1.0000),p:Ascomycota(0.8900),c:Dothideomycetes(0.6497),o:Pleosporales(0.3833),f:unidentified(0.3028),g:unidentified(0.2574),s:Pleosporales_sp(0.1441) + k:Fungi,p:Ascomycota
Otu759 k:Fungi(1.0000),p:Basidiomycota(0.6000),c:Agaricomycetes(0.3180),o:Sebacinales(0.0541),f:unidentified(0.0108),g:unidentified(0.0039),s:Sebacinales_sp(0.0005) + k:Fungi
Otu762 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(0.9700),o:Pleosporales(0.9312),f:Leptosphaeriaceae(0.8660),g:Leptosphaeria(0.8054),s:Leptosphaeria_sp(0.7410) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales,f:Leptosphaeriaceae,g:Leptosphaeria
Otu761 k:Fungi(1.0000),p:Rozellomycota(0.4400),c:Rozellomycota_cls_Incertae_sedis(0.1936),o:GS10(0.0620),f:unidentified(0.0328),g:unidentified(0.0200),s:GS10_sp(0.0064) + k:Fungi
Otu764 k:Fungi(1.0000),p:Rozellomycota(0.5800),c:unidentified(0.3190),o:unidentified(0.1786),f:unidentified(0.1197),g:unidentified(0.0910),s:Rozellomycota_sp(0.0464) + k:Fungi
Otu763 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:Tremellaceae(1.0000),g:Cryptococcus(0.9300),s:Cryptococcus_sp(0.8277) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Tremellaceae,g:Cryptococcus,s:Cryptococcus_sp
Otu765 k:Fungi(1.0000),p:Glomeromycota(0.3000),c:Glomeromycetes(0.0870),o:Diversisporales(0.0078),f:Acaulosporaceae(0.0006),g:unidentified(0.0003),s:Acaulosporaceae_sp(0.0000) + k:Fungi
Otu766 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Capnodiales(1.0000),f:Mycosphaerellaceae(1.0000),g:Ramularia(1.0000),s:Ramularia_sp(0.5500) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Capnodiales,f:Mycosphaerellaceae,g:Ramularia
Otu768 k:Fungi(1.0000),p:Ascomycota(0.9500),c:Sordariomycetes(0.8835),o:Hypocreales(0.7686),f:Hypocreales_fam_Incertae_sedis(0.5534),g:Acremonium(0.3708),s:Acremonium_curvulum(0.2484) + k:Fungi,p:Ascomycota,c:Sordariomycetes
Otu767 k:Fungi(1.0000),p:Ascomycota(0.9100),c:unidentified(0.4459),o:unidentified(0.2319),f:unidentified(0.1646),g:unidentified(0.1202),s:Ascomycota_sp(0.0493) + k:Fungi,p:Ascomycota
Otu770 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:unidentified(0.8000),o:unidentified(0.6400),f:unidentified(0.5120),g:unidentified(0.4096),s:Basidiomycota_sp(0.3277) + k:Fungi,p:Basidiomycota,c:unidentified
Otu771 k:Fungi(1.0000),p:Ascomycota(0.9500),c:Sordariomycetes(0.8265),o:Hypocreales(0.2397),f:unidentified(0.0815),g:unidentified(0.0367),s:Hypocreales_sp(0.0062) + k:Fungi,p:Ascomycota,c:Sordariomycetes
Otu769 k:Protozoa(0.1200),p:Microsporidia(0.0144),c:Microsporea(0.0017),o:Microsporida(0.0002),f:Microsporida_fam_Incertae_sedis(0.0000),g:Paramicrosporidium(0.0000),s:Paramicrosporidium_saccamoebae(0.0000) +
Otu772 k:Fungi(0.9900),p:unidentified(0.4752),c:unidentified(0.3516),o:unidentified(0.2602),f:unidentified(0.2186),g:unidentified(0.1880),s:Fungi_sp(0.0902) + k:Fungi
Otu773 k:Fungi(1.0000),p:Rozellomycota(0.5200),c:unidentified(0.2548),o:unidentified(0.1249),f:unidentified(0.0749),g:unidentified(0.0524),s:Rozellomycota_sp(0.0220) + k:Fungi
Otu775 k:Fungi(1.0000),p:GS19(0.1500),c:unidentified(0.0600),o:unidentified(0.0246),f:unidentified(0.0133),g:unidentified(0.0082),s:GS19_sp(0.0012) + k:Fungi
Otu774 k:Fungi(1.0000),p:Rozellomycota(0.3700),c:unidentified(0.0592),o:unidentified(0.0095),f:unidentified(0.0045),g:unidentified(0.0025),s:Rozellomycota_sp(0.0003) + k:Fungi
Otu777 k:Fungi(0.9600),p:unidentified(0.7392),c:unidentified(0.6209),o:unidentified(0.5402),f:unidentified(0.4754),g:unidentified(0.4326),s:Fungi_sp(0.3331) + k:Fungi
Otu776 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Trichosporonales(0.9900),f:Trichosporonaceae(0.9801),g:Trichosporon(0.5783),s:Trichosporon_wieringae(0.3238) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Trichosporonales,f:Trichosporonaceae
Otu778 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(0.9900),o:Capnodiales(0.9801),f:Mycosphaerellaceae(0.9703),g:Ramularia(0.7665),s:Ramularia_proteae(0.2530) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Capnodiales,f:Mycosphaerellaceae
Otu780 k:Fungi(1.0000),p:unidentified(0.1700),c:unidentified(0.0493),o:unidentified(0.0143),f:unidentified(0.0081),g:unidentified(0.0051),s:Fungi_sp(0.0009) + k:Fungi
Otu779 k:Fungi(1.0000),p:Ascomycota(0.8700),c:Sordariomycetes(0.7569),o:Hypocreales(0.6585),f:Bionectriaceae(0.5400),g:unidentified(0.5346),s:Bionectriaceae_sp(0.4383) + k:Fungi,p:Ascomycota
Otu781 k:Fungi(1.0000),p:Rozellomycota(0.1900),c:Rozellomycota_cls_Incertae_sedis(0.0266),o:GS11(0.0027),f:unidentified(0.0007),g:unidentified(0.0003),s:GS11_sp(0.0000) + k:Fungi
Otu783 k:Fungi(1.0000),p:Rozellomycota(0.6500),c:unidentified(0.4160),o:unidentified(0.2870),f:unidentified(0.2268),g:unidentified(0.1905),s:Rozellomycota_sp(0.1143) + k:Fungi
Otu784 k:Fungi(1.0000),p:Rozellomycota(0.4900),c:Rozellomycota_cls_Incertae_sedis(0.2352),o:GS11(0.0564),f:unidentified(0.0294),g:unidentified(0.0170),s:GS11_sp(0.0041) + k:Fungi
Otu782 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.9700),o:Helotiales(0.8536),f:Helotiales_fam_Incertae_sedis(0.7170),g:Patinella(0.6023),s:Patinella_hyalophaea(0.5059) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales
Otu785 k:Fungi(1.0000),p:Rozellomycota(0.6200),c:unidentified(0.3534),o:unidentified(0.2050),f:unidentified(0.1414),g:unidentified(0.1131),s:Rozellomycota_sp(0.0622) + k:Fungi
Otu787 k:Fungi(1.0000),p:Rozellomycota(0.4400),c:Rozellomycota_cls_Incertae_sedis(0.1452),o:GS07(0.0276),f:unidentified(0.0146),g:unidentified(0.0080),s:GS07_sp(0.0015) + k:Fungi
Otu786 k:Fungi(1.0000),p:Ascomycota(0.7700),c:Dothideomycetes(0.3388),o:Pleosporales(0.1220),f:unidentified(0.0427),g:unidentified(0.0175),s:Pleosporales_sp(0.0032) + k:Fungi
Otu788 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Ustilaginomycotina_cls_Incertae_sedis(1.0000),o:Malasseziales(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Malasseziales_sp(1.0000) + k:Fungi,p:Basidiomycota,c:Ustilaginomycotina_cls_Incertae_sedis,o:Malasseziales,f:unidentified,g:unidentified,s:Malasseziales_sp
Otu789 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(1.0000),o:Helotiales(1.0000),f:Helotiales_fam_Incertae_sedis(0.9800),g:Scytalidium(0.9408),s:Scytalidium_sp(0.8185) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales,f:Helotiales_fam_Incertae_sedis,g:Scytalidium,s:Scytalidium_sp
Otu791 k:Fungi(1.0000),p:unidentified(0.3800),c:unidentified(0.1558),o:unidentified(0.0639),f:unidentified(0.0358),g:unidentified(0.0215),s:Fungi_sp(0.0082) + k:Fungi
Otu790 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Eurotiomycetes(0.8900),o:Eurotiales(0.7654),f:Trichocomaceae(0.6582),g:Aspergillus(0.5529),s:Aspergillus_felis(0.2046) + k:Fungi,p:Ascomycota,c:Eurotiomycetes
Otu792 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.8700),o:Helotiales(0.4437),f:unidentified(0.2307),g:unidentified(0.1523),s:Helotiales_sp(0.0426) + k:Fungi,p:Ascomycota,c:Leotiomycetes
Otu793 k:Fungi(1.0000),p:Mortierellomycota(0.8800),c:Mortierellomycotina_cls_Incertae_sedis(0.7040),o:Mortierellales(0.5632),f:Mortierellaceae(0.4280),g:Mortierella(0.3253),s:Mortierella_angusta(0.0943) + k:Fungi,p:Mortierellomycota
Otu795 k:Fungi(1.0000),p:GS19(0.0800),c:unidentified(0.0160),o:unidentified(0.0038),f:unidentified(0.0013),g:unidentified(0.0006),s:GS19_sp(0.0000) + k:Fungi
Otu796 k:Fungi(0.9900),p:Rozellomycota(0.4356),c:unidentified(0.2134),o:unidentified(0.1259),f:unidentified(0.0869),g:unidentified(0.0686),s:Rozellomycota_sp(0.0268) + k:Fungi
Otu794 k:Fungi(1.0000),p:Ascomycota(0.8700),c:Orbiliomycetes(0.4089),o:Orbiliales(0.1881),f:Orbiliaceae(0.0865),g:unidentified(0.0597),s:Orbiliaceae_sp(0.0263) + k:Fungi,p:Ascomycota
Otu797 k:Fungi(1.0000),p:Rozellomycota(0.1800),c:Rozellomycota_cls_Incertae_sedis(0.0270),o:GS10(0.0019),f:unidentified(0.0008),g:unidentified(0.0004),s:GS10_sp(0.0000) + k:Fungi
Otu799 k:Fungi(1.0000),p:unidentified(0.4700),c:unidentified(0.2538),o:unidentified(0.1421),f:unidentified(0.1080),g:unidentified(0.0875),s:Fungi_sp(0.0411) + k:Fungi
Otu798 k:Fungi(1.0000),p:Entomophthoromycota(1.0000),c:Basidiobolomycetes(1.0000),o:Basidiobolales(1.0000),f:Basidiobolaceae(1.0000),g:Basidiobolus(1.0000),s:Basidiobolus_magnus(0.9300) + k:Fungi,p:Entomophthoromycota,c:Basidiobolomycetes,o:Basidiobolales,f:Basidiobolaceae,g:Basidiobolus,s:Basidiobolus_magnus
Otu801 k:Fungi(1.0000),p:Basidiomycota(0.8900),c:Cystobasidiomycetes(0.4272),o:Erythrobasidiales(0.1794),f:Erythrobasidiales_fam_Incertae_sedis(0.0754),g:Bannoa(0.0317),s:Bannoa_hahajimensis(0.0073) + k:Fungi,p:Basidiomycota
Otu800 k:Fungi(1.0000),p:Rozellomycota(0.3200),c:unidentified(0.1184),o:unidentified(0.0699),f:unidentified(0.0517),g:unidentified(0.0403),s:Rozellomycota_sp(0.0101) + k:Fungi
Otu802 k:Fungi(1.0000),p:unidentified(0.2900),c:unidentified(0.1334),o:unidentified(0.0640),f:unidentified(0.0403),g:unidentified(0.0294),s:Fungi_sp(0.0085) + k:Fungi
Otu803 k:Fungi(0.9400),p:unidentified(0.1598),c:unidentified(0.0575),o:unidentified(0.0213),f:unidentified(0.0113),g:unidentified(0.0065),s:Fungi_sp(0.0011) + k:Fungi
Otu804 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Hymenochaetales(1.0000),f:Schizoporaceae(1.0000),g:Hyphodontia(1.0000),s:Hyphodontia_pallidula(1.0000) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Hymenochaetales,f:Schizoporaceae,g:Hyphodontia,s:Hyphodontia_pallidula
Otu805 k:Fungi(1.0000),p:Basidiomycota(0.8300),c:Tremellomycetes(0.3154),o:Trichosporonales(0.0631),f:Trichosporonaceae(0.0126),g:Vanrija(0.0023),s:Vanrija_fragicola(0.0004) + k:Fungi,p:Basidiomycota
Otu806 k:Fungi(1.0000),p:Rozellomycota(0.3300),c:Rozellomycota_cls_Incertae_sedis(0.1023),o:GS07(0.0153),f:unidentified(0.0080),g:unidentified(0.0045),s:GS07_sp(0.0007) + k:Fungi
Otu808 k:Fungi(1.0000),p:Rozellomycota(0.2100),c:unidentified(0.0525),o:unidentified(0.0163),f:unidentified(0.0075),g:unidentified(0.0040),s:Rozellomycota_sp(0.0006) + k:Fungi
Otu807 k:Fungi(1.0000),p:Ascomycota(0.9200),c:Dothideomycetes(0.7820),o:Pleosporales(0.6491),f:unidentified(0.5452),g:unidentified(0.4798),s:Pleosporales_sp(0.3838) + k:Fungi,p:Ascomycota
Otu809 k:Fungi(1.0000),p:Rozellomycota(0.4600),c:Rozellomycota_cls_Incertae_sedis(0.1978),o:GS10(0.0514),f:unidentified(0.0365),g:unidentified(0.0270),s:GS10_sp(0.0070) + k:Fungi
Otu810 k:Fungi(1.0000),p:Rozellomycota(0.6100),c:unidentified(0.3294),o:unidentified(0.1845),f:unidentified(0.1365),g:unidentified(0.1065),s:Rozellomycota_sp(0.0511) + k:Fungi
Otu811 k:Fungi(1.0000),p:Basidiomycota(0.3400),c:Agaricomycetes(0.0986),o:Agaricales(0.0099),f:unidentified(0.0041),g:unidentified(0.0021),s:Agaricales_sp(0.0001) + k:Fungi
Otu813 k:Fungi(1.0000),p:Rozellomycota(1.0000),c:Rozellomycota_cls_Incertae_sedis(1.0000),o:GS11(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:GS11_sp(1.0000) + k:Fungi,p:Rozellomycota,c:Rozellomycota_cls_Incertae_sedis,o:GS11,f:unidentified,g:unidentified,s:GS11_sp
Otu812 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(0.9600),o:unidentified(0.5280),f:unidentified(0.3221),g:unidentified(0.2061),s:Sordariomycetes_sp(0.1072) + k:Fungi,p:Ascomycota,c:Sordariomycetes
Otu814 k:Fungi(1.0000),p:Ascomycota(1.0000),c:unidentified(0.8800),o:unidentified(0.7744),f:unidentified(0.6815),g:unidentified(0.6747),s:Ascomycota_sp(0.5937) + k:Fungi,p:Ascomycota,c:unidentified
Otu815 k:Fungi(1.0000),p:Rozellomycota(0.9700),c:unidentified(0.9215),o:unidentified(0.8754),f:unidentified(0.8492),g:unidentified(0.8322),s:Rozellomycota_sp(0.7906) + k:Fungi,p:Rozellomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified
Otu816 k:Fungi(1.0000),p:Glomeromycota(0.1700),c:Glomeromycetes(0.0272),o:Glomerales(0.0038),f:Glomeraceae(0.0005),g:Glomus(0.0000),s:Glomus_sp(0.0000) + k:Fungi
Otu817 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.9800),o:Helotiales(0.9604),f:unidentified(0.9316),g:unidentified(0.9036),s:Helotiales_sp(0.8585) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales,f:unidentified,g:unidentified,s:Helotiales_sp
Otu818 k:Fungi(1.0000),p:unidentified(0.5300),c:unidentified(0.3922),o:unidentified(0.2942),f:unidentified(0.2324),g:unidentified(0.1929),s:Fungi_sp(0.1022) + k:Fungi
Otu820 k:Fungi(1.0000),p:unidentified(0.3200),c:unidentified(0.1120),o:unidentified(0.0403),f:unidentified(0.0218),g:unidentified(0.0126),s:Fungi_sp(0.0040) + k:Fungi
Otu819 k:Fungi(1.0000),p:Rozellomycota(0.5200),c:unidentified(0.2236),o:unidentified(0.1006),f:unidentified(0.0694),g:unidentified(0.0486),s:Rozellomycota_sp(0.0160) + k:Fungi
Otu821 k:Fungi(1.0000),p:unidentified(0.8700),c:unidentified(0.7917),o:unidentified(0.7204),f:unidentified(0.6988),g:unidentified(0.6849),s:Fungi_sp(0.5958) + k:Fungi,p:unidentified
Otu822 k:Fungi(1.0000),p:Chytridiomycota(0.6500),c:unidentified(0.4355),o:unidentified(0.2961),f:unidentified(0.2103),g:unidentified(0.1577),s:Chytridiomycota_sp(0.0930) + k:Fungi
Otu823 k:Fungi(1.0000),p:unidentified(1.0000),c:unidentified(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Fungi_sp(1.0000) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu825 k:Fungi(1.0000),p:Rozellomycota(0.2100),c:unidentified(0.0462),o:unidentified(0.0115),f:unidentified(0.0040),g:unidentified(0.0017),s:Rozellomycota_sp(0.0002) + k:Fungi
Otu824 k:Fungi(1.0000),p:Basidiomycota(0.6400),c:Agaricomycetes(0.3456),o:Sebacinales(0.0518),f:unidentified(0.0093),g:unidentified(0.0035),s:Sebacinales_sp(0.0003) + k:Fungi
Otu826 k:Fungi(1.0000),p:Rozellomycota(0.2800),c:unidentified(0.0896),o:unidentified(0.0305),f:unidentified(0.0152),g:unidentified(0.0097),s:Rozellomycota_sp(0.0017) + k:Fungi
Otu829 k:Fungi(1.0000),p:Basidiomycota(0.3500),c:Agaricomycetes(0.0980),o:Agaricales(0.0206),f:Amanitaceae(0.0025),g:Amanita(0.0003),s:Amanita_ponderosa(0.0000) + k:Fungi
Otu828 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Wallemiomycetes(1.0000),o:Geminibasidiales(1.0000),f:Geminibasidiaceae(1.0000),g:Geminibasidium(1.0000),s:Geminibasidium_sp(1.0000) + k:Fungi,p:Basidiomycota,c:Wallemiomycetes,o:Geminibasidiales,f:Geminibasidiaceae,g:Geminibasidium,s:Geminibasidium_sp
Otu827 k:Fungi(1.0000),p:Chytridiomycota(0.5600),c:Rhizophydiomycetes(0.2128),o:Rhizophydiales(0.0809),f:Rhizophydiaceae(0.0307),g:Rhizophydium(0.0117),s:Rhizophydium_sp(0.0044) + k:Fungi
Otu830 k:Fungi(1.0000),p:unidentified(0.9000),c:unidentified(0.8100),o:unidentified(0.7371),f:unidentified(0.6929),g:unidentified(0.6513),s:Fungi_sp(0.5862) + k:Fungi,p:unidentified,c:unidentified
Otu832 k:Fungi(1.0000),p:Basidiomycota(0.4100),c:Agaricomycetes(0.1435),o:Sebacinales(0.0230),f:Serendipitaceae(0.0030),g:unidentified(0.0016),s:Serendipitaceae_sp(0.0002) + k:Fungi
Otu831 k:Fungi(1.0000),p:unidentified(0.2000),c:unidentified(0.0480),o:unidentified(0.0120),f:unidentified(0.0059),g:unidentified(0.0032),s:Fungi_sp(0.0006) + k:Fungi
Otu833 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(1.0000),f:Cordycipitaceae(1.0000),g:Cordyceps(0.7600),s:Cordyceps_brongniartii(0.5548) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:Cordycipitaceae
Otu835 k:Fungi(1.0000),p:Ascomycota(0.9100),c:Dothideomycetes(0.7098),o:Pleosporales(0.5324),f:unidentified(0.4046),g:unidentified(0.3196),s:Pleosporales_sp(0.2110) + k:Fungi,p:Ascomycota
Otu834 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Boletales(1.0000),f:Sclerodermataceae(1.0000),g:Pisolithus(1.0000),s:Pisolithus_sp(0.8900) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Boletales,f:Sclerodermataceae,g:Pisolithus,s:Pisolithus_sp
Otu836 k:Fungi(1.0000),p:Rozellomycota(0.1600),c:unidentified(0.0304),o:unidentified(0.0064),f:unidentified(0.0021),g:unidentified(0.0012),s:Rozellomycota_sp(0.0001) + k:Fungi
Otu837 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Pleosporales(1.0000),f:Pleosporales_fam_Incertae_sedis(1.0000),g:Periconia(1.0000),s:Periconia_sp(1.0000) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales,f:Pleosporales_fam_Incertae_sedis,g:Periconia,s:Periconia_sp
Otu838 k:Fungi(1.0000),p:Ascomycota(0.6900),c:Xylonomycetes(0.0759),o:Symbiotaphrinales(0.0083),f:Symbiotaphrinales_fam._Incertae_sedis(0.0009),g:Symbiotaphrina(0.0001),s:Symbiotaphrina_buchneri(0.0000) + k:Fungi
Otu839 k:Fungi(1.0000),p:Ascomycota(0.9700),c:Leotiomycetes(0.2910),o:Helotiales(0.0640),f:unidentified(0.0186),g:unidentified(0.0071),s:Helotiales_sp(0.0007) + k:Fungi,p:Ascomycota
Otu841 k:Fungi(1.0000),p:Ascomycota(0.8500),c:Sordariomycetes(0.7140),o:Hypocreales(0.5926),f:Nectriaceae(0.4208),g:Thelonectria(0.2020),s:Thelonectria_discophora(0.0707) + k:Fungi,p:Ascomycota
Otu840 k:Fungi(1.0000),p:Ascomycota(1.0000),c:unidentified(0.7200),o:unidentified(0.5184),f:unidentified(0.3732),g:unidentified(0.2687),s:Ascomycota_sp(0.1935) + k:Fungi,p:Ascomycota
Otu844 k:Fungi(1.0000),p:unidentified(0.1500),c:unidentified(0.0285),o:unidentified(0.0054),f:unidentified(0.0025),g:unidentified(0.0013),s:Fungi_sp(0.0002) + k:Fungi
Otu843 k:Fungi(0.9900),p:unidentified(0.2475),c:unidentified(0.0767),o:unidentified(0.0238),f:unidentified(0.0128),g:unidentified(0.0076),s:Fungi_sp(0.0019) + k:Fungi
Otu845 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(1.0000),f:Hypocreales_fam_Incertae_sedis(1.0000),g:Acremonium(1.0000),s:Acremonium_rutilum(1.0000) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:Hypocreales_fam_Incertae_sedis,g:Acremonium,s:Acremonium_rutilum
Otu842 k:Fungi(1.0000),p:Rozellomycota(0.3700),c:Rozellomycota_cls_Incertae_sedis(0.1073),o:GS11(0.0193),f:unidentified(0.0118),g:unidentified(0.0075),s:GS11_sp(0.0014) + k:Fungi
Otu846 k:Fungi(1.0000),p:unidentified(1.0000),c:unidentified(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Fungi_sp(1.0000) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu847 k:Fungi(0.9900),p:unidentified(0.6534),c:unidentified(0.5031),o:unidentified(0.3874),f:unidentified(0.3177),g:unidentified(0.2637),s:Fungi_sp(0.1740) + k:Fungi
Otu848 k:Fungi(1.0000),p:Rozellomycota(0.3200),c:unidentified(0.0672),o:unidentified(0.0148),f:unidentified(0.0069),g:unidentified(0.0035),s:Rozellomycota_sp(0.0004) + k:Fungi
Otu849 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.9900),o:Helotiales(0.9603),f:Helotiaceae(0.6722),g:unidentified(0.3227),s:Helotiaceae_sp(0.0968) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Helotiales
Otu850 k:Fungi(1.0000),p:Rozellomycota(0.2300),c:Rozellomycota_cls_Incertae_sedis(0.0460),o:GS11(0.0060),f:unidentified(0.0029),g:unidentified(0.0015),s:GS11_sp(0.0002) + k:Fungi
Otu851 k:Fungi(1.0000),p:Rozellomycota(0.2700),c:Rozellomycota_cls_Incertae_sedis(0.0567),o:GS11(0.0051),f:unidentified(0.0029),g:unidentified(0.0017),s:GS11_sp(0.0002) + k:Fungi
Otu852 k:Fungi(1.0000),p:Ascomycota(0.9700),c:unidentified(0.6111),o:unidentified(0.4461),f:unidentified(0.3480),g:unidentified(0.2784),s:Ascomycota_sp(0.1698) + k:Fungi,p:Ascomycota
Otu853 k:Fungi(1.0000),p:Glomeromycota(0.4100),c:Glomeromycetes(0.1517),o:Diversisporales(0.0425),f:Acaulosporaceae(0.0110),g:Acaulospora(0.0024),s:Acaulospora_sp(0.0003) + k:Fungi
Otu854 k:Fungi(1.0000),p:Rozellomycota(0.1900),c:unidentified(0.0627),o:unidentified(0.0213),f:unidentified(0.0102),g:unidentified(0.0053),s:Rozellomycota_sp(0.0006) + k:Fungi
Otu856 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricostilbomycetes(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Agaricostilbomycetes_sp(1.0000) + k:Fungi,p:Basidiomycota,c:Agaricostilbomycetes,o:unidentified,f:unidentified,g:unidentified,s:Agaricostilbomycetes_sp
Otu855 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Pezizomycotina_cls_Incertae_sedis(0.9300),o:Pezizomycotina_ord_Incertae_sedis(0.8649),f:Pezizomycotina_fam_Incertae_sedis(0.8044),g:Hymenula(0.7320),s:Hymenula_cerealis(0.6661) + k:Fungi,p:Ascomycota,c:Pezizomycotina_cls_Incertae_sedis,o:Pezizomycotina_ord_Incertae_sedis,f:Pezizomycotina_fam_Incertae_sedis
Otu857 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Thelephorales(1.0000),f:Thelephoraceae(1.0000),g:unidentified(0.6300),s:Thelephoraceae_sp(0.3969) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales,f:Thelephoraceae
Otu860 k:Fungi(1.0000),p:Rozellomycota(0.2900),c:unidentified(0.0783),o:unidentified(0.0258),f:unidentified(0.0134),g:unidentified(0.0083),s:Rozellomycota_sp(0.0012) + k:Fungi
Otu859 k:Fungi(1.0000),p:Rozellomycota(0.2300),c:Rozellomycota_cls_Incertae_sedis(0.0483),o:GS11(0.0068),f:unidentified(0.0029),g:unidentified(0.0017),s:GS11_sp(0.0002) + k:Fungi
Otu858 k:Fungi(1.0000),p:Basidiomycota(0.8700),c:Tremellomycetes(0.5829),o:Tremellales(0.3323),f:Tremellaceae(0.1562),g:Tremella(0.0578),s:Tremella_indecorata(0.0208) + k:Fungi,p:Basidiomycota
Otu861 k:Protozoa(0.1700),p:Microsporidia(0.0289),c:Microsporea(0.0049),o:Microsporida(0.0008),f:Microsporida_fam_Incertae_sedis(0.0001),g:Paramicrosporidium(0.0000),s:Paramicrosporidium_saccamoebae(0.0000) +
Otu862 k:Fungi(1.0000),p:Ascomycota(0.2900),c:Xylonomycetes(0.0261),o:Symbiotaphrinales(0.0023),f:Symbiotaphrinales_fam._Incertae_sedis(0.0002),g:Symbiotaphrina(0.0000),s:Symbiotaphrina_buchneri(0.0000) + k:Fungi
Otu864 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Leotiomycetes(0.9400),o:Leotiales(0.8084),f:Leotiaceae(0.6952),g:Alatospora(0.5979),s:Alatospora_sp(0.3528) + k:Fungi,p:Ascomycota,c:Leotiomycetes,o:Leotiales
Otu863 k:Fungi(1.0000),p:Ascomycota(0.7400),c:Taphrinomycetes(0.5032),o:Taphrinales(0.3422),f:Taphrinaceae(0.2327),g:Taphrina(0.1582),s:Taphrina_robinsoniana(0.0981) + k:Fungi
Otu866 k:Fungi(1.0000),p:Ascomycota(0.9700),c:Eurotiomycetes(0.9409),o:Eurotiales(0.8844),f:Trichocomaceae(0.8225),g:Aspergillus(0.7485),s:Aspergillus_keveii(0.3668) + k:Fungi,p:Ascomycota,c:Eurotiomycetes,o:Eurotiales,f:Trichocomaceae
Otu865 k:Fungi(1.0000),p:Ascomycota(0.2600),c:Xylonomycetes(0.0338),o:Symbiotaphrinales(0.0044),f:Symbiotaphrinales_fam._Incertae_sedis(0.0006),g:Symbiotaphrina(0.0001),s:Symbiotaphrina_buchneri(0.0000) + k:Fungi
Otu867 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Pleosporales(1.0000),f:Pleosporaceae(0.9700),g:Alternaria(0.7760),s:Alternaria_sp(0.4656) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales,f:Pleosporaceae
Otu868 k:Fungi(1.0000),p:Basidiomycota(0.8900),c:Tremellomycetes(0.7476),o:Tremellales(0.5981),f:Tremellaceae(0.4665),g:Cryptococcus(0.3639),s:Cryptococcus_sp(0.2838) + k:Fungi,p:Basidiomycota
Otu869 k:Fungi(1.0000),p:Glomeromycota(0.3300),c:Glomeromycetes(0.0990),o:Diversisporales(0.0277),f:Acaulosporaceae(0.0078),g:Acaulospora(0.0020),s:Acaulospora_laevis(0.0003) + k:Fungi
Otu870 k:Fungi(1.0000),p:Chytridiomycota(0.9000),c:Chytridiomycetes(0.7470),o:Chytridiales(0.6200),f:Endochytriaceae(0.5146),g:Entophlyctis(0.4271),s:Entophlyctis_sp(0.3545) + k:Fungi,p:Chytridiomycota
Otu873 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Sordariales(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Sordariales_sp(1.0000) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Sordariales,f:unidentified,g:unidentified,s:Sordariales_sp
Otu875 k:Fungi(1.0000),p:Chytridiomycota(0.6600),c:unidentified(0.2112),o:unidentified(0.0697),f:unidentified(0.0293),g:unidentified(0.0123),s:Chytridiomycota_sp(0.0036) + k:Fungi
Otu871 k:Fungi(1.0000),p:Basidiomycota(0.9700),c:Cystobasidiomycetes(0.9215),o:Erythrobasidiales(0.8570),f:Erythrobasidiales_fam_Incertae_sedis(0.7970),g:Bannoa(0.7093),s:Bannoa_hahajimensis(0.6171) + k:Fungi,p:Basidiomycota,c:Cystobasidiomycetes,o:Erythrobasidiales
Otu872 k:Fungi(1.0000),p:Ascomycota(0.6900),c:Dothideomycetes(0.1449),o:unidentified(0.0348),f:unidentified(0.0111),g:unidentified(0.0052),s:Dothideomycetes_sp(0.0009) + k:Fungi
Otu874 k:Fungi(1.0000),p:Chytridiomycota(0.1100),c:unidentified(0.0275),o:unidentified(0.0074),f:unidentified(0.0031),g:unidentified(0.0017),s:Chytridiomycota_sp(0.0002) + k:Fungi
Otu876 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Saccharomycetes(1.0000),o:Saccharomycetales(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Saccharomycetales_sp(1.0000) + k:Fungi,p:Ascomycota,c:Saccharomycetes,o:Saccharomycetales,f:unidentified,g:unidentified,s:Saccharomycetales_sp
Otu877 k:Fungi(1.0000),p:Chytridiomycota(0.3600),c:unidentified(0.1224),o:unidentified(0.0416),f:unidentified(0.0216),g:unidentified(0.0130),s:Chytridiomycota_sp(0.0030) + k:Fungi
Otu878 k:Fungi(1.0000),p:Rozellomycota(0.2400),c:Rozellomycota_cls_Incertae_sedis(0.0576),o:GS07(0.0138),f:unidentified(0.0053),g:unidentified(0.0023),s:GS07_sp(0.0005) + k:Fungi
Otu880 k:Fungi(1.0000),p:unidentified(0.6100),c:unidentified(0.3843),o:unidentified(0.2460),f:unidentified(0.1771),g:unidentified(0.1381),s:Fungi_sp(0.0843) + k:Fungi
Otu879 k:Fungi(0.9900),p:Rozellomycota(0.1782),c:Rozellomycota_cls_Incertae_sedis(0.0267),o:GS04(0.0016),f:unidentified(0.0006),g:unidentified(0.0003),s:GS04_sp(0.0000) + k:Fungi
Otu881 k:Protozoa(0.1400),p:Microsporidia(0.0196),c:Microsporea(0.0027),o:Microsporida(0.0004),f:Microsporida_fam_Incertae_sedis(0.0001),g:Paramicrosporidium(0.0000),s:Paramicrosporidium_saccamoebae(0.0000) +
Otu882 k:Fungi(1.0000),p:Chytridiomycota(0.1000),c:unidentified(0.0180),o:unidentified(0.0038),f:unidentified(0.0017),g:unidentified(0.0009),s:Chytridiomycota_sp(0.0001) + k:Fungi
Otu883 k:Fungi(1.0000),p:unidentified(0.0700),c:unidentified(0.0077),o:unidentified(0.0010),f:unidentified(0.0003),g:unidentified(0.0001),s:Fungi_sp(0.0000) + k:Fungi
Otu884 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Sordariomycetes(0.7821),o:Sordariales(0.5318),f:unidentified(0.3882),g:unidentified(0.2989),s:Sordariales_sp(0.1584) + k:Fungi,p:Ascomycota
Otu885 k:Fungi(1.0000),p:Chytridiomycota(0.4900),c:unidentified(0.1911),o:unidentified(0.0764),f:unidentified(0.0375),g:unidentified(0.0221),s:Chytridiomycota_sp(0.0064) + k:Fungi
Otu886 k:Fungi(1.0000),p:Chytridiomycota(0.4100),c:unidentified(0.1681),o:unidentified(0.0723),f:unidentified(0.0369),g:unidentified(0.0221),s:Chytridiomycota_sp(0.0071) + k:Fungi
Otu887 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:unidentified(0.7800),o:unidentified(0.6240),f:unidentified(0.5866),g:unidentified(0.5514),s:Basidiomycota_sp(0.4301) + k:Fungi,p:Basidiomycota
Otu888 k:Fungi(1.0000),p:Basidiomycota(0.6300),c:Wallemiomycetes(0.2205),o:Wallemiales(0.0684),f:Wallemiaceae(0.0212),g:Wallemia(0.0066),s:Wallemia_hederae(0.0011) + k:Fungi
Otu889 k:Fungi(1.0000),p:unidentified(0.2800),c:unidentified(0.0812),o:unidentified(0.0244),f:unidentified(0.0146),g:unidentified(0.0099),s:Fungi_sp(0.0028) + k:Fungi
Otu891 k:Fungi(1.0000),p:Ascomycota(0.2300),c:Saccharomycetes(0.0414),o:Saccharomycetales(0.0075),f:Saccharomycetales_fam_Incertae_sedis(0.0011),g:Diutina(0.0002),s:Diutina_rugosa(0.0000) + k:Fungi
Otu892 k:Fungi(1.0000),p:unidentified(0.1300),c:unidentified(0.0273),o:unidentified(0.0063),f:unidentified(0.0027),g:unidentified(0.0013),s:Fungi_sp(0.0002) + k:Fungi
Otu890 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Thelephorales(1.0000),f:Thelephoraceae(1.0000),g:unidentified(0.9500),s:Thelephoraceae_sp(0.9025) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Thelephorales,f:Thelephoraceae,g:unidentified,s:Thelephoraceae_sp
Otu893 k:Fungi(1.0000),p:Rozellomycota(0.4600),c:Rozellomycota_cls_Incertae_sedis(0.1886),o:GS11(0.0547),f:unidentified(0.0328),g:unidentified(0.0217),s:GS11_sp(0.0063) + k:Fungi
Otu895 k:Fungi(1.0000),p:Rozellomycota(0.5600),c:Rozellomycota_cls_Incertae_sedis(0.2128),o:GS11(0.0638),f:unidentified(0.0421),g:unidentified(0.0282),s:GS11_sp(0.0085) + k:Fungi
Otu896 k:Fungi(1.0000),p:unidentified(0.9800),c:unidentified(0.9604),o:unidentified(0.9412),f:unidentified(0.9224),g:unidentified(0.9224),s:Fungi_sp(0.9039) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu894 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Leotiomycetes(0.6633),o:Helotiales(0.4311),f:unidentified(0.2156),g:unidentified(0.1358),s:Helotiales_sp(0.0380) + k:Fungi,p:Ascomycota
Otu897 k:Fungi(1.0000),p:Glomeromycota(0.3700),c:Glomeromycetes(0.1369),o:Diversisporales(0.0411),f:Acaulosporaceae(0.0123),g:Acaulospora(0.0030),s:Acaulospora_sp(0.0003) + k:Fungi
Otu898 k:Fungi(1.0000),p:Rozellomycota(0.5300),c:unidentified(0.2491),o:unidentified(0.1196),f:unidentified(0.0801),g:unidentified(0.0569),s:Rozellomycota_sp(0.0233) + k:Fungi
Otu899 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Agaricales(1.0000),f:Strophariaceae(1.0000),g:Pholiota(1.0000),s:Pholiota_adiposa(0.8000) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Agaricales,f:Strophariaceae,g:Pholiota,s:Pholiota_adiposa
Otu901 k:Fungi(0.9900),p:unidentified(0.0990),c:unidentified(0.0149),o:unidentified(0.0033),f:unidentified(0.0010),g:unidentified(0.0005),s:Fungi_sp(0.0000) + k:Fungi
Otu900 k:Fungi(1.0000),p:Ascomycota(0.9500),c:Eurotiomycetes(0.3705),o:Chaetothyriales(0.0815),f:unidentified(0.0212),g:unidentified(0.0083),s:Chaetothyriales_sp(0.0009) + k:Fungi,p:Ascomycota
Otu904 k:Fungi(1.0000),p:Mortierellomycota(1.0000),c:Mortierellomycotina_cls_Incertae_sedis(1.0000),o:Mortierellales(1.0000),f:Mortierellaceae(1.0000),g:Mortierella(1.0000),s:Mortierella_alpina(1.0000) + k:Fungi,p:Mortierellomycota,c:Mortierellomycotina_cls_Incertae_sedis,o:Mortierellales,f:Mortierellaceae,g:Mortierella,s:Mortierella_alpina
Otu902 k:Fungi(1.0000),p:Rozellomycota(0.9700),c:Rozellomycota_cls_Incertae_sedis(0.9409),o:GS11(0.9127),f:unidentified(0.8853),g:unidentified(0.8764),s:GS11_sp(0.8501) + k:Fungi,p:Rozellomycota,c:Rozellomycota_cls_Incertae_sedis,o:GS11,f:unidentified,g:unidentified,s:GS11_sp
Otu903 k:Fungi(1.0000),p:unidentified(0.1800),c:unidentified(0.0522),o:unidentified(0.0157),f:unidentified(0.0083),g:unidentified(0.0052),s:Fungi_sp(0.0009) + k:Fungi
Otu905 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:Tremellaceae(1.0000),g:Dioszegia(0.9900),s:Dioszegia_butyracea(0.7623) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Tremellaceae,g:Dioszegia
Otu906 k:Fungi(1.0000),p:Chytridiomycota(0.5500),c:unidentified(0.2640),o:unidentified(0.1294),f:unidentified(0.0686),g:unidentified(0.0405),s:Chytridiomycota_sp(0.0182) + k:Fungi
Otu907 k:Fungi(1.0000),p:Rozellomycota(0.3900),c:Rozellomycota_cls_Incertae_sedis(0.1170),o:GS10(0.0246),f:unidentified(0.0145),g:unidentified(0.0097),s:GS10_sp(0.0020) + k:Fungi
Otu908 k:Fungi(1.0000),p:GS19(0.0800),c:unidentified(0.0176),o:unidentified(0.0046),f:unidentified(0.0021),g:unidentified(0.0010),s:GS19_sp(0.0001) + k:Fungi
Otu909 k:Fungi(1.0000),p:Rozellomycota(0.9600),c:Rozellomycota_cls_Incertae_sedis(0.9120),o:GS11(0.8664),f:unidentified(0.8577),g:unidentified(0.8492),s:GS11_sp(0.8067) + k:Fungi,p:Rozellomycota,c:Rozellomycota_cls_Incertae_sedis,o:GS11,f:unidentified,g:unidentified,s:GS11_sp
Otu912 k:Fungi(1.0000),p:Rozellomycota(0.5300),c:Rozellomycota_cls_Incertae_sedis(0.2385),o:GS11(0.0787),f:unidentified(0.0535),g:unidentified(0.0380),s:GS11_sp(0.0125) + k:Fungi
Otu911 k:Fungi(1.0000),p:Basidiomycota(0.4600),c:Tremellomycetes(0.0736),o:Trichosporonales(0.0066),f:Trichosporonaceae(0.0006),g:Cryptotrichosporon(0.0000),s:Cryptotrichosporon_tibetense(0.0000) + k:Fungi
Otu910 k:Fungi(1.0000),p:Ascomycota(0.9700),c:Sordariomycetes(0.9409),o:unidentified(0.9315),f:unidentified(0.9222),g:unidentified(0.9222),s:Sordariomycetes_sp(0.8853) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:unidentified,f:unidentified,g:unidentified,s:Sordariomycetes_sp
Otu913 k:Fungi(1.0000),p:Rozellomycota(0.1900),c:Rozellomycota_cls_Incertae_sedis(0.0266),o:GS05(0.0016),f:unidentified(0.0008),g:unidentified(0.0004),s:GS05_sp(0.0000) + k:Fungi
Otu914 k:Fungi(1.0000),p:Rozellomycota(0.1900),c:Rozellomycota_cls_Incertae_sedis(0.0342),o:GS10(0.0034),f:unidentified(0.0017),g:unidentified(0.0009),s:GS10_sp(0.0001) + k:Fungi
Otu915 k:Fungi(1.0000),p:Rozellomycota(0.4200),c:Rozellomycota_cls_Incertae_sedis(0.1512),o:GS11(0.0438),f:unidentified(0.0250),g:unidentified(0.0150),s:GS11_sp(0.0043) + k:Fungi
Otu916 k:Fungi(1.0000),p:Rozellomycota(0.8900),c:unidentified(0.6230),o:unidentified(0.4361),f:unidentified(0.4012),g:unidentified(0.3771),s:Rozellomycota_sp(0.2565) + k:Fungi,p:Rozellomycota
Otu917 k:Fungi(1.0000),p:Rozellomycota(0.5800),c:unidentified(0.2958),o:unidentified(0.1686),f:unidentified(0.1315),g:unidentified(0.1052),s:Rozellomycota_sp(0.0516) + k:Fungi
Otu919 k:Fungi(1.0000),p:Rozellomycota(0.4900),c:Rozellomycota_cls_Incertae_sedis(0.1764),o:GS10(0.0247),f:unidentified(0.0151),g:unidentified(0.0101),s:GS10_sp(0.0014) + k:Fungi
Otu918 k:Fungi(1.0000),p:Rozellomycota(0.8500),c:unidentified(0.8500),o:unidentified(0.8500),f:unidentified(0.8500),g:unidentified(0.8500),s:Rozellomycota_sp(0.7225) + k:Fungi,p:Rozellomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified
Otu920 k:Fungi(1.0000),p:Mortierellomycota(1.0000),c:Mortierellomycotina_cls_Incertae_sedis(1.0000),o:Mortierellales(1.0000),f:Mortierellaceae(1.0000),g:Mortierella(1.0000),s:Mortierella_sp(0.7500) + k:Fungi,p:Mortierellomycota,c:Mortierellomycotina_cls_Incertae_sedis,o:Mortierellales,f:Mortierellaceae,g:Mortierella
Otu921 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Dothideomycetes(1.0000),o:Pleosporales(0.9900),f:Lophiostomataceae(0.9603),g:unidentified(0.4417),s:Lophiostomataceae_sp(0.1899) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales,f:Lophiostomataceae
Otu922 k:Fungi(1.0000),p:Ascomycota(0.8800),c:unidentified(0.5456),o:unidentified(0.3492),f:unidentified(0.2374),g:unidentified(0.2018),s:Ascomycota_sp(0.1009) + k:Fungi,p:Ascomycota
Otu923 k:Fungi(1.0000),p:Rozellomycota(0.3800),c:Rozellomycota_cls_Incertae_sedis(0.1140),o:GS07(0.0125),f:unidentified(0.0069),g:unidentified(0.0043),s:GS07_sp(0.0005) + k:Fungi
Otu924 k:Fungi(1.0000),p:Rozellomycota(0.2000),c:Rozellomycota_cls_Incertae_sedis(0.0360),o:GS05(0.0036),f:unidentified(0.0018),g:unidentified(0.0010),s:GS05_sp(0.0001) + k:Fungi
Otu925 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(0.9800),o:Tremellales(0.9408),f:Tremellaceae(0.8844),g:Cryptococcus(0.7782),s:Cryptococcus_sp(0.6771) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Tremellaceae
Otu927 k:Fungi(0.9900),p:Basidiomycota(0.4455),c:Agaricomycetes(0.1693),o:Trechisporales(0.0237),f:unidentified(0.0121),g:unidentified(0.0066),s:Trechisporales_sp(0.0009) + k:Fungi
Otu926 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Xylariales(1.0000),f:Amphisphaeriaceae(1.0000),g:Seimatosporium(0.9300),s:Seimatosporium_sp(0.8277) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Xylariales,f:Amphisphaeriaceae,g:Seimatosporium,s:Seimatosporium_sp
Otu928 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Atheliales(1.0000),f:Atheliaceae(1.0000),g:Amphinema(0.9500),s:Amphinema_byssoides(0.6365) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Atheliales,f:Atheliaceae,g:Amphinema
Otu929 k:Fungi(1.0000),p:Rozellomycota(0.5200),c:Rozellomycota_cls_Incertae_sedis(0.2392),o:GS11(0.0646),f:unidentified(0.0478),g:unidentified(0.0382),s:GS11_sp(0.0103) + k:Fungi
Otu931 k:Fungi(1.0000),p:Ascomycota(0.8700),c:unidentified(0.5133),o:unidentified(0.3080),f:unidentified(0.2063),g:unidentified(0.1424),s:Ascomycota_sp(0.0655) + k:Fungi,p:Ascomycota
Otu930 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(1.0000),f:Nectriaceae(0.9900),g:Gliocephalotrichum(0.9504),s:Gliocephalotrichum_simmonsii(0.8554) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:Nectriaceae,g:Gliocephalotrichum,s:Gliocephalotrichum_simmonsii
Otu932 k:Fungi(1.0000),p:Ascomycota(0.8200),c:Saccharomycetes(0.5822),o:Saccharomycetales(0.4134),f:Saccharomycetales_fam_Incertae_sedis(0.2852),g:Barnettozyma(0.1939),s:Barnettozyma_californica(0.1319) + k:Fungi,p:Ascomycota
Otu933 k:Fungi(1.0000),p:Rozellomycota(1.0000),c:unidentified(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Rozellomycota_sp(1.0000) + k:Fungi,p:Rozellomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Rozellomycota_sp
Otu935 k:Fungi(1.0000),p:unidentified(0.1100),c:unidentified(0.0253),o:unidentified(0.0068),f:unidentified(0.0025),g:unidentified(0.0013),s:Fungi_sp(0.0001) + k:Fungi
Otu936 k:Fungi(1.0000),p:Rozellomycota(0.6800),c:unidentified(0.6800),o:unidentified(0.6800),f:unidentified(0.6800),g:unidentified(0.6800),s:Rozellomycota_sp(0.4624) + k:Fungi
Otu934 k:Fungi(1.0000),p:Ascomycota(0.4700),c:Xylonomycetes(0.0846),o:Symbiotaphrinales(0.0152),f:Symbiotaphrinales_fam._Incertae_sedis(0.0027),g:Symbiotaphrina(0.0005),s:Symbiotaphrina_buchneri(0.0001) + k:Fungi
Otu937 k:Fungi(1.0000),p:Ascomycota(0.8700),c:Pezizomycetes(0.5568),o:Pezizales(0.3564),f:Pyronemataceae(0.1960),g:Scutellinia(0.0333),s:Scutellinia_patagonica(0.0040) + k:Fungi,p:Ascomycota
Otu939 k:Fungi(1.0000),p:Rozellomycota(0.1800),c:Rozellomycota_cls_Incertae_sedis(0.0324),o:GS04(0.0045),f:unidentified(0.0018),g:unidentified(0.0008),s:GS04_sp(0.0001) + k:Fungi
Otu938 k:Fungi(1.0000),p:Chytridiomycota(0.6500),c:unidentified(0.3965),o:unidentified(0.2458),f:unidentified(0.1573),g:unidentified(0.1117),s:Chytridiomycota_sp(0.0681) + k:Fungi
Otu940 k:Fungi(1.0000),p:Rozellomycota(0.7600),c:unidentified(0.7524),o:unidentified(0.7449),f:unidentified(0.7374),g:unidentified(0.7301),s:Rozellomycota_sp(0.5548) + k:Fungi
Otu941 k:Fungi(1.0000),p:Chytridiomycota(0.8800),c:unidentified(0.7744),o:unidentified(0.6815),f:unidentified(0.5997),g:unidentified(0.5397),s:Chytridiomycota_sp(0.4696) + k:Fungi,p:Chytridiomycota
Otu943 k:Fungi(1.0000),p:unidentified(0.3400),c:unidentified(0.1156),o:unidentified(0.0405),f:unidentified(0.0263),g:unidentified(0.0179),s:Fungi_sp(0.0061) + k:Fungi
Otu942 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:Tremellaceae(1.0000),g:Dioszegia(1.0000),s:Dioszegia_sp(1.0000) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:Tremellaceae,g:Dioszegia,s:Dioszegia_sp
Otu944 k:Fungi(1.0000),p:Rozellomycota(0.3200),c:Rozellomycota_cls_Incertae_sedis(0.0864),o:GS05(0.0173),f:unidentified(0.0093),g:unidentified(0.0053),s:GS05_sp(0.0011) + k:Fungi
Otu945 k:Fungi(1.0000),p:Rozellomycota(1.0000),c:unidentified(1.0000),o:unidentified(1.0000),f:unidentified(1.0000),g:unidentified(1.0000),s:Rozellomycota_sp(1.0000) + k:Fungi,p:Rozellomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Rozellomycota_sp
Otu947 k:Fungi(1.0000),p:Rozellomycota(0.2600),c:Rozellomycota_cls_Incertae_sedis(0.0468),o:GS02(0.0037),f:unidentified(0.0018),g:unidentified(0.0010),s:GS02_sp(0.0001) + k:Fungi
Otu949 k:Fungi(1.0000),p:Rozellomycota(0.5100),c:unidentified(0.2397),o:unidentified(0.1222),f:unidentified(0.0831),g:unidentified(0.0623),s:Rozellomycota_sp(0.0262) + k:Fungi
Otu948 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(0.8900),o:Sordariomycetes_ord_Incertae_sedis(0.7921),f:Sordariomycetes_fam_Incertae_sedis(0.7050),g:Myrmecridium(0.6274),s:Myrmecridium_phragmitis(0.2321) + k:Fungi,p:Ascomycota,c:Sordariomycetes
Otu946 k:Fungi(1.0000),p:Ascomycota(0.9400),c:Saccharomycetes(0.8742),o:Saccharomycetales(0.8130),f:Dipodascaceae(0.7317),g:Dipodascus(0.5415),s:Dipodascus_geotrichum(0.3357) + k:Fungi,p:Ascomycota,c:Saccharomycetes,o:Saccharomycetales
Otu952 k:Fungi(0.9900),p:Ascomycota(0.4356),c:Xylonomycetes(0.0261),o:Symbiotaphrinales(0.0016),f:Symbiotaphrinales_fam._Incertae_sedis(0.0001),g:Symbiotaphrina(0.0000),s:Symbiotaphrina_buchneri(0.0000) + k:Fungi
Otu950 k:Fungi(1.0000),p:Rozellomycota(0.7100),c:unidentified(0.4970),o:unidentified(0.3926),f:unidentified(0.3259),g:unidentified(0.2770),s:Rozellomycota_sp(0.1911) + k:Fungi
Otu951 k:Protozoa(0.2400),p:Microsporidia(0.0576),c:Microsporea(0.0138),o:Microsporida(0.0033),f:Microsporida_fam_Incertae_sedis(0.0008),g:Paramicrosporidium(0.0002),s:Paramicrosporidium_saccamoebae(0.0000) +
Otu953 k:Fungi(0.9900),p:Rozellomycota(0.6039),c:unidentified(0.3623),o:unidentified(0.2210),f:unidentified(0.1614),g:unidentified(0.1259),s:Rozellomycota_sp(0.0692) + k:Fungi
Otu956 k:Fungi(1.0000),p:unidentified(0.4100),c:unidentified(0.1927),o:unidentified(0.0906),f:unidentified(0.0589),g:unidentified(0.0406),s:Fungi_sp(0.0167) + k:Fungi
Otu955 k:Fungi(1.0000),p:unidentified(0.2100),c:unidentified(0.0714),o:unidentified(0.0243),f:unidentified(0.0104),g:unidentified(0.0056),s:Fungi_sp(0.0012) + k:Fungi
Otu954 k:Fungi(1.0000),p:Basidiomycota(0.7300),c:Agaricomycetes(0.5329),o:Auriculariales(0.3677),f:unidentified(0.2243),g:unidentified(0.1368),s:Auriculariales_sp(0.0465) + k:Fungi
Otu957 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Agaricomycetes(1.0000),o:Polyporales(1.0000),f:Meruliaceae(1.0000),g:Bjerkandera(1.0000),s:Bjerkandera_adusta(1.0000) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Polyporales,f:Meruliaceae,g:Bjerkandera,s:Bjerkandera_adusta
Otu961 k:Fungi(1.0000),p:Rozellomycota(0.5200),c:unidentified(0.2028),o:unidentified(0.0791),f:unidentified(0.0443),g:unidentified(0.0266),s:Rozellomycota_sp(0.0096) + k:Fungi
Otu959 k:Fungi(1.0000),p:Rozellomycota(0.2000),c:Rozellomycota_cls_Incertae_sedis(0.0340),o:GS05(0.0037),f:unidentified(0.0015),g:unidentified(0.0007),s:GS05_sp(0.0001) + k:Fungi
Otu960 k:Fungi(1.0000),p:unidentified(0.3100),c:unidentified(0.1581),o:unidentified(0.0806),f:unidentified(0.0492),g:unidentified(0.0320),s:Fungi_sp(0.0099) + k:Fungi
Otu958 k:Fungi(1.0000),p:Ascomycota(0.4900),c:Saccharomycetes(0.1568),o:Saccharomycetales(0.0502),f:Trichomonascaceae(0.0115),g:Sugiyamaella(0.0025),s:Sugiyamaella_sp(0.0006) + k:Fungi
Otu962 k:Fungi(1.0000),p:Ascomycota(0.9700),c:Leotiomycetes(0.8730),o:Helotiales(0.6286),f:unidentified(0.4651),g:unidentified(0.3489),s:Helotiales_sp(0.2268) + k:Fungi,p:Ascomycota,c:Leotiomycetes
Otu963 k:Fungi(1.0000),p:unidentified(0.9600),c:unidentified(0.9600),o:unidentified(0.9600),f:unidentified(0.9600),g:unidentified(0.9600),s:Fungi_sp(0.9216) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu965 k:Fungi(1.0000),p:Rozellomycota(0.6400),c:Rozellomycota_cls_Incertae_sedis(0.3968),o:GS11(0.1468),f:unidentified(0.1116),g:unidentified(0.0859),s:GS11_sp(0.0318) + k:Fungi
Otu964 k:Fungi(1.0000),p:Ascomycota(0.9900),c:unidentified(0.8811),o:unidentified(0.7930),f:unidentified(0.7771),g:unidentified(0.7694),s:Ascomycota_sp(0.6770) + k:Fungi,p:Ascomycota,c:unidentified
Otu966 k:Fungi(1.0000),p:Basidiomycota(0.9900),c:Agaricomycetes(0.9603),o:Russulales(0.9219),f:Russulaceae(0.8850),g:Lactifluus(0.6815),s:Lactifluus_sp(0.3407) + k:Fungi,p:Basidiomycota,c:Agaricomycetes,o:Russulales,f:Russulaceae
Otu969 k:Fungi(1.0000),p:unidentified(0.3600),c:unidentified(0.1332),o:unidentified(0.0493),f:unidentified(0.0296),g:unidentified(0.0189),s:Fungi_sp(0.0068) + k:Fungi
Otu967 k:Fungi(1.0000),p:Mortierellomycota(1.0000),c:Mortierellomycotina_cls_Incertae_sedis(1.0000),o:Mortierellales(1.0000),f:Mortierellaceae(1.0000),g:Mortierella(1.0000),s:Mortierella_fatshederae(0.5200) + k:Fungi,p:Mortierellomycota,c:Mortierellomycotina_cls_Incertae_sedis,o:Mortierellales,f:Mortierellaceae,g:Mortierella
Otu968 k:Fungi(1.0000),p:Basidiomycota(1.0000),c:Tremellomycetes(1.0000),o:Tremellales(1.0000),f:unidentified(0.9900),g:unidentified(0.9801),s:Tremellales_sp(0.9703) + k:Fungi,p:Basidiomycota,c:Tremellomycetes,o:Tremellales,f:unidentified,g:unidentified,s:Tremellales_sp
Otu970 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Sordariomycetes(1.0000),o:Hypocreales(1.0000),f:Hypocreales_fam_Incertae_sedis(0.8100),g:Sarocladium(0.6318),s:Sarocladium_bactrocephalum(0.3349) + k:Fungi,p:Ascomycota,c:Sordariomycetes,o:Hypocreales,f:Hypocreales_fam_Incertae_sedis
Otu971 k:Fungi(1.0000),p:Rozellomycota(0.3000),c:unidentified(0.0870),o:unidentified(0.0252),f:unidentified(0.0096),g:unidentified(0.0042),s:Rozellomycota_sp(0.0011) + k:Fungi
Otu973 k:Fungi(1.0000),p:Rozellomycota(0.6500),c:unidentified(0.6110),o:unidentified(0.5743),f:unidentified(0.5399),g:unidentified(0.5075),s:Rozellomycota_sp(0.3299) + k:Fungi
Otu972 k:Fungi(1.0000),p:unidentified(0.4400),c:unidentified(0.2024),o:unidentified(0.0931),f:unidentified(0.0652),g:unidentified(0.0515),s:Fungi_sp(0.0227) + k:Fungi
Otu974 k:Fungi(1.0000),p:Basidiomycota(0.4300),c:Tremellomycetes(0.1548),o:Tremellales(0.0464),f:Tremellaceae(0.0088),g:Cryptococcus(0.0011),s:Cryptococcus_sp(0.0001) + k:Fungi
Otu975 k:Fungi(1.0000),p:unidentified(0.9500),c:unidentified(0.9025),o:unidentified(0.8574),f:unidentified(0.8574),g:unidentified(0.8574),s:Fungi_sp(0.8145) + k:Fungi,p:unidentified,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Fungi_sp
Otu979 k:Fungi(1.0000),p:Rozellomycota(0.5300),c:Rozellomycota_cls_Incertae_sedis(0.2597),o:GS11(0.0597),f:unidentified(0.0370),g:unidentified(0.0237),s:GS11_sp(0.0055) + k:Fungi
Otu976 k:Fungi(1.0000),p:Chytridiomycota(0.8100),c:unidentified(0.6480),o:unidentified(0.5249),f:unidentified(0.4252),g:unidentified(0.3486),s:Chytridiomycota_sp(0.2754) + k:Fungi,p:Chytridiomycota
Otu977 k:Fungi(1.0000),p:Ascomycota(1.0000),c:Eurotiomycetes(1.0000),o:Eurotiales(1.0000),f:Eurotiales_fam_Incertae_sedis(1.0000),g:Thermomyces(1.0000),s:Thermomyces_lanuginosus(1.0000) + k:Fungi,p:Ascomycota,c:Eurotiomycetes,o:Eurotiales,f:Eurotiales_fam_Incertae_sedis,g:Thermomyces,s:Thermomyces_lanuginosus
Otu980 k:Fungi(1.0000),p:Ascomycota(0.9900),c:unidentified(0.4950),o:unidentified(0.2475),f:unidentified(0.1411),g:unidentified(0.0931),s:Ascomycota_sp(0.0456) + k:Fungi,p:Ascomycota
Otu978 k:Fungi(1.0000),p:Rozellomycota(0.9900),c:unidentified(0.9801),o:unidentified(0.9703),f:unidentified(0.9606),g:unidentified(0.9510),s:Rozellomycota_sp(0.9415) + k:Fungi,p:Rozellomycota,c:unidentified,o:unidentified,f:unidentified,g:unidentified,s:Rozellomycota_sp
Otu981 k:Fungi(1.0000),p:unidentified(0.3900),c:unidentified(0.1638),o:unidentified(0.0721),f:unidentified(0.0461),g:unidentified(0.0341),s:Fungi_sp(0.0133) + k:Fungi
Otu982 k:Fungi(1.0000),p:Ascomycota(0.9100),c:Xylonomycetes(0.1638),o:Symbiotaphrinales(0.0295),f:Symbiotaphrinales_fam._Incertae_sedis(0.0053),g:Symbiotaphrina(0.0010),s:Symbiotaphrina_buchneri(0.0002) + k:Fungi,p:Ascomycota
Otu983 k:Fungi(1.0000),p:unidentified(0.8500),c:unidentified(0.7905),o:unidentified(0.7352),f:unidentified(0.6837),g:unidentified(0.6358),s:Fungi_sp(0.5405) + k:Fungi,p:unidentified
Otu985 k:Fungi(1.0000),p:Rozellomycota(0.5200),c:Rozellomycota_cls_Incertae_sedis(0.2704),o:GS10(0.1325),f:unidentified(0.0861),g:unidentified(0.0603),s:GS10_sp(0.0295) + k:Fungi
Otu984 k:Fungi(1.0000),p:Rozellomycota(0.4200),c:unidentified(0.2772),o:unidentified(0.1830),f:unidentified(0.1299),g:unidentified(0.0948),s:Rozellomycota_sp(0.0379) + k:Fungi
Otu986 k:Fungi(1.0000),p:Rozellomycota(0.7400),c:unidentified(0.5476),o:unidentified(0.4271),f:unidentified(0.3716),g:unidentified(0.3307),s:Rozellomycota_sp(0.2249) + k:Fungi
Otu987 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Saccharomycetes(0.9801),o:Saccharomycetales(0.9703),f:Saccharomycetales_fam_Incertae_sedis(0.9412),g:Candida(0.9130),s:Candida_tropicalis(0.6847) + k:Fungi,p:Ascomycota,c:Saccharomycetes,o:Saccharomycetales,f:Saccharomycetales_fam_Incertae_sedis,g:Candida
Otu988 k:Fungi(1.0000),p:unidentified(0.3700),c:unidentified(0.1591),o:unidentified(0.0716),f:unidentified(0.0387),g:unidentified(0.0228),s:Fungi_sp(0.0084) + k:Fungi
Otu989 k:Fungi(1.0000),p:Rozellomycota(0.6000),c:unidentified(0.3900),o:unidentified(0.2574),f:unidentified(0.1930),g:unidentified(0.1525),s:Rozellomycota_sp(0.0854) + k:Fungi
Otu990 k:Fungi(1.0000),p:unidentified(0.4200),c:unidentified(0.1890),o:unidentified(0.0869),f:unidentified(0.0591),g:unidentified(0.0443),s:Fungi_sp(0.0186) + k:Fungi
Otu991 k:Fungi(0.9900),p:unidentified(0.1386),c:unidentified(0.0347),o:unidentified(0.0090),f:unidentified(0.0042),g:unidentified(0.0025),s:Fungi_sp(0.0004) + k:Fungi
Otu992 k:Fungi(1.0000),p:Rozellomycota(0.2100),c:unidentified(0.0525),o:unidentified(0.0137),f:unidentified(0.0063),g:unidentified(0.0034),s:Rozellomycota_sp(0.0003) + k:Fungi
Otu993 k:Fungi(1.0000),p:Ascomycota(0.9900),c:Dothideomycetes(0.9009),o:Pleosporales(0.8198),f:unidentified(0.7460),g:unidentified(0.6789),s:Pleosporales_sp(0.6178) + k:Fungi,p:Ascomycota,c:Dothideomycetes,o:Pleosporales
Otu995 k:Fungi(0.9900),p:Rozellomycota(0.2772),c:unidentified(0.1192),o:unidentified(0.0608),f:unidentified(0.0383),g:unidentified(0.0260),s:Rozellomycota_sp(0.0047) + k:Fungi
Otu994 k:Fungi(0.9700),p:Glomeromycota(0.5044),c:Glomeromycetes(0.2472),o:Diversisporales(0.0667),f:Gigasporaceae(0.0080),g:Dentiscutata(0.0009),s:Dentiscutata_savannicola(0.0001) + k:Fungi
Otu996 k:Fungi(1.0000),p:Basidiomycota(0.4900),c:Agaricomycetes(0.2058),o:Sebacinales(0.0288),f:Sebacinaceae(0.0026),g:Sebacina(0.0002),s:Sebacina_sp(0.0000) + k:Fungi
Otu997 k:Fungi(1.0000),p:Basidiomycota(0.4000),c:Agaricomycetes(0.1600),o:Sebacinales(0.0224),f:unidentified(0.0060),g:unidentified(0.0026),s:Sebacinales_sp(0.0002) + k:Fungi
Otu998 k:Fungi(1.0000),p:Chytridiomycota(0.5500),c:unidentified(0.4180),o:unidentified(0.3177),f:unidentified(0.2510),g:unidentified(0.2033),s:Chytridiomycota_sp(0.0874) + k:Fungi
Otu999 k:Protozoa(0.1100),p:Microsporidia(0.0121),c:Microsporea(0.0013),o:Microsporida(0.0001),f:Microsporida_fam_Incertae_sedis(0.0000),g:Paramicrosporidium(0.0000),s:Paramicrosporidium_saccamoebae(0.0000) +
Otu1000 k:Fungi(1.0000),p:Basidiomycota(0.3500),c:Tremellomycetes(0.0735),o:Trichosporonales(0.0103),f:Trichosporonaceae(0.0014),g:Cryptotrichosporon(0.0002),s:Cryptotrichosporon_tibetense(0.0000) + k:Fungi