Class: TaxonNameClassification::Latinized::PartOfSpeech

Inherits:
TaxonNameClassification::Latinized show all
Defined in:
app/models/taxon_name_classification/latinized/part_of_speech.rb

Defined Under Namespace

Classes: Adjective, NounInApposition, NounInGenitiveCase, Participle

Constant Summary collapse

NOMEN_URI =
'http://purl.obolibrary.org/obo/NOMEN_0000046'.freeze

Constants included from SoftValidation

SoftValidation::ANCESTORS_WITH_SOFT_VALIDATIONS

Instance Attribute Summary

Attributes inherited from TaxonNameClassification

#project_id, #taxon_name_id, #type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from TaxonNameClassification::Latinized

assignable

Methods inherited from TaxonNameClassification

#annotated_object, annotates?, assignable, #classification_label, code_applicability_end_year, code_applicability_start_year, collect_descendants_and_itself_to_s, collect_descendants_to_s, collect_to_s, descendants, disjoint_taxon_name_classes, gbif_status, label, #nomen_id, nomen_uri, #nomenclature_code, #nomenclature_code_matches, parent, possible_genus_endings, possible_species_endings, questionable_species_endings, #set_cached, #set_cached_names_for_taxon_names, #sv_fix_proper_classification, #sv_not_specific_classes, #sv_proper_classification, #sv_proper_year, #sv_validate_disjoint_classes, #type_class, #type_class=, #type_name, #validate_taxon_name_classification

Methods included from SoftValidation

#clear_soft_validations, #fix_for, #fix_soft_validations, #soft_fixed?, #soft_valid?, #soft_validate, #soft_validated?, #soft_validations, #soft_validators

Methods included from Shared::IsData

#errors_excepting, #full_error_messages_excepting, #identical, #is_community?, #is_destroyable?, #is_editable?, #is_in_use?, #is_in_users_projects?, #metamorphosize, #similar

Methods included from Shared::Notes

#concatenated_notes_string, #reject_notes

Methods included from Shared::Citations

#cited?, #mark_citations_for_destruction, #nomenclature_date, #origin_citation_source_id, #reject_citations, #requires_citation?, #sources_by_topic_id

Methods included from Housekeeping

#has_polymorphic_relationship?

Methods inherited from ApplicationRecord

transaction_with_retry

Class Method Details

.applicable_ranksObject



5
6
7
# File 'app/models/taxon_name_classification/latinized/part_of_speech.rb', line 5

def self.applicable_ranks
  SPECIES_RANK_NAMES
end

Instance Method Details

#set_gender_in_taxon_nameObject (protected)

A set_cached helper, see Participle, Adjective



12
13
14
15
16
17
18
19
20
21
22
# File 'app/models/taxon_name_classification/latinized/part_of_speech.rb', line 12

def set_gender_in_taxon_name
  t = taxon_name
  if t.masculine_name.blank? && t.feminine_name.blank? && t.neuter_name.blank?
    forms = t.predict_three_forms
    t.update_columns(
      masculine_name: forms[:masculine_name],
      feminine_name: forms[:feminine_name],
      neuter_name: forms[:neuter_name]
    )
  end
end

#validate_uniqueness_of_latinizedObject (protected)



24
25
26
27
28
# File 'app/models/taxon_name_classification/latinized/part_of_speech.rb', line 24

def validate_uniqueness_of_latinized
  if TaxonNameClassification::Latinized::PartOfSpeech.where(taxon_name_id: self.taxon_name_id).not_self(self).any?
    errors.add(:taxon_name_id, 'The Part of speech is already selected')
  end
end