Class: TaxonNameRelationship::Iczn::Invalidating::Synonym
Defined Under Namespace
Classes: ForgottenName, Objective, Subjective, Suppression
Constant Summary
collapse
- NOMEN_URI =
'http://purl.obolibrary.org/obo/NOMEN_0000276'.freeze
Class Method Summary
collapse
Instance Method Summary
collapse
assignable, disjoint_subject_classes, gbif_status_of_subject, nomenclatural_priority, #similar_homonym_string, #subject_properties
disjoint_subject_classes, #sv_validate_priority, valid_object_ranks, valid_subject_ranks
Class Method Details
.assignment_method ⇒ Object
40
41
42
43
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym.rb', line 40
def self.assignment_method
:iczn_set_as_synonym_of
end
|
.disjoint_object_classes ⇒ Object
19
20
21
22
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym.rb', line 19
def self.disjoint_object_classes
self.parent.disjoint_object_classes +
self.collect_descendants_and_itself_to_s(TaxonNameClassification::Iczn::Unavailable)
end
|
.disjoint_taxon_name_relationships ⇒ Object
.inverse_assignment_method ⇒ Object
46
47
48
49
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym.rb', line 46
def self.inverse_assignment_method
:iczn_synonym
end
|
Instance Method Details
#object_status ⇒ Object
24
25
26
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym.rb', line 24
def object_status
'senior synonym'
end
|
#object_status_connector_to_subject ⇒ Object
36
37
38
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym.rb', line 36
def object_status_connector_to_subject
' of'
end
|
#subject_status ⇒ Object
28
29
30
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym.rb', line 28
def subject_status
'synonym'
end
|
#subject_status_connector_to_object ⇒ Object
32
33
34
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym.rb', line 32
def subject_status_connector_to_object
' of'
end
|
#sv_fix_not_specific_relationship ⇒ Object
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym.rb', line 69
def sv_fix_not_specific_relationship
s = self.subject_taxon_name
o = self.object_taxon_name
subject_type = s.type_taxon_name
object_type = o.type_taxon_name
new_relationship_name = self.type_name
if (subject_type == object_type && !subject_type.nil? ) || (!s.get_primary_type.empty? && s.has_same_primary_type(o) )
new_relationship_name = 'TaxonNameRelationship::Iczn::Invalidating::Synonym::Objective'
elsif (subject_type != object_type && !subject_type.nil? ) || (!s.get_primary_type.empty? && !o.get_primary_type.empty? && !s.has_same_primary_type(o))
new_relationship_name = 'TaxonNameRelationship::Iczn::Invalidating::Synonym::Subjective'
end
if new_relationship_name && self.type_name != new_relationship_name
self.type = new_relationship_name
self.save
return true
end
false
end
|
#sv_not_specific_relationship ⇒ Object
63
64
65
66
67
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym.rb', line 63
def sv_not_specific_relationship
soft_validations.add(:type, 'Please specify if this is a objective or subjective synonym',
success_message: 'Synonym updated to being objective or subjective',
failure_message: 'Failed to update the synonym relationship')
end
|
#sv_synonym_relationship ⇒ Object
51
52
53
54
55
56
57
58
59
60
61
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym.rb', line 51
def sv_synonym_relationship
if self.source
date1 = self.source.cached_nomenclature_date.to_time
date2 = self.subject_taxon_name.cached_nomenclature_date
if !!date1 && !!date2
soft_validations.add(:base, "#{self.subject_taxon_name.cached_html_name_and_author_year} was not described at the time of citation (#{date1.to_date})") if date2.to_date > date1.to_date
end
else
soft_validations.add(:base, 'The original publication is not selected')
end
end
|