Module: Export::Coldp::Files::Name

Defined in:
lib/export/coldp/files/name.rb

Overview

The names table includes

  • All name strings, even if hanging (= not attached to OTUs/Taxa)

  • It contains strings that may be invalid OR valid

Future considerations

- see bottom, should we parameterize a CSV row add, is it performat?, it
would let us DRY all csv << , but it's also not dry to parameterize.
Probably OK as is.

TODO:

- [ ] refactor ref additions so that they happen at the aggregate level
- [ ] resolve the `.length` issue, what the heck is that needed for

Class Method Summary collapse

Class Method Details

.add_combinations(otu, csv, project_members, reference_csv) ⇒ Object

TODO: we probably have an issue where self is not included as a relationship and we need to inject it into the data?



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
# File 'lib/export/coldp/files/name.rb', line 365

def self.add_combinations(otu, csv, project_members, reference_csv)
  names = combination_names(otu)
  names.length

  names.each do |row| # row is a Hash, not a ActiveRecord object

    # At this point all formatting (gender) is done
    elements = Combination.full_name_hash_from_row(row)

    # NOT POSSIBLE?! Combination can't have infraspecific in UI
    infraspecies, rank = Utilities::Nomenclature.infraspecies(elements)

    rank = elements.keys.last if rank.nil?

    # In some cases where names are described originally with missmatched gender we can exclude dupes
    # This exception needs to be in SQL to simply, a MAX/INDEX of possible ranks with values
    if row[rank + "_cached"] == row['cached']
      ::Export::Coldp.skipped_combinations << row['id']
      next
    end

    scientific_name = ::Utilities::Nomenclature.unmisspell_name(row['cached'])

    uninomial = scientific_name if rank == 'genus'

    csv << [
      row['id'],                                                          # ID
      nil,                                                                # basionymID
      scientific_name,                                                    # scientificName
      row['cached_author_year'],                                          # authorship
      rank,                                                               # rank
      uninomial,                                                          # uninomial   <- if genus group only (i.e. incomplete Combination)
      elements['genus']&.last,                                            # genus
      elements['subgenus']&.last,                                         # subgenus (no parens)
      elements['species']&.last,                                          # species
      infraspecies,                                                       # infraspecificEpithet
      row['source_id'],                                                   # publishedInID
      row['pages'],                                                       # publishedInPage
      row['cached_nomenclature_date']&.year,                              # publishedInYear
      code_field(row['reference_rank_class']),                            # code
      nil,                                                                # nomStatus (nil for Combination)
      nil,                                                                # link (probably TW public or API)
      Export::Coldp.sanitize_remarks(row['id']),                          # remarks
      Export::Coldp.modified(row['updated_at']),                          # modified
      Export::Coldp.modified_by(row[:updated_by_id], project_members)     # modifiedBy
    ]
  end

  if reference_csv
    Source.with(names: names.where(citations: { is_original: true}))
      .joins('JOIN names n on n.source_id = sources.id')
      .find_each do |s|
        Export::Coldp::Files::Reference.add_reference_rows([s].compact, reference_csv, project_members)
      end
  end
end

.add_core_names(otu, csv, project_members, reference_csv) ⇒ Object



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
# File 'lib/export/coldp/files/name.rb', line 436

