1
|
CREATE OR REPLACE FUNCTION score_ok(score double precision)
|
2
|
RETURNS boolean AS
|
3
|
$BODY$
|
4
|
SELECT $1 >= 0.8
|
5
|
$BODY$
|
6
|
LANGUAGE sql VOLATILE
|
7
|
COST 100;
|
8
|
|
9
|
|
10
|
CREATE TABLE tnrs
|
11
|
(
|
12
|
"Time_submitted" timestamp with time zone,
|
13
|
"Name_number" text,
|
14
|
"Name_submitted" text NOT NULL,
|
15
|
"Overall_score" text,
|
16
|
"Name_matched" text,
|
17
|
"Name_matched_rank" text,
|
18
|
"Name_score" text,
|
19
|
"Name_matched_author" text,
|
20
|
"Name_matched_url" text,
|
21
|
"Author_matched" text,
|
22
|
"Author_score" text,
|
23
|
"Family_matched" text,
|
24
|
"Family_score" text,
|
25
|
"Name_matched_accepted_family" text,
|
26
|
"Genus_matched" text,
|
27
|
"Genus_score" text,
|
28
|
"Specific_epithet_matched" text,
|
29
|
"Specific_epithet_score" text,
|
30
|
"Infraspecific_rank" text,
|
31
|
"Infraspecific_epithet_matched" text,
|
32
|
"Infraspecific_epithet_score" text,
|
33
|
"Infraspecific_rank_2" text,
|
34
|
"Infraspecific_epithet_2_matched" text,
|
35
|
"Infraspecific_epithet_2_score" text,
|
36
|
"Annotations" text,
|
37
|
"Unmatched_terms" text,
|
38
|
"Taxonomic_status" text,
|
39
|
"Accepted_name" text,
|
40
|
"Accepted_name_author" text,
|
41
|
"Accepted_name_rank" text,
|
42
|
"Accepted_name_url" text,
|
43
|
"Accepted_name_species" text,
|
44
|
"Accepted_name_family" text,
|
45
|
"Selected" text,
|
46
|
"Source" text,
|
47
|
"Warnings" text,
|
48
|
"Accepted_name_lsid" text,
|
49
|
"Accepted_scientific_name" text,
|
50
|
"Max_score" double precision,
|
51
|
CONSTRAINT tnrs_pkey PRIMARY KEY ("Name_submitted" )
|
52
|
)
|
53
|
WITH (
|
54
|
OIDS=FALSE
|
55
|
);
|
56
|
|
57
|
CREATE UNIQUE INDEX tnrs_score_ok
|
58
|
ON tnrs
|
59
|
USING btree
|
60
|
("Name_submitted" )
|
61
|
WHERE score_ok("Max_score");
|
62
|
|
63
|
CREATE OR REPLACE FUNCTION tnrs_populate_derived_fields()
|
64
|
RETURNS trigger AS
|
65
|
$BODY$
|
66
|
BEGIN
|
67
|
new."Accepted_scientific_name" = NULLIF(concat_ws(' '
|
68
|
, NULLIF(NULLIF(new."Accepted_name_family", 'Unknown'), new."Accepted_name")
|
69
|
, new."Accepted_name"
|
70
|
, new."Accepted_name_author"
|
71
|
), '');
|
72
|
new."Max_score" = GREATEST(
|
73
|
new."Overall_score"::double precision
|
74
|
, new."Family_score"::double precision
|
75
|
, new."Genus_score"::double precision
|
76
|
, new."Specific_epithet_score"::double precision
|
77
|
);
|
78
|
|
79
|
RETURN new;
|
80
|
END;
|
81
|
$BODY$
|
82
|
LANGUAGE plpgsql VOLATILE
|
83
|
COST 100;
|
84
|
|
85
|
CREATE TRIGGER tnrs_populate_derived_fields
|
86
|
BEFORE INSERT OR UPDATE
|
87
|
ON tnrs
|
88
|
FOR EACH ROW
|
89
|
EXECUTE PROCEDURE tnrs_populate_derived_fields();
|
90
|
|
91
|
|
92
|
CREATE OR REPLACE VIEW "MatchedTaxon" AS
|
93
|
SELECT
|
94
|
"Time_submitted" AS "*Name_matched.Time_submitted"
|
95
|
, "Name_submitted" AS "concatenatedScientificName"
|
96
|
, "Name_matched" AS "matchedTaxonName"
|
97
|
, "Name_matched_rank" AS "matchedTaxonRank"
|
98
|
, "Name_score" AS "*Name_matched.Name_score"
|
99
|
, "Name_matched_author" AS "matchedScientificNameAuthorship"
|
100
|
, "Name_matched_url" AS "matchedScientificNameID"
|
101
|
, "Author_score" AS "*Name_matched.Author_score"
|
102
|
, "Family_score" AS "matchedFamilyConfidence_fraction"
|
103
|
, "Name_matched_accepted_family" AS "matchedFamily"
|
104
|
, "Genus_matched" AS "matchedGenus"
|
105
|
, "Genus_score" AS "matchedGenusConfidence_fraction"
|
106
|
, "Specific_epithet_matched" AS "matchedSpecificEpithet"
|
107
|
, "Specific_epithet_score" AS "matchedSpeciesConfidence_fraction"
|
108
|
, "Infraspecific_epithet_matched" AS "matchedInfraspecificEpithet"
|
109
|
, "Infraspecific_epithet_score" AS "*Name_matched.Infraspecific_epithet_score"
|
110
|
, "Annotations" AS "identificationQualifier"
|
111
|
, "Unmatched_terms" AS "morphospeciesSuffix"
|
112
|
, "Taxonomic_status" AS "taxonomicStatus"
|
113
|
, "Accepted_name" AS "acceptedTaxonName"
|
114
|
, "Accepted_name_author" AS "acceptedScientificNameAuthorship"
|
115
|
, "Accepted_name_rank" AS "acceptedTaxonRank"
|
116
|
, "Accepted_name_url" AS "acceptedScientificNameID"
|
117
|
, "Accepted_name_species" AS "*Name_matched.Accepted_name_species"
|
118
|
, "Accepted_name_family" AS "acceptedFamily"
|
119
|
, "Selected" AS "*Name_matched.Selected"
|
120
|
, "Source" AS "*Name_matched.Source"
|
121
|
, "Warnings" AS "*Name_matched.Warnings"
|
122
|
, "Accepted_name_lsid" AS "*Name_matched.Accepted_name_lsid"
|
123
|
, "Accepted_scientific_name" AS "acceptedScientificName"
|
124
|
, "Max_score" AS "matchedTaxonConfidence_fraction"
|
125
|
FROM tnrs;
|
126
|
|
127
|
CREATE OR REPLACE VIEW "AcceptedTaxon" AS
|
128
|
SELECT
|
129
|
"Time_submitted" AS "*Accepted_name.Time_submitted"
|
130
|
, "Name_submitted" AS "acceptedScientificName"
|
131
|
, "Genus_matched" AS "acceptedGenus"
|
132
|
, "Specific_epithet_matched" AS "acceptedSpecificEpithet"
|
133
|
, "Infraspecific_epithet_matched" AS "acceptedInfraspecificEpithet"
|
134
|
, "Annotations" AS "*Accepted_name.Annotations"
|
135
|
, "Taxonomic_status" AS "acceptedTaxonomicStatus"
|
136
|
, "Selected" AS "*Accepted_name.Selected"
|
137
|
, "Source" AS "*Accepted_name.Source"
|
138
|
, "Warnings" AS "*Accepted_name.Warnings"
|
139
|
, "Accepted_name_lsid" AS "*Accepted_name.Accepted_name_lsid"
|
140
|
FROM tnrs;
|
141
|
|
142
|
CREATE OR REPLACE VIEW "ScrubbedTaxon" AS
|
143
|
SELECT *
|
144
|
FROM "MatchedTaxon"
|
145
|
NATURAL LEFT JOIN "AcceptedTaxon"
|
146
|
WHERE score_ok("matchedTaxonConfidence_fraction");
|
147
|
;
|