Actions
Task #816
openre-run TNRS on mis-scrubbed names
Start date:
11/18/2013
Due date:
% Done:
0%
Estimated time:
Activity type:
Description
- temporary workaround for names with an accepted name:
useAccepted_name_family
whenName_matched_accepted_family
is not available
- this will fix the 300,000 no-opinion names1 scrubbed during the 6 days that TNRS was broken2, when it wasn't populating the critical field
Name_matched_accepted_family
1 293816
SELECT COUNT(*) FROM "TNRS".tnrs
WHERE
"Name_matched_accepted_family" IS NULL
AND "Family_matched" IS NOT NULL
AND "Accepted_name_family" IS NULL -- where we are using the matched name instead of the accepted name
AND "Name_matched_rank" != 'family' -- this is also the case for family-only matches
Total query runtime: 5718 ms.
2 2013-5-23..28
SELECT min(batch), max(batch) FROM "TNRS".tnrs
WHERE
"Name_matched_accepted_family" IS NULL
AND "Family_matched" IS NOT NULL
AND "Accepted_name_family" IS NULL -- where we are using the matched name instead of the accepted name
AND "Name_matched_rank" != 'family' -- this is also the case for family-only matches
Total query runtime: 3928 ms.
"2013-05-23 15:48:28.970796-07","2013-05-28 08:36:52.569103-07"
Actions