def self.add_core_names(otu, csv, project_members, reference_csv)
  names = core_names(otu)
  names.length

  names.find_each do |t|

    origin_citation = t.origin_citation
    basionym_id = t.id # by defintion
    uninomial = t.cached if t.rank == 'genus'

    # Future- resolve in SQL perhaps, though not very expensive here
    species = align_gender(t)
    infraspecies = align_gender(t, :infraspecies)

    csv << [
      t.id,                                                               # ID
      basionym_id,                                                        # basionymID
      t.cached,                                                           # scientificName  # should just be t.cached
      t.cached_author_year,                                               # authorship
      t.rank,                                                             # rank
      uninomial,                                                          # uninomial   <- if genus here
      t.genus,                                                            # genus and below - IIF species or lower # TODO: confirm this is OK now
      t.subgenus,                                                         # infragenericEpithet (subgenus)
      species,                                                            # specificEpithet
      infraspecies,                                                       # infraspecificEpithet
      origin_citation&.source_id,                                         # publishedInID
      origin_citation&.pages,                                             # publishedInPage
      t.cached_nomenclature_date&.year,                                   # publishedInYear
      code_field(t.rank_class.name),                                      # code
      ::TaxonName::NOMEN_VALID[t.rank_class.name.to_sym],                 # nomStatus # TODO: untested
      nil,                                                                # link (probably TW public or API)
      Export::Coldp.sanitize_remarks(t.id),                               # remarks
      Export::Coldp.modified(t[:updated_at]),                             # modified
      Export::Coldp.modified_by(t[:updated_by_id], project_members)       # modifiedBy
    ]

    Export::Coldp::Files::Reference.add_reference_rows([origin_citation.source].compact, reference_csv, project_members) if reference_csv && origin_citation
  end
end

.add_invalid_core_names(otu, csv, project_members, reference_csv) ⇒ Object



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
# File 'lib/export/coldp/files/name.rb', line 528

def self.add_invalid_core_names(otu, csv, project_members, reference_csv)
  names = invalid_core_names(otu)

  classification_status = taxon_name_classification_status(names)
  relationship_status = taxon_name_relationship_status(names)

  names.length # !! TODO: without this the result is truncated, why!?

  names.find_each do |t|

    origin_citation = t.origin_citation

    scientific_name = t.cached_misspelling ? ::Utilities::Nomenclature.unmisspell_name(t.cached) : t.cached

    uninomial = scientific_name if t.rank == 'genus'

    nom_status = nomenclatural_status(t.id, classification_status, relationship_status)

    csv << [
      t.id,                                                               # ID
      nil,                                                                # basionymID
      scientific_name,                                                    # scientificName  # should just be t.cached
      t.cached_author_year,                                               # authorship
      t.rank,                                                             # rank
      uninomial,                                                          # uninomial   <- if genus here
      t.genus,                                                            # genus and below - IIF species or lower
      t.subgenus,                                                         # infragenericEpithet (subgenus)
      t.species,                                                          # specificEpithet
      t.infraspecies,                                                     # infraspecificEpithet
      origin_citation&.source_id,                                         # publishedInID
      origin_citation&.pages,                                             # publishedInPage
      t.cached_nomenclature_date&.year,                                   # publishedInYear
      code_field(t.rank_class.name),                                      # code
      nom_status,                                                         # nomStatus
      nil,                                                                # link (probably TW public or API)
      Export::Coldp.sanitize_remarks(t.id),                               # remarks
      Export::Coldp.modified(t[:updated_at]),                             # modified
      Export::Coldp.modified_by(t[:updated_by_id], project_members)       # modifiedBy
    ]

    Export::Coldp::Files::Reference.add_reference_rows([origin_citation.source].compact, reference_csv, project_members) if reference_csv && origin_citation
  end
end

.add_invalid_family_and_higher_names(otu, csv, project_members, reference_csv) ⇒ Object



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
# File 'lib/export/coldp/files/name.rb', line 488

