Revision 7700
Added by Aaron Marcuse-Kubitza almost 12 years ago
inputs/MO/Specimen/postprocess.sql | ||
---|---|---|
1 | 1 |
-- Remove frameshifted rows by detecting InstitutionCodes without any letters |
2 | 2 |
DELETE FROM "MO"."Specimen" |
3 |
WHERE NOT "InstitutionCode" ~ '[[:alpha:]]'
|
|
3 |
WHERE NOT COALESCE("InstitutionCode" ~ '[[:alpha:]]', false)
|
|
4 | 4 |
; |
Also available in: Unified diff
inputs/MO/Specimen/postprocess.sql: Also remove frameshifted rows where InstitutionCode is NULL