diff --git a/src/normalization/normalize-ref-organ.js b/src/normalization/normalize-ref-organ.js index 21ad7ec..8a09fd9 100644 --- a/src/normalization/normalize-ref-organ.js +++ b/src/normalization/normalize-ref-organ.js @@ -200,7 +200,7 @@ function getOrganName(nodeId, crosswalk) { function getOrganLabel({sex, side}, nodeLabel) { const organOwnerSex = sex.toLowerCase(); - const organSide = side.toLowerCase(); + const organSide = side?.toLowerCase(); let organLabel = `${organOwnerSex} ${nodeLabel}`.trim(); if (organSide && !organLabel.includes(organSide)) { organLabel = `${organOwnerSex} ${organSide} ${nodeLabel}`.trim();