def self.add_invalid_family_and_higher_names(otu, csv, project_members, reference_csv)

  names = invalid_family_and_higher_names(otu)

  classification_status = taxon_name_classification_status(names)
  relationship_status = taxon_name_relationship_status(names)

  names.length # !! TODO: without this the result is truncated, why!?

  names.find_each do |t|
    origin_citation = t.origin_citation

    nom_status = nomenclatural_status(t.id, classification_status, relationship_status)

    csv << [
      t.id,                                                             # ID
      nil,                                                              # basionymID
      t.name,                                                           # scientificName
      t.cached_author_year,                                             # authorship
      t.rank,                                                           # rank
      t.name,                                                           # uninomial
      nil,                                                              # genus and below - IIF species or lower
      nil,                                                              # infragenericEpithet (subgenus)
      nil,                                                              # specificEpithet
      nil,                                                              # infraspecificEpithet
      origin_citation&.source_id,                                       # publishedInID
      origin_citation&.pages,                                           # publishedInPage
      t.cached_nomenclature_date&.year,                                 # publishedInYear
      code_field(t.rank_class.name),                                    # code
      nom_status,                                                       # nomStatus
      nil,                                                              # link (probably TW public or API)
      Export::Coldp.sanitize_remarks(t.id),                             # remarks
      Export::Coldp.modified(t[:updated_at]),                           # modified
      Export::Coldp.modified_by(t[:updated_by_id], project_members)     # modifiedBy
    ]

    Export::Coldp::Files::Reference.add_reference_rows([origin_citation.source].compact, reference_csv, project_members) if reference_csv && origin_citation
  end
end

.add_original_combinations(otu, csv, project_members, reference_csv) ⇒ Object



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
# File 'lib/export/coldp/files/name.rb', line 232

def self.add_original_combinations(otu, csv, project_members, reference_csv)
  names = original_combination_names(otu)
  names.length

  names.find_each do |row|
    # At this point all formatting (gender) is done
    elements = Protonym.original_combination_full_name_hash_from_flat(row)

    infraspecies, rank = Utilities::Nomenclature.infraspecies(elements)
    rank = 'forma' if rank == 'form' # CoL preferred string

    # Hmm- why needed?
    rank = elements.keys.last if rank.nil? # Note that this depends on order of Hash creation

    scientific_name = row['cached_misspelling'] ? ::Utilities::Nomenclature.unmisspell_name(row['cached_original_combination']) : row['cached_original_combination']

    # TODO: resolve/verify needed
    uninomial = scientific_name if rank == 'genus'

    # !! Ideally we de-reify these names ina the query with (cached != cached_original_combination)
    # !! SO that we know these *must* be reified
    # !! We are reifieing *without* "[sic]" in the string
    id = ::Utilities::Nomenclature.reified_id(row['id'], scientific_name)

    # By definition
    basionym_id = row['id']

    csv << [
      id,                                                                 # ID
      basionym_id,                                                        # basionymID
      scientific_name,                                                    # scientificName
      row['cached_author_year'].gsub(/[\(\)]/, ''),                       # authorship
      rank,                                                               # rank
      uninomial,                                                          # uninomial
      elements['genus']&.last,                                            # genus
      elements['subgenus']&.last,                                         # subgenus (no parens)
      elements['species']&.last,                                          # species
      infraspecies,                                                       # infraspecificEpithet
      row['source_id'],                                                   # referenceID
      row['pages'],                                                       # publishedInPage
      row['cached_nomenclature_date']&.year,                              # publishedInYear - OK
      code_field(row['reference_rank_class']),                            # code
      nil,                                                                # status https://api.checklistbank.org/vocab/nomStatus
      nil,                                                                # link (probably TW public or API)
      nil,                                                                # remarks (we have no way to capture this in TW)
      Export::Coldp.modified(row[:updated_at]),                           # modified
      Export::Coldp.modified_by(row[:updated_by_id], project_members)     # modifiedBy
    ]

    # !! We do not need to add a reference here because it is the same as the corresponding Protonym id
  end
end

.add_valid_family_names(otu, csv, project_members, reference_csv) ⇒ Object



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
# File 'lib/export/coldp/files/name.rb', line 285

