Class: TaxonNameRelationship::Icn::Unaccepting::Synonym::Heterotypic

Inherits:
TaxonNameRelationship::Icn::Unaccepting::Synonym show all
Defined in:
app/models/taxon_name_relationship/icn/unaccepting/synonym/heterotypic.rb

Constant Summary collapse

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from TaxonNameRelationship::Icn::Unaccepting::Synonym

#subject_properties, #sv_fix_specify_synonymy_type, #sv_synonym_relationship

Methods inherited from TaxonNameRelationship::Icn::Unaccepting

assignable, gbif_status_of_object, gbif_status_of_subject, nomenclatural_priority, #subject_properties

Methods inherited from TaxonNameRelationship::Icn

disjoint_object_classes, disjoint_subject_classes, #sv_validate_priority, valid_object_ranks, valid_subject_ranks

Class Method Details

.assignment_methodObject



19
20
21
22
# File 'app/models/taxon_name_relationship/icn/unaccepting/synonym/heterotypic.rb', line 19

def self.assignment_method
  # bus.set_as_icn_heterotypic_synonym_of(aus)
  :icn_set_as_heterotypic_synonym_of
end

.disjoint_taxon_name_relationshipsObject



5
6
7
8
9
# File 'app/models/taxon_name_relationship/icn/unaccepting/synonym/heterotypic.rb', line 5

def self.disjoint_taxon_name_relationships
  self.parent.disjoint_taxon_name_relationships +
      self.collect_to_s(TaxonNameRelationship::Icn::Unaccepting::Synonym) +
      self.collect_descendants_and_itself_to_s(TaxonNameRelationship::Icn::Unaccepting::Synonym::Homotypic)
end

.inverse_assignment_methodObject



24
25
26
27
# File 'app/models/taxon_name_relationship/icn/unaccepting/synonym/heterotypic.rb', line 24

def self.inverse_assignment_method
  # aus.icn_heterotypic_synonym = bus
  :icn_heterotypic_synonym
end

Instance Method Details

#object_statusObject



11
12
13
# File 'app/models/taxon_name_relationship/icn/unaccepting/synonym/heterotypic.rb', line 11

def object_status
  'heterotypic senior synonym'
end

#subject_statusObject



15
16
17
# File 'app/models/taxon_name_relationship/icn/unaccepting/synonym/heterotypic.rb', line 15

def subject_status
  'heterotypic synonym'
end

#sv_not_specific_relationshipObject



37
38
39
# File 'app/models/taxon_name_relationship/icn/unaccepting/synonym/heterotypic.rb', line 37

def sv_not_specific_relationship
  true
end

#sv_specific_relationshipObject



29
30
31
32
33
34
35
# File 'app/models/taxon_name_relationship/icn/unaccepting/synonym/heterotypic.rb', line 29

def sv_specific_relationship
  s = subject_taxon_name
  o = object_taxon_name
  if (s.type_taxon_name == o.type_taxon_name && !s.type_taxon_name.nil? ) || (!s.get_primary_type.empty? && s.has_same_primary_type(o) )
    soft_validations.add(:type, "Subjective synonyms #{s.cached_html} and #{o.cached_html} should not have the same type")
  end
end