From bd9f7304cf0fc440b621a37c6520463e7641dd72 Mon Sep 17 00:00:00 2001 From: dert1129 Date: Tue, 21 Nov 2023 15:53:48 -0500 Subject: [PATCH] add regional proteomics option --- src/helpers/Utils.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/helpers/Utils.js b/src/helpers/Utils.js index 2207764c..79334e67 100644 --- a/src/helpers/Utils.js +++ b/src/helpers/Utils.js @@ -130,6 +130,11 @@ export const getDataTypeOptions = async (geneSymbol, cluster) => { value: "rt", isDisabled: !dataTypes.includes("rt") }, + { + label: "Regional proteomics", + value: "rp", + isDisabled: !dataTypes.includes("rp") + } ]; return options; });