def self.add_valid_family_names(otu, csv, project_members, reference_csv)
  names = valid_family_names(otu)
  names.length

  names.find_each do |t|
    origin_citation = t.origin_citation
    csv << [
      t.id,                                                               # ID
      nil,                                                                # basionymID
      t.cached,                                                           # scientificName  # should just be t.cached
      t.cached_author_year,                                               # authorship
      t.rank,                                                             # rank
      t.cached,                                                           # uninomial
      nil,                                                                # genus and below - IIF species or lower
      nil,                                                                # infragenericEpithet (subgenus)
      nil,                                                                # specificEpithet
      nil,                                                                # infraspecificEpithet
      origin_citation&.source_id,                                         # publishedInID
      origin_citation&.pages,                                             # publishedInPage
      t.cached_nomenclature_date&.year,                                   # publishedInYear
      code_field(t.rank_class.name),                                      # code
      ::TaxonName::NOMEN_VALID[t.rank_class.name.to_sym],                 # nomStatus
      nil,                                                                # link (probably TW public or API)
      Export::Coldp.sanitize_remarks(t.id),                               # remarks
      Export::Coldp.modified(t[:updated_at]),                             # modified
      Export::Coldp.modified_by(t[:updated_by_id], project_members)       # modifiedBy
    ]

    Export::Coldp::Files::Reference.add_reference_rows([origin_citation.source].compact, reference_csv, project_members) if reference_csv && origin_citation
  end
end

.add_valid_higher_names(otu, csv, project_members, reference_csv) ⇒ Object

TODO: could select less, don’t need ‘cached’, just name?



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
# File 'lib/export/coldp/files/name.rb', line 318

def self.add_valid_higher_names(otu, csv, project_members, reference_csv)
  names = valid_higher_names(otu)

  names.length
  names.find_each do |t|

    # TODO: isolate/refine
    origin_citation = t.origin_citation

    csv << [
      t.id,                                                               # ID
      nil,                                                                # basionymID
      t.cached,                                                           # scientificName  # should just be t.name?
      t.cached_author_year,                                               # authorship
      t.rank,                                                             # rank
      t.cached,                                                           # uninomial
      nil,                                                                # genus and below - IIF species or lower
      nil,                                                                # infragenericEpithet (subgenus)
      nil,                                                                # specificEpithet
      nil,                                                                # infraspecificEpithet
      origin_citation&.source_id,                                         # publishedInID
      origin_citation&.pages,                                             # publishedInPage
      t.cached_nomenclature_date&.year,                                   # publishedInYear
      code_field(t.rank_class.name),                                      # code
      ::TaxonName::NOMEN_VALID[t.rank_class.name.to_sym],                 # nomStatus
      nil,                                                                # link (probably TW public or API)
      Export::Coldp.sanitize_remarks(t.id),                               # remarks
      Export::Coldp.modified(t[:updated_at]),                             # modified
      Export::Coldp.modified_by(t[:updated_by_id], project_members)       # modifiedBy
    ]

    Export::Coldp::Files::Reference.add_reference_rows([origin_citation.source].compact, reference_csv, project_members) if reference_csv && origin_citation
  end
end

.align_gender(core_name, rank = :species) ⇒ Object



422
423
424
425
426
427
428
429
430
431
432
433
434
# File 'lib/export/coldp/files/name.rb', line 422

def self.align_gender(core_name, rank = :species)
  t = core_name.send(rank)
  return t unless core_name.name == t
  if a = core_name.genus_gender
    if b = core_name.send(
        (core_name.genus_gender + '_name').to_sym
    )
      return b
    else
      return t
    end
  end
end

.code_field(rank_class) ⇒ Object



24
25
26
27
28
29
30
# File 'lib/export/coldp/files/name.rb', line 24

def self.code_field(rank_class)
  return 'ICZN' if rank_class =~ /Iczn/
  return 'ICNP' if rank_class =~ /Icnp/
  return 'ICVCN' if rank_class =~ /Icvcn/
  return 'ICN' if rank_class =~ /Icn/
  nil
end

.combination_names(otu) ⇒ Object

TODO: Complete combinations only TODO: add .fully_specified ?



355
356
357
358
359
360
361
362
# File 'lib/export/coldp/files/name.rb', line 355

def self.combination_names(otu)
  a = otu.taxon_name.self_and_descendants.unscope(:order).select(:id)

  b = Combination.
    flattened.with(project_scope: a)
    .complete
    .joins('JOIN project_scope ps on ps.id = taxon_names.cached_valid_taxon_name_id') # Combinations that point to any of "a"
