Class: TaxonNameRelationship::Icnp::Unaccepting::Synonym
Defined Under Namespace
Classes: Heterotypic, Homotypic
Constant Summary
collapse
- NOMEN_URI =
'http://purl.obolibrary.org/obo/NOMEN_0000096'.freeze
Class Method Summary
collapse
Instance Method Summary
collapse
assignable, gbif_status_of_object, gbif_status_of_subject, nomenclatural_priority
disjoint_object_classes, disjoint_subject_classes, valid_object_ranks, valid_subject_ranks
Class Method Details
.assignment_method ⇒ Object
32
33
34
35
|
# File 'app/models/taxon_name_relationship/icnp/unaccepting/synonym.rb', line 32
def self.assignment_method
:icnp_set_as_synonym_of
end
|
.disjoint_taxon_name_relationships ⇒ Object
.inverse_assignment_method ⇒ Object
37
38
39
40
|
# File 'app/models/taxon_name_relationship/icnp/unaccepting/synonym.rb', line 37
def self.inverse_assignment_method
:icnp_synonym
end
|
Instance Method Details
#object_status ⇒ Object
24
25
26
|
# File 'app/models/taxon_name_relationship/icnp/unaccepting/synonym.rb', line 24
def object_status
'synonym'
end
|
#subject_properties ⇒ Object
#subject_status ⇒ Object
28
29
30
|
# File 'app/models/taxon_name_relationship/icnp/unaccepting/synonym.rb', line 28
def subject_status
'junior synonym'
end
|
#sv_fix_specify_synonymy_type ⇒ Object
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# File 'app/models/taxon_name_relationship/icnp/unaccepting/synonym.rb', line 63
def sv_fix_specify_synonymy_type
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::Icnp::Unaccepting::Synonym::Homotypic'
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::Icnp::Unaccepting::Synonym::Heterotypic'
end
if self.type_name != new_relationship_name
self.type = new_relationship_name
begin
self.save
return true
rescue
end
end
false
end
|
#sv_not_specific_relationship ⇒ Object
54
55
56
57
58
59
60
61
|
# File 'app/models/taxon_name_relationship/icnp/unaccepting/synonym.rb', line 54
def sv_not_specific_relationship
soft_validations.add(
:type,
'Please specify if this is a homotypic or heterotypic synonym',
success_message: 'Synonym updated to being homotypic or heterotypic',
failure_message: 'Failed to set homotypic or heterotypic'
)
end
|
#sv_synonym_relationship ⇒ Object
42
43
44
45
46
47
48
49
50
51
52
|
# File 'app/models/taxon_name_relationship/icnp/unaccepting/synonym.rb', line 42
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
|