Closed issue: Taxa of ranks not on AntCat (nothing to do for now)
Added by Fredrik Palmkron about 5 years ago — Closed by Fredrik Palmkron

We have these ranks on AntCat: Family, Subfamily, Tribe, Genus, Subgenus, Species and Subspecies

For name records we also have SubtribeName

I have nothing in particular in mind for these, but I created this issue to collect them for the future.


Looks like subtribes
Randomly found
With name type SubtribeName
-cina
-ina (includes repeats from -cina)
-titi

Protonyms

Protonyms is a different story. For example, we have Dorylida - "Dorylinae as family: Leach, 1815: 147 [Dorylida (family-group name)"


Scripts
  • Taxon.joins(:name).where(names: { type: 'SubtribeName' }).each do |t| puts "* {tax #{t.id}} - #{t.type}" end; nil
  • Taxon.where.not(type: ['Species', 'Subspecies']).where('name_cache LIKE ?', "%cina").each do |t| puts "* {tax #{t.id}} - #{t.type}" end; nil
  • Taxon.where.not(type: ['Species', 'Subspecies']).where('name_cache LIKE ?', "%ina").each do |t| puts "* {tax #{t.id}} - #{t.type}" end; nil
  • Taxon.where.not(type: ['Species', 'Subspecies']).where('name_cache LIKE ?', "%titi").each do |t| puts "* {tax #{t.id}} - #{t.type}" end; nil
1 comment

Fredrik Palmkron commented almost 5 years ago:

Closing as OK for now (see https://github.com/calacademy-research/antcat/issues/666)