end

.core_names(otu) ⇒ Object

Core names are:

- valid
- genus or species group
- Protonyms


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
# File 'lib/export/coldp/files/name.rb', line 66

def self.core_names(otu)

  # TODO: adding .that_is_valid increases names, why?  Are we hitting duplicates?
  a = otu.taxon_name.self_and_descendants.unscope(:order).select(:id)

  # b sets up the query that aggregates the different ranks in one row
  b = ::Protonym.is_species_or_genus_group.with(valid_scope: a)
    .where(cached_is_valid: true)
    .joins('JOIN valid_scope on valid_scope.id = taxon_names.cached_valid_taxon_name_id')

  select = 'taxon_names.id,'
  select << ::NomenclaturalRank.rank_expansion_sql(ranks: %w{genus subgenus species}, nomenclatural_code: otu.taxon_name.nomenclatural_code)

  # We group some ranks here
  # TODO: This doesn't likely actually work in the case of subspecies + <some other rank> ?
  select << ", MAX(CASE WHEN parent.rank_class LIKE \'%::Subspecies\' OR parent.rank_class LIKE \'%::Variety\' OR parent.rank_class LIKE \'%::Form\' THEN parent.name END) AS infraspecies"

  b = b.select(select)
    .joins('INNER JOIN taxon_name_hierarchies ON taxon_names.id = taxon_name_hierarchies.descendant_id')
    .joins('LEFT JOIN taxon_names AS parent ON parent.id = taxon_name_hierarchies.ancestor_id')
    .group('taxon_names.id')

  c = ::TaxonName.with(n: b)
    .joins('JOIN n on n.id = taxon_names.id')
    .where(cached_is_valid: true)
    .eager_load(origin_citation: [:source])
    .select('taxon_names.*, n.genus, n.subgenus, n.species, n.infraspecies, n.genus_gender')
end

.generate(otu, project_members, reference_csv = nil) ⇒ Object



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
# File 'lib/export/coldp/files/name.rb', line 131

def self.generate(otu, project_members, reference_csv = nil)
  name_total = 0

  # We should not be setting this here !!
  project_id = otu.project_id

  # TODO: scope this to name_remarks, keep internal
  if predicate_id = Predicate.find_by(
      uri: 'https://github.com/catalogueoflife/coldp#Name.remarks',
      project_id:)&.id

    ::Export::Coldp.remarks = ::Export::Coldp.get_remarks(otu.taxon_name.self_and_descendants, predicate_id)
  end

  # TODO: Why is thie output here?
  output = {}
  output[:csv] = ::CSV.generate(col_sep: "\t") do |csv|
    csv << %w{
      ID
      basionymID
      scientificName
      authorship
      rank
      uninomial
      genus
      infragenericEpithet
      specificEpithet
      infraspecificEpithet
      referenceID
      publishedInPage
      publishedInYear
      code
      status
      link
      remarks
      modified
      modifiedBy
    }

    add_valid_higher_names(otu, csv, project_members, reference_csv)
    add_valid_family_names(otu, csv, project_members, reference_csv)
    add_core_names(otu, csv, project_members, reference_csv)
    add_combinations(otu, csv, project_members, reference_csv)
    add_original_combinations(otu, csv, project_members, reference_csv)
    add_invalid_family_and_higher_names(otu, csv, project_members, reference_csv)
    add_invalid_core_names(otu, csv, project_members, reference_csv)
  end
end

.invalid_core_names(otu) ⇒ Object



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
# File 'lib/export/coldp/files/name.rb', line 95

