Class: TaxonNameRelationship::Icnp::Unaccepting::Synonym::Homotypic

Inherits:
TaxonNameRelationship::Icnp::Unaccepting::Synonym show all
Defined in:
app/models/taxon_name_relationship/icnp/unaccepting/synonym/homotypic.rb

Constant Summary collapse

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from TaxonNameRelationship::Icnp::Unaccepting::Synonym

#subject_properties, #sv_fix_specify_synonymy_type, #sv_synonym_relationship

Methods inherited from TaxonNameRelationship::Icnp::Unaccepting

assignable, gbif_status_of_object, gbif_status_of_subject, nomenclatural_priority, #subject_properties

Methods inherited from TaxonNameRelationship::Icnp

disjoint_object_classes, disjoint_subject_classes, valid_object_ranks, valid_subject_ranks

Class Method Details

.assignment_methodObject



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

def self.assignment_method
  # bus.set_as_icn_homotypic_synonym_of(aus)
  :icnp_set_as_objective_synonym_of
end

.disjoint_taxon_name_relationshipsObject



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

def self.disjoint_taxon_name_relationships
  self.parent.disjoint_taxon_name_relationships +
      self.collect_to_s(TaxonNameRelationship::Icnp::Unaccepting::Synonym,
                        TaxonNameRelationship::Icnp::Unaccepting::Synonym::Heterotypic)
end

.inverse_assignment_methodObject



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

def self.inverse_assignment_method
  # aus.icn_homotypic_synonym = bus
  :icnp_objective_synonym
end

Instance Method Details

#object_statusObject



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

def object_status
  'homotypic earlier synonym'
end

#subject_statusObject



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

def subject_status
  'homotypic later synonym'
end

#sv_not_specific_relationshipObject



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

def sv_not_specific_relationship
  true
end

#sv_objective_synonym_relationshipObject



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

def sv_objective_synonym_relationship
  s = self.subject_taxon_name
  o = self.object_taxon_name
  if (s.type_taxon_name != o.type_taxon_name ) || !s.has_same_primary_type(o)
    soft_validations.add(:type, "Homotypic synonyms #{s.cached_html} and #{o.cached_html} should have the same type")
  end
end