react-mutation-mapper 0.8.23 → 0.8.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +4 -4
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.es.js
CHANGED
|
@@ -1628,14 +1628,14 @@ function sortValue$2(indicator) {
|
|
|
1628
1628
|
return values;
|
|
1629
1629
|
}
|
|
1630
1630
|
function download$2(indicator) {
|
|
1631
|
+
var _a, _b;
|
|
1631
1632
|
if (!indicator) {
|
|
1632
1633
|
return 'NA';
|
|
1633
1634
|
}
|
|
1634
1635
|
var oncogenic = indicator.oncogenic ? indicator.oncogenic : 'Unknown';
|
|
1635
|
-
var
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
return oncogenic + ", " + level;
|
|
1636
|
+
var sensitivityLevel = ((_a = indicator.highestSensitiveLevel) === null || _a === void 0 ? void 0 : _a.toLowerCase()) || 'level NA';
|
|
1637
|
+
var resistanceLevel = ((_b = indicator.highestResistanceLevel) === null || _b === void 0 ? void 0 : _b.toLowerCase()) || 'resistance NA';
|
|
1638
|
+
return oncogenic + ", " + sensitivityLevel + ", " + resistanceLevel;
|
|
1639
1639
|
}
|
|
1640
1640
|
var OncoKB = /** @class */ (function (_super) {
|
|
1641
1641
|
__extends(OncoKB, _super);
|