def self.invalid_core_names(otu)
  a = otu.taxon_name.self_and_descendants.unscope(:order).select(:id)


  b = ::Protonym
    .with(valid_scope: a)
    .joins('JOIN valid_scope on valid_scope.id = taxon_names.cached_valid_taxon_name_id')
    .is_species_or_genus_group
    .where(cached_is_valid: false)
    .where('((taxon_names.cached = taxon_names.cached_original_combination) OR (taxon_names.cached_original_combination IS NULL))')
    .and(TaxonName.where.not("taxon_names.rank_class like '%::Iczn::Family%' AND taxon_names.cached_is_valid = FALSE"))

  select = 'taxon_names.id,'
  select << ::NomenclaturalRank.rank_expansion_sql(ranks: %w{genus subgenus species}, nomenclatural_code: otu.taxon_name.nomenclatural_code)

  # We group some ranks here
  # TODO: This doesn't likely actually work in the case of subspecies + <some other rank> ?
  select << ", MAX(CASE WHEN parent.rank_class LIKE \'%::Subspecies\' OR parent.rank_class LIKE \'%::Variety\' OR parent.rank_class LIKE \'%::Form\' THEN parent.name END) AS infraspecies"

  b = b

  b = b.select(select)
    .joins('INNER JOIN taxon_name_hierarchies ON taxon_names.id = taxon_name_hierarchies.descendant_id')
    .joins('LEFT JOIN taxon_names AS parent ON parent.id = taxon_name_hierarchies.ancestor_id')
    .group('taxon_names.id')
    .eager_load(origin_citation: [:source])

  c = ::TaxonName.with(n: b)
    .joins('JOIN n on n.id = taxon_names.id')
    .where(cached_is_valid: false) # redundant
    .eager_load(origin_citation: [:source])
    .select('taxon_names.*, n.genus, n.subgenus, n.species, n.infraspecies')
end

.invalid_family_and_higher_names(otu) ⇒ Object

Invalid family/higher names



203
204
205
206
207
208
209
210
211
212
# File 'lib/export/coldp/files/name.rb', line 203

def self.invalid_family_and_higher_names(otu)
  a = otu.taxon_name.self_and_descendants
    .where(
      type: 'Protonym',
      rank_class: FAMILY_RANK_NAMES + HIGHER_RANK_NAMES,
      cached_is_valid: false)
    .unscope(:order)
    .eager_load(origin_citation: [:source]) # TODO, just source_id, and pages
    .select(:id, :name, :type, :cached_author_year, :cached_nomenclature_date, :rank_class, :cached_is_valid, :cached_valid_taxon_name_id, :updated_at, :updated_by_id) # cached has sic
end

.nomenclatural_status(taxon_name_id, classification_status = [], relationship_status = []) ⇒ Object

Parameters:

  • classification_status (defaults to: [])

    Array

  • relationship_status (defaults to: [])

    Array



478
479
480
481
482
483
484
485
486
# File 'lib/export/coldp/files/name.rb', line 478

def self.nomenclatural_status(taxon_name_id, classification_status = [], relationship_status = [])
  # Always prefer  a classification, regardless of age
  a = classification_status.bsearch{|i| i['taxon_name_id'] >= taxon_name_id}
  return a['type'].safe_constantize::NOMEN_URI if !a.blank? && a['taxon_name_id'] == taxon_name_id # binary is first >=
  b = relationship_status.bsearch{|i| i['subject_taxon_name_id'] >= taxon_name_id}
  return nil if b.blank? || b['subject_taxon_name_id'] != taxon_name_id
  return b['type'].safe_constantize::NOMEN_URI unless b.blank?
  nil
end

.original_combination_names(otu) ⇒ Object

Valid original combinations are:

- species or genus group names
- valid names
- names with original combinations set
- names where cached != original_combination, i.e. it needs re-ification

As a test these should parse correctly in the Biodiversity wrapper as of 4/8/2025.



222
223
224
225
226
227
228
229
230
# File 'lib/export/coldp/files/name.rb', line 222

def self.original_combination_names(otu)
  a = core_names(otu)

  b = Protonym
    .original_combination_specified
    .original_combinations_flattened.with(project_scope: a)
    .where('taxon_names.cached != taxon_names.cached_original_combination') # Only reified!!
    .joins('JOIN project_scope ps on ps.id = taxon_names.id')
