-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathassemble_ott.py
672 lines (556 loc) · 24.6 KB
/
assemble_ott.py
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
# Jython script to build the Open Tree reference taxonomy
# coding=utf-8
# Unless specified otherwise issues are in the reference-taxonomy repo:
# https://github.com/OpenTreeOfLife/reference-taxonomy/issues/...
import sys, os, csv, json
from org.opentreeoflife.taxa import Taxonomy, SourceTaxonomy, TsvEdits, Addition, Taxon
from org.opentreeoflife.smasher import UnionTaxonomy
# for id list
from org.opentreeoflife.taxa import CSVReader, QualifiedId
from java.io import FileReader
import ncbi_ott_assignments
# For adjustments, amendments
sys.path.append("curation/")
import adjustments, amendments
import check_inclusions
import management
inclusions_path = 'inclusions.csv'
new_taxa_path = 'new_taxa'
# ott_spec would typically be "ott-NEW"
def create_ott(ott_spec):
# Fail fast
additions_clone_path = os.path.join(access_head('amendments'), 'amendments-1')
if not os.path.isdir(additions_clone_path):
print '# cannot find', additions_clone_path
sys.exit(1)
with open(os.path.join(access_head('idlist'), 'by_qid.csv'), 'r') as infile:
print '# can access idlist'
ott_path = management.source_path(ott_spec)
ott = UnionTaxonomy.newTaxonomy('ott')
# Would be nice if there were tests for all of these...
for name in names_of_interest:
ott.eventLogger.namesOfInterest.add(name)
ott.setSkeleton(Taxonomy.getTaxonomy('curation/separation/', 'separation'))
# These are particularly hard cases; create alignment targets up front
adjustments.deal_with_polysemies(ott)
# Align and merge each source in sequence
merge_sources(ott)
# "Old" patch system
TsvEdits.edit(ott, 'curation/edits/')
# consider try: ... except: print '**** Exception in patch_ott'
amendments.patch_ott(ott)
# End of topology changes. Now assign ids.
retain_ids(ott,
access_source('ott-PREVIOUS'),
os.path.join(access_head('idlist'), 'by_qid.csv'))
# Apply the additions (which already have ids assigned).
# This has to happen *after* ids are assigned, since additions use OTT
# ids to identify parents.
print '-- Processing additions --'
Addition.processAdditions(additions_clone_path, ott)
# Mint ids for new nodes
print '-- Minting new ids --'
ott.assignNewIds(new_taxa_path)
# Remove all trees but the largest (or make them life incertae sedis)
ott.deforestate()
# data structure integrity checks
ott.check()
# For deprecated id report (dump)
ott.loadPreferredIds('ids_that_are_otus.tsv', False)
ott.loadPreferredIds('ids_in_synthesis.tsv', True)
ott.dump(ott_path)
record_ott_sources(ott_spec)
return ott
def merge_sources(ott):
# Genbank - this is a kludge to make sure it's in the dependencies list.
# But eventually it ought to be handled in this file, not in the silva
# import script.
access_head('genbank')
# SILVA
silva = load_taxonomy('silva')
adjustments.adjust_silva(silva)
silva_to_ott = adjustments.align_silva(silva, ott)
align_and_merge(silva_to_ott)
# Hibbett 2007
h2007 = Taxonomy.getTaxonomy('curation/h2007/tree.tre', 'h2007')
adjustments.adjust_h2007(h2007)
h2007_to_ott = ott.alignment(h2007)
align_and_merge(h2007_to_ott)
# Index Fungorum
fungorum = load_taxonomy('fung')
adjustments.adjust_fung(fungorum)
(fungi, fungorum_sans_fungi) = split_taxonomy(fungorum, 'Fungi')
align_and_merge(adjustments.align_fungi(fungi, ott))
# Connect IF families to Hibbett 2007 orders
adjustments.link_to_h2007(ott)
# Look for orders that have no children in OTT
report_on_h2007(h2007, h2007_to_ott, '#')
# the non-Fungi from Index Fungorum get absorbed below
lamiales = Taxonomy.getTaxonomy('curation/lamiales/', 'study713')
adjustments.adjust_lamiales(lamiales)
align_and_merge(adjustments.align_lamiales(lamiales, ott))
# WoRMS
# higher priority to Worms for Malacostraca, Cnidaria, Mollusca
# so we split out
# those clades from worms and absorb them before NCBI
worms = load_taxonomy('worms')
adjustments.adjust_worms(worms)
# Malacostraca instead of Decapoda because M. is in the separation taxonomy
(malacostraca, worms_sans_malacostraca) = split_taxonomy(worms, 'Malacostraca')
align_and_merge(ott.alignment(malacostraca))
(cnidaria, worms_sans_cnidaria) = split_taxonomy(worms_sans_malacostraca, 'Cnidaria')
align_and_merge(ott.alignment(cnidaria))
(mollusca, low_priority_worms) = split_taxonomy(worms_sans_cnidaria, 'Mollusca')
align_and_merge(ott.alignment(mollusca))
# NCBI
ncbi = load_taxonomy('ncbi')
adjustments.adjust_ncbi(ncbi)
# analyzeOTUs sets flags on questionable taxa (hybrid, metagenomes,
# etc) to allow the option of suppression downstream
ncbi.analyzeOTUs()
ncbi_to_ott = adjustments.align_ncbi(ncbi, silva, ott)
align_and_merge(ncbi_to_ott)
# Look for orders that have no children in OTT
report_on_h2007(h2007, h2007_to_ott, '#')
# Reporting
# Get mapping from NCBI to OTT, derived via SILVA and Genbank.
mappings = load_ncbi_to_silva(os.path.join(management.resource_path('silva'),
'ncbi_to_silva.tsv'),
ncbi, silva, silva_to_ott)
compare_ncbi_to_silva(mappings, silva_to_ott)
# Low-priority WoRMS
# This is suboptimal, but the names are confusing the division logic
a = adjustments.align_worms(low_priority_worms, ott)
align_and_merge(a)
# The rest of Index Fungorum. (Maybe not a good idea to use this.
# These taxa are all in GBIF.)
# align_and_merge(adjustments.align_fungorum_sans_fungi(fungorum_sans_fungi, ott))
# GBIF
gbif = load_taxonomy('gbif')
adjustments.adjust_gbif(gbif)
gbif_to_ott = adjustments.align_gbif(gbif, ott)
align_and_merge(gbif_to_ott)
# http://dx.doi.org/10.1016/j.ympev.2004.12.019 "Eccrinales
# (Trichomycetes) are not fungi, but a clade of protists at the
# early divergence of animals and fungi"
debug_divisions('Enterobryus cingaloboli', gbif, ott)
# Cylindrocarpon is now Neonectria
cyl = gbif_to_ott.image(gbif.taxon('Cylindrocarpon', 'Ascomycota'))
if cyl != None:
cyl.setId('51754')
# IRMNG
irmng = load_taxonomy('irmng')
adjustments.adjust_irmng(irmng)
a = adjustments.align_irmng(irmng, ott)
hide_irmng(irmng)
align_and_merge(a)
# Misc fixups
report_on_h2007(h2007, h2007_to_ott, '**')
get_default_extinct_info_from_gbif(os.path.join(management.resource_path('gbif'), 'paleo.tsv'),
gbif, gbif_to_ott)
def load_taxonomy(spec):
return Taxonomy.getTaxonomy(access_head(spec), management.get_property(spec, "ott_idspace"))
accessed_sources = {}
def access_source(spec):
accessed_sources[management.get_property(spec, "series")] = \
management.get_property(spec, "name")
return management.resource_path(spec)
def access_head(series):
return access_source(series + '-HEAD')
# or, read the ott-NEW properties.json file, add the sources, and write it out
def record_ott_sources(ott_spec):
print '| Recording source version numbers in properties file'
management.set_property(ott_spec, "sources", accessed_sources)
# utilities
def debug_divisions(name, ncbi, ott):
print '##', name
n = ncbi.taxon(name)
if n != None:
n.show()
o = ott.taxon(name)
if o != None:
o.show()
while o != None:
print o, o.getDivision()
o = o.parent
print '##'
# Splits a taxonomy into two parts: 1. the subtree rooted at taxon_name
# and 2. everything else
def split_taxonomy(taxy, taxon_name):
# get the taxon with name=taxon_name from the taxonomy
t = taxy.taxon(taxon_name)
# get the subtree rooted at this taxon
subtree = taxy.select(t)
# remove all of the descendants of this taxon
t.trim()
taxy_sans_subtree = taxy
return (subtree, taxy_sans_subtree)
# Maps taxon in NCBI taxonomy to SILVA-derived OTT taxon
def load_ncbi_to_silva(ncbi_to_silva_path, ncbi, silva, silva_to_ott):
mappings = {}
flush = []
with open(ncbi_to_silva_path, 'r') as infile:
reader = csv.reader(infile, delimiter='\t')
for (ncbi_id, silva_cluster_id) in reader:
n = ncbi.maybeTaxon(ncbi_id)
if n != None:
s = silva.maybeTaxon(silva_cluster_id)
if s != None:
so = silva_to_ott.image(s)
if so != None:
if n in mappings:
# 213 of these
# print '** NCBI id maps to multiple SILVA clusters', n
mappings[n] = True
flush.append(n)
else:
mappings[n] = so
else:
print '** no OTT taxon for cluster', silva_cluster_id
else:
# Too many of these now, and not sure what to do about them.
# print '| no cluster %s for %s' % (silva_cluster_id, n)
True
for n in flush:
if n in mappings:
del mappings[n]
return mappings
# Report on differences between how NCBI and OTT map to SILVA
# 2016-11-03 This is a disturbingly large number: 67254
def compare_ncbi_to_silva(mappings, silva_to_ott):
problems = 0
for taxon in mappings:
t1 = mappings[taxon]
t2 = silva_to_ott.image(taxon)
if t1 != t2:
problems += 1
if t2 != None and t1.name == t2.name:
div = t1.divergence(t2)
if div != None:
print '| %s -> (%s, %s) coalescing at (%s, %s)' % \
(taxon, t1, t2, div[0], div[1])
print '* %s NCBI taxa map differently by cluster vs. by name' % problems
# The processed GBIF taxonomy contains a file listing GBIF taxon ids for all
# taxa that are listed as coming from PaleoDB. This is processed after all
# taxonomies are processed but before patches are applied. We use it to set
# extinct flags for taxa originating only from GBIF (i.e. if the taxon also
# comes from NCBI, WoRMS, etc. then we do not mark it as extinct).
def get_default_extinct_info_from_gbif(paleo_path, gbif, gbif_to_ott):
with open(paleo_path, 'r') as infile:
paleos = 0
flagged = 0
for row in infile:
paleos += 1
id = row.strip()
gtaxon = gbif.lookupId(id)
if gtaxon != None:
taxon = gbif_to_ott.image(gtaxon)
if taxon != None:
prefix = taxon.sourceIds[0].prefix
if prefix == 'gbif':
# See https://github.com/OpenTreeOfLife/feedback/issues/43
# It's OK if it's also in IRMNG
flagged += 1
taxon.extinct()
else:
#print "| PaleoDB taxon %s may be extant; it's in %s" % (taxon, prefix)
True
infile.close()
print '| Flagged %s of %s taxa from paleodb\n' % (flagged, paleos)
def hide_irmng(irmng):
# Sigh...
# https://github.com/OpenTreeOfLife/feedback/issues/302
for root in irmng.roots():
root.hide()
# 2016-11-06 Laura Katz personal email to JAR:
# "IRMNG great for microbial diversity, for example"
irmng.taxon('Protista').unhide()
with open('irmng_only_otus.csv', 'r') as infile:
reader = csv.reader(infile)
reader.next() # header row
for row in reader:
if irmng.lookupId(row[0]) is not None:
irmng.lookupId(row[0]).unhide()
# -----------------------------------------------------------------------------
# OTT id assignment
def retain_ids(ott, prev_path, by_qid):
# ad hoc assignments specifically for NCBI taxa, basedon NCBI id
for (ncbi_id, ott_id, name) in ncbi_ott_assignments.ncbi_assignments_list:
im = ott.lookupQid(QualifiedId('ncbi', ncbi_id))
if im == None:
print '* ncbi:%s not found in OTT - %s' % (ncbi_id, name)
else:
if im.name != name:
print '* ncbi:%s name is %s, but expected %s' % (ncbi_id, im.name, name)
im.addId(ott_id)
# Force some id assignments... will try to automate this in the future.
# Most of these come from looking at the deprecated.tsv file after a
# series of smasher runs.
for (inf, sup, id) in [
('Tipuloidea', 'Diptera', '722875'),
('Saccharomycetes', 'Saccharomycotina', '989999'),
('Phaeosphaeria', 'Ascomycota', '5486272'),
('Synedra acus','Eukaryota','992764'),
('Hessea','Archaeplastida','600099'),
('Morganella','Arthropoda','6400'),
('Rhynchonelloidea','Rhynchonellidae','5316010'),
('Morganella', 'Fungi', '973932'),
('Parmeliaceae', 'Lecanorales', '305904'),
('Cordana', 'Ascomycota', '946160'),
('Pseudofusarium', 'Ascomycota', '655794'),
('Marssonina', 'Dermateaceae', '372158'), # ncbi:324777
('Marssonia', 'Lamiales', '5512668'), # gbif:7268388
# ('Gloeosporium', 'Pezizomycotina', '75019'), # synonym for Marssonina
('Escherichia coli', 'Enterobacteriaceae', '474506'), # ncbi:562
# ('Dischloridium', 'Trichocomaceae', '895423'),
('Exaiptasia pallida', 'Cnidaria', '135923'),
('Choanoflagellida', 'Holozoa', '202765'),
('Billardiera', 'Lamiales', '798963'),
('Trachelomonas grandis', 'Bacteria', '58035'), # study ot_91 Tr46259
('Hypomyzostoma', 'Myzostomida', '552744'), # was incorrectly in Annelida
('Gyromitus', 'SAR', '696946'),
('Pseudogymnoascus destructans', 'Pezizomycotina', '428163'),
# ('Amycolicicoccus subflavus', 'Mycobacteriaceae', '541768'), # ncbi:639313
# ('Pohlia', 'Foraminifera', '5325989') - NO
('Pohlia', 'Amphibia', '5325989'), # irmng:1311321
('Phyllanthus', 'Pentapetalae', '452944'), # pg_25 @josephwb = 5509975
]:
tax = ott.maybeTaxon(inf, sup)
if tax != None:
tax.setId(id)
ott.taxon('452944').addId('5509975')
# ott.taxon('474506') ...
ott.taxonThatContains('Rhynchonelloidea', 'Sphenarina').setId('795939') # NCBI
# Trichosporon is a mess, because it occurs 3 times in NCBI.
trich = ott.taxonThatContains('Trichosporon', 'Trichosporon cutaneum')
if trich != None:
trich.setId('364222')
#ott.image(fungi.taxon('11060')).setId('4107132') #Cryptococcus - a total mess
# --------------------
# Assign OTT ids to taxa that don't have them, re-using old ids when possible
ids = Taxonomy.getRawTaxonomy(prev_path, 'ott')
# Edit the id source taxonomy to optimize id coverage
# Kludge to undo lossage in OTT 2.9
for taxon in ids.taxa():
if (len(taxon.sourceIds) >= 2 and
taxon.sourceIds[0].prefix == "ncbi" and
taxon.sourceIds[1].prefix == "silva"):
taxon.sourceIds.remove(taxon.sourceIds[0])
# OTT 2.9 has both Glaucophyta and Glaucophyceae...
# this creates an ambiguity when aligning.
# Need to review this; maybe they *should* be separate taxa.
g1 = ids.maybeTaxon('Glaucophyta')
g2 = ids.maybeTaxon('Glaucophyceae')
if g1 != None and g2 != None and g1 != g2:
g1.absorb(g2)
# Assign old ids to nodes in the new version
ott.carryOverIds(ids) # Align & copy ids
print '-- Checking id list'
retain_ids_from_list(ott, by_qid)
# Use master OTT id list to assign some ids
def retain_ids_from_list(tax, filename):
count = 0
change_count = 0
infile = FileReader(filename)
r = CSVReader(infile)
while True:
row = r.readNext()
if row == None: break
[qid_string, ids] = row
tracep = (qid_string == 'ncbi:33543' or qid_string == 'gbif:2433391'
or qid_string == 'gbif:2467506' or qid_string == 'ncbi:28376')
if tracep:
print '# Tracing %s %s' % (qid_string, ids)
qid = QualifiedId(qid_string)
taxon = tax.lookupQid(qid)
if taxon != None:
id_list = ids.split(';')
qid_id = id_list[0]
if tracep == False:
tracep = (qid_id == '565578' or qid_id == '5541322')
if tracep:
print '# qid %s, id_list %s' % (qid, id_list)
# Look for collision
tenant = tax.lookupId(qid_id)
if tenant != None:
# qid_id is unavailable
# Happens 7700 or so times; most cases ought to be homonymized,
# but not all
if tracep:
print '# %s (for %s) is in use by %s' % (qid_id, taxon, tenant)
False
# Qid from list is one of the taxon's qids.
# Use the proposed id if the qid's node has no id
elif taxon.id == None:
# Happens 87854 for OTT 3.0
if tracep: print '# Setting %s as id of %s' % (qid_id, taxon)
taxon.setId(qid_id)
# Deal with aliases
for id in id_list[1:]:
if tax.lookupId(id) == None:
if tracep: print '# adding %s as id for %s' % (id, taxon)
tax.addId(taxon, id)
else:
if tracep:
print '# alias %s (for %s) is in use by %s' % (id, taxon, tax.lookupId(id))
count += 1
# If it has an id, but qid is not the primary qid, skip it
elif taxon.sourceIds != None and taxon.sourceIds[0] != qid:
if tracep: print '# %s is minor for %s' % (qid_id, taxon)
False
# Use the id in the id_list if it's smaller than the one in taxon
elif int(qid_id) < int(taxon.id):
if tracep: print '# %s is replacing %s as the id of %s' % (qid_id, taxon.id, taxon)
taxon.setId(qid_id)
for id in id_list[1:]:
if tax.lookupId(id) == None:
tax.addId(taxon, id)
change_count += 1
else:
if tracep: print '# %s has id %s < %s' % (qid, qid_id, taxon)
else:
if tracep: print '# no taxon with qid %s; ids %s' % (qid, ids)
infile.close()
print '| Assigned %s ids, changed %s ids from %s' % (count, change_count, filename)
# Could harvest merges from the id list, as well, and
# maybe even restore lower-numbered OTT ids.
# -----------------------------------------------------------------------------
# Reports
def align_and_merge(alignment):
ott = alignment.target
ott.align(alignment)
ott.merge(alignment)
def report_on_h2007(h2007, h2007_to_ott, stars):
# https://github.com/OpenTreeOfLife/reference-taxonomy/issues/40
print '-- Checking realization of h2007'
for taxon in h2007.taxa():
im = h2007_to_ott.image(taxon)
if im != None:
if not im.hasChildren():
print stars, 'h2007 taxon is empty', taxon, im
else:
print stars, 'h2007 taxon not mapped to OTT', taxon
def report(ott):
if False:
# This one is getting too big. Should write it to a file.
print '-- Parent/child homonyms'
ott.parentChildHomonymReport()
# Requires ../germinator
print '-- Inclusion tests'
check_inclusions.check(inclusions_path, ott)
# tests deleted because taxon no longer present:
# Progenitohyus,Cetartiodactyla,3615889,"https://github.com/OpenTreeOfLife/feedback/issues/58"
# Protaspis,Opisthokonta,5345086,"not found"
# Coscinodiscus,Porifera,5344432,""
# Retaria,Opisthokonta,5297815,""
# Campanella,Holozoa,5343447,""
# Hessea,Holozoa,5295839,""
# Neoptera,Tachinidae,5340261,"test of genus"
# -----------------------------------------------------------------------------
# Things to keep an eye on
names_of_interest = ['Ciliophora',
'Phaeosphaeria',
'Morganella',
'Saccharomycetes',
# From the deprecated file
'Methanococcus maripaludis',
'Cyanidioschyzon',
'Pseudoalteromonas atlantica',
'Pantoea ananatis', # deprecated and gone
'Gibberella zeae', # was deprecated
# From notSame directives
'Acantharia', # in Venturiaceae < Fungi < Opisth. / Rhizaria < SAR
'Steinia', # in Lecideaceae < Fungi / Alveolata / insect < Holozoa in irmng
'Epiphloea', # in Pezizomycotina < Opisth. / Rhodophyta should be OK, Rh. is a division
'Campanella', # in Agaricomycotina < Nuclet. / SAR / Holozoa - check IF placement
'Lacrymaria', # in Agaricomycotina / ?
'Frankia', # in Pezizomycotina / Bacteria
'Phialina', # in Pezizomycotina
'Bogoriella',
'Bostrychia',
'Buchnera',
'Podocystis', # not found
'Crepidula',
'Hessea',
'Choanoflagellida',
'Choanozoa',
'Retaria',
'Labyrinthomorpha',
'Ophiurina',
'Rhynchonelloidea',
'Neoptera',
'Tipuloidea',
'Tetrasphaera',
'Protaspis',
'Coscinodiscus',
'Photorhabdus luminescens', # samples from deprecated list
'Xenorhabdus bovienii',
'Gibberella zeae',
'Ruwenzorornis johnstoni',
'Burkea',
'Blattodea',
'Eumetazoa',
'Bivalvia',
'Pelecypoda',
'Parmeliaceae',
'Heterolepa',
'Acanthokara',
'Epigrapsus notatus', # occurs twice in worms, should be merged...
'Carduelis barbata', # 'incompatible-use'
'Spinus barbatus',
'Abatia',
'Jungermanniaceae',
'Populus deltoides',
'Salicaceae',
'Salix sericea',
'Streptophytina',
'Loxosporales',
'Sarrameanales',
'Trichoderma',
'Hypocrea',
'Elaphocordyceps subsessilis', # incompatible-use - ok
'Bacillus selenitireducens', # incompatible-use
'Nematostella vectensis',
'Aiptasia pallida', # Cyanobacteria / cnidarian confusion
'Mahonia', # merged
'Maddenia', # merged
'Crenarchaeota', # silva duplicate
'Dermabacter',
'Orzeliscidae', # should be 'rejected refinement'
'Sogonidae',
'Echinochalina',
'Callyspongia elegans',
'Callyspongia',
'Pseudostomum',
'Pseudostomidae',
'Parvibacter',
'Euxinia',
'Xiphonectes',
'Cylindrocarpon',
'Macrophoma',
'Tricellulortus peponiformis',
'Dischloridium',
'Gloeosporium',
'Exaiptasia pallida',
'Cladochytriaceae',
'Hyaloraphidium',
'Marssonina',
'Marssonia',
'Platypus',
'Dendrosporium',
'Diphylleia',
'Myzostomida',
'Endomyzostoma tenuispinum',
'Myzostoma cirriferum',
'Helotiales',
'Leotiales',
'Desertella',
'Cyclophora',
'Pohlia',
'Lonicera',
'Chromista',
'Protista',
'Protozoa',
'Zaglossus bruijni',
'Acropora',
]