Class: TaxonNameRelationship::Iczn::Invalidating::Synonym::Objective
Defined Under Namespace
Classes: ReplacedHomonym, SynonymicHomonym, UnjustifiedEmendation, UnnecessaryReplacementName
Constant Summary
collapse
- NOMEN_URI =
'http://purl.obolibrary.org/obo/NOMEN_0000277'.freeze
Class Method Summary
collapse
Instance Method Summary
collapse
disjoint_object_classes, #object_status_connector_to_subject, #subject_status_connector_to_object, #sv_fix_not_specific_relationship, #sv_synonym_relationship
assignable, disjoint_object_classes, disjoint_subject_classes, gbif_status_of_subject, nomenclatural_priority, #object_status_connector_to_subject, #similar_homonym_string, #subject_properties, #subject_status_connector_to_object, #sv_fix_not_specific_relationship, #sv_synonym_relationship
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/iczn/invalidating/synonym/objective.rb', line 19
def self.assignment_method
:iczn_set_as_objective_synonym_of
end
|
.disjoint_taxon_name_relationships ⇒ Object
.inverse_assignment_method ⇒ Object
25
26
27
28
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym/objective.rb', line 25
def self.inverse_assignment_method
:iczn_objective_synonym
end
|
Instance Method Details
#object_status ⇒ Object
11
12
13
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym/objective.rb', line 11
def object_status
'senior objective synonym'
end
|
#subject_status ⇒ Object
15
16
17
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym/objective.rb', line 15
def subject_status
'objective synonym'
end
|
#sv_fix_objective_synonym_relationship ⇒ Object
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym/objective.rb', line 38
def sv_fix_objective_synonym_relationship
fixed = false
s = self.subject_taxon_name
o = self.object_taxon_name
if s.get_primary_type.empty?
t2 = s
t1 = o
elsif o.get_primary_type.empty?
t2 = o
t1 = s
else
return false
end
types2 = t1.get_primary_type
tnr2 = t1.type_taxon_name_relationship
unless types2.empty?
new_type_material = []
types2.each do |t|
new_type_material.push({type_type: t.type_type, protonym_id: t2.id, collection_object_id: t.collection_object_id, source: t.source})
end
t2.type_materials.build(new_type_material)
fixed = true
end
unless tnr2.nil?
tnr = t2.related_taxon_name_relationships.build(type: tnr2.type, subject_taxon_name_id: tnr2.subject_taxon_name_id)
c2 = tnr2.citations.where(is_original: true).first
tnr.citations.build(source_id: c2.source_id, pages: c2.pages) unless c2.nil?
fixed = true
end
if fixed
begin
Protonym.transaction do
t2.save
end
return true
rescue
return false
end
end
end
|
#sv_not_specific_relationship ⇒ Object
81
82
83
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym/objective.rb', line 81
def sv_not_specific_relationship
true
end
|
#sv_objective_synonym_relationship ⇒ Object
30
31
32
33
34
35
36
|
# File 'app/models/taxon_name_relationship/iczn/invalidating/synonym/objective.rb', line 30
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, "Objective synonyms #{s.cached_html} and #{o.cached_html} should have the same type")
end
end
|