end

.skipped_name_idsObject



20
21
22
# File 'lib/export/coldp/files/name.rb', line 20

def self.skipped_name_ids
  @skipped_name_ids
end

.taxon_name_classification_status(scope) ⇒ Object



32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/export/coldp/files/name.rb', line 32

def self.taxon_name_classification_status(scope)
  c = TaxonNameClassification.with(invalid_names: scope.select('taxon_names.id invalid_id'))
    .joins('JOIN invalid_names ON invalid_names.invalid_id = taxon_name_classifications.taxon_name_id')
    .joins("LEFT JOIN citations c on c.citation_object_id = taxon_name_classifications.id and c.citation_object_type = 'TaxonNameClassification'")
    .joins('LEFT JOIN sources s on s.id = c.source_id')
    .select('taxon_name_classifications.taxon_name_id, s.cached_nomenclature_date,
            MAX(taxon_name_classifications.type) AS type,
            MAX(s.cached_nomenclature_date) as date')
    .group('taxon_name_classifications.taxon_name_id, s.cached_nomenclature_date, taxon_name_classifications.type')
    .order('taxon_name_classifications.taxon_name_id, s.cached_nomenclature_date')

  ApplicationRecord.connection.execute(c.to_sql).to_a
end

.taxon_name_relationship_status(scope) ⇒ Object



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/export/coldp/files/name.rb', line 46

def self.taxon_name_relationship_status(scope)
  c = TaxonNameRelationship.with(invalid_names: scope.select('taxon_names.id invalid_id'))
    .joins('JOIN invalid_names ON invalid_names.invalid_id = taxon_name_relationships.subject_taxon_name_id')
    .joins("LEFT JOIN citations c on c.citation_object_id = taxon_name_relationships.id and c.citation_object_type = 'TaxonNameClassification'")
    .joins('LEFT JOIN sources s on s.id = c.source_id')
    .where('taxon_name_relationships.object_taxon_name_id = invalid_names.cached_valid_taxon_name_id')
    .where(taxon_name_relationships: {type: TAXON_NAME_RELATIONSHIP_NAMES_SYNONYM})
    .select('taxon_name_relationships.subject_taxon_name_id, s.cached_nomenclature_date,
            MAX(taxon_name_relationships.type) AS type,
            MAX(s.cached_nomenclature_date) as date')
    .group('taxon_name_relationships.subject_taxon_name_id, s.cached_nomenclature_date, taxon_name_relationships.type')
    .order('taxon_name_relationships.subject_taxon_name_id, s.cached_nomenclature_date')

  ApplicationRecord.connection.execute(c.to_sql).to_a
end

.valid_family_names(otu) ⇒ Object

Valid family names are:

- valid family group names


194
195
196
197
198
199
200
# File 'lib/export/coldp/files/name.rb', line 194

def self.valid_family_names(otu)
  a = otu.taxon_name.self_and_descendants
    .where(rank_class: FAMILY_RANK_NAMES, cached_is_valid: true)
    .unscope(:order)
    .eager_load(origin_citation: [:source]) # TODO, just source_id, and pages
    .select(:id, :cached, :type, :cached_author_year, :cached_nomenclature_date, :rank_class, :updated_at, :updated_by_id)
end

.valid_higher_names(otu) ⇒ Object

Higher names are:

- valid higher names

Notes

- candidate for merging with valid_family_names


184
185
186
187
188
189
190
# File 'lib/export/coldp/files/name.rb', line 184

def self.valid_higher_names(otu)
  a = otu.taxon_name.self_and_descendants
    .where(rank_class: HIGHER_RANK_NAMES, cached_is_valid: true)
    .unscope(:order)
    .eager_load(origin_citation: [:source]) # TODO, just source_id, and pages
    .select(:id, :cached, :type, :cached_author_year, :cached_nomenclature_date, :rank_class, :updated_at, :updated_by_id)
end