Class: TaxonNameRelationship::Icn::Unaccepting::Synonym::Heterotypic
Constant Summary
collapse
- NOMEN_URI =
'http://purl.obolibrary.org/obo/NOMEN_0000392'.freeze
Class Method Summary
collapse
Instance Method Summary
collapse
#subject_properties, #sv_fix_specify_synonymy_type, #sv_synonym_relationship
assignable, gbif_status_of_object, gbif_status_of_subject, nomenclatural_priority, #subject_properties
disjoint_object_classes, disjoint_subject_classes, #sv_validate_priority, valid_object_ranks, valid_subject_ranks
Class Method Details
.assignment_method ⇒ Object
19
20
21
22
|
# File 'app/models/taxon_name_relationship/icn/unaccepting/synonym/heterotypic.rb', line 19
def self.assignment_method
:icn_set_as_heterotypic_synonym_of
end
|
.disjoint_taxon_name_relationships ⇒ Object
.inverse_assignment_method ⇒ Object
24
25
26
27
|
# File 'app/models/taxon_name_relationship/icn/unaccepting/synonym/heterotypic.rb', line 24
def self.inverse_assignment_method
:icn_heterotypic_synonym
end
|
Instance Method Details
#object_status ⇒ Object
11
12
13
|
# File 'app/models/taxon_name_relationship/icn/unaccepting/synonym/heterotypic.rb', line 11
def object_status
'heterotypic senior synonym'
end
|
#subject_status ⇒ Object
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_relationship ⇒ Object
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_relationship ⇒ Object
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
|