-- Remove frameshifted rows by detecting InstitutionCodes without any letters
DELETE FROM "MO"."Specimen"
WHERE NOT "InstitutionCode" ~ '[[:alpha:]]'
;