react-mutation-mapper 0.8.57 → 0.8.58

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.
@@ -0,0 +1,19 @@
1
+ import * as React from 'react';
2
+ interface IAxisScaleSwitchProps {
3
+ onChange: (selectedScale: AxisScale) => void;
4
+ selectedScale: AxisScale;
5
+ }
6
+ export declare enum AxisScale {
7
+ PERCENT = "%",
8
+ COUNT = "#"
9
+ }
10
+ export declare class AxisScaleSwitch extends React.Component<IAxisScaleSwitchProps, {}> {
11
+ static defaultProps: Partial<IAxisScaleSwitchProps>;
12
+ private selectedScale;
13
+ constructor(props: IAxisScaleSwitchProps);
14
+ toggleButton(scale: AxisScale, onClick: () => void): JSX.Element;
15
+ render(): JSX.Element;
16
+ private handlePercentClick;
17
+ private handleCountClick;
18
+ }
19
+ export {};
@@ -5,6 +5,7 @@ import { LollipopPlacement, LollipopSpec } from '../../model/LollipopSpec';
5
5
  import { MutationMapperStore } from '../../model/MutationMapperStore';
6
6
  import { TrackDataStatus, TrackName, TrackVisibility } from '../track/TrackSelector';
7
7
  import './lollipopMutationPlot.scss';
8
+ import { AxisScale } from './AxisScaleSwitch';
8
9
  export declare type LollipopMutationPlotProps<T extends Mutation> = {
9
10
  store: MutationMapperStore<T>;
10
11
  controlsConfig?: LollipopPlotControlsConfig;
@@ -24,7 +25,9 @@ export declare type LollipopMutationPlotProps<T extends Mutation> = {
24
25
  bottomYAxisDefaultMax?: number;
25
26
  bottomYAxisDefaultMin?: number;
26
27
  yAxisLabelPadding?: number;
27
- lollipopTooltipCountInfo?: (count: number, mutations?: Partial<T>[]) => JSX.Element;
28
+ lollipopTooltipCountInfo?: (count: number, mutations?: Partial<T>[], axisMode?: AxisScale) => JSX.Element;
29
+ yAxisLabelFormatter?: (symbol?: string, groupName?: string) => string;
30
+ axisMode?: AxisScale;
28
31
  customControls?: JSX.Element;
29
32
  onXAxisOffset?: (offset: number) => void;
30
33
  geneWidth: number;
@@ -0,0 +1,10 @@
1
+ import { Mutation } from 'cbioportal-ts-api-client';
2
+ import * as React from 'react';
3
+ import { AxisScale } from './AxisScaleSwitch';
4
+ interface ILollipopTooltipCountInfoProps {
5
+ count: number;
6
+ mutations?: Mutation[];
7
+ axisMode?: AxisScale;
8
+ }
9
+ export declare const LollipopTooltipCountInfo: React.FC<ILollipopTooltipCountInfoProps>;
10
+ export {};
@@ -0,0 +1,11 @@
1
+ import * as React from 'react';
2
+ import { AxisScale } from './AxisScaleSwitch';
3
+ interface IPercentToggleProps {
4
+ axisMode?: AxisScale;
5
+ onScaleToggle?: (selectedScale: AxisScale) => void;
6
+ }
7
+ export declare class PercentToggle extends React.Component<IPercentToggleProps, {}> {
8
+ constructor(props: IPercentToggleProps);
9
+ render(): JSX.Element;
10
+ }
11
+ export {};
@@ -25,6 +25,7 @@ export declare type LollipopPlotProps = {
25
25
  hugoGeneSymbol?: string;
26
26
  dataStore?: DataStore;
27
27
  onXAxisOffset?: (offset: number) => void;
28
+ yAxisLabelFormatter?: (symbol?: string, groupName?: string) => string;
28
29
  };
29
30
  export default class LollipopPlot extends React.Component<LollipopPlotProps, {}> {
30
31
  private hitZoneConfig;
package/dist/index.d.ts CHANGED
@@ -42,6 +42,9 @@ export { default as Domain } from './component/lollipopPlot/Domain';
42
42
  export { HotspotInfo } from './component/hotspot/HotspotInfo';
43
43
  export { default as Lollipop } from './component/lollipopPlot/Lollipop';
44
44
  export { default as LollipopMutationPlot } from './component/lollipopMutationPlot/LollipopMutationPlot';
45
+ export * from './component/lollipopMutationPlot/PercentToggle';
46
+ export * from './component/lollipopMutationPlot/AxisScaleSwitch';
47
+ export * from './component/lollipopMutationPlot/LollipopTooltipCountInfo';
45
48
  export { default as LollipopPlot } from './component/lollipopPlot/LollipopPlot';
46
49
  export { default as LollipopPlotNoTooltip } from './component/lollipopPlot/LollipopPlotNoTooltip';
47
50
  export { default as Sequence } from './component/lollipopPlot/LollipopPlot';
package/dist/index.es.js CHANGED
@@ -10,7 +10,7 @@ import { CIVIC_NA_VALUE, deriveStructuralVariantType, generateQueryStructuralVar
10
10
  import classnames from 'classnames';
11
11
  import autobind from 'autobind-decorator';
12
12
  import oncoKbLogoImgSrc from 'oncokb-styles/dist/images/logo/oncokb.svg';
13
- import { Tabs, Tab, Modal } from 'react-bootstrap';
13
+ import { Tabs, Tab, Modal, ButtonGroup } from 'react-bootstrap';
14
14
  import { Collapse } from 'react-collapse';
15
15
  import ReactTable from 'react-table';
16
16
  import { If, Then, Else } from 'react-if';
@@ -6828,10 +6828,16 @@ var LollipopPlotNoTooltip = /** @class */ (function (_super) {
6828
6828
  writable: true,
6829
6829
  value: function (y, yMax, ticks, placement, groupName, symbol) {
6830
6830
  if (symbol === void 0) { symbol = '#'; }
6831
- var label = groupName
6832
- ? symbol + " " + (this.props.hugoGeneSymbol ||
6833
- '') + " " + groupName + " Mutations"
6834
- : symbol + " " + (this.props.hugoGeneSymbol || '') + " Mutations";
6831
+ var label;
6832
+ if (this.props.yAxisLabelFormatter) {
6833
+ label = this.props.yAxisLabelFormatter(symbol, groupName);
6834
+ }
6835
+ else {
6836
+ label = groupName
6837
+ ? symbol + " " + (this.props.hugoGeneSymbol ||
6838
+ '') + " " + groupName + " Mutations"
6839
+ : symbol + " " + (this.props.hugoGeneSymbol || '') + " Mutations";
6840
+ }
6835
6841
  var placeOnBottom = placement === LollipopPlacement.BOTTOM;
6836
6842
  return (React.createElement(SVGAxis, { key: "lollipopPlotYAxis_" + (placeOnBottom ? 'bottom' : 'top'), x: this.geneX - this.yAxisPadding, y: y, length: this.yAxisHeight, tickLength: 7, rangeLower: 0, rangeUpper: yMax, ticks: ticks, vertical: true, verticalLabelPadding: this.props.yAxisLabelPadding, reverse: placeOnBottom, label: label }));
6837
6843
  }
@@ -9512,7 +9518,7 @@ var LollipopMutationPlot = /** @class */ (function (_super) {
9512
9518
  value: function (mutationsAtPosition, countsByPosition) {
9513
9519
  var codon = mutationsAtPosition[0].proteinPosStart;
9514
9520
  var count = countsByPosition[codon];
9515
- var countInfo = this.props.lollipopTooltipCountInfo ? (this.props.lollipopTooltipCountInfo(count, mutationsAtPosition)) : (React.createElement("strong", null,
9521
+ var countInfo = this.props.lollipopTooltipCountInfo ? (this.props.lollipopTooltipCountInfo(count, mutationsAtPosition, this.props.axisMode)) : (React.createElement("strong", null,
9516
9522
  count,
9517
9523
  " mutation", "" + (count !== 1 ? 's' : '')));
9518
9524
  var label = lollipopLabelText(mutationsAtPosition);
@@ -9990,7 +9996,7 @@ var LollipopMutationPlot = /** @class */ (function (_super) {
9990
9996
  React.createElement(Collapse, { isOpened: this.controlsConfig.legendShown }, this.props.legend || React.createElement(DefaultLollipopPlotLegend, null)),
9991
9997
  React.createElement(LollipopPlot, { sequence: this.sequence, lollipops: this.lollipops, domains: this.domains, dataStore: this.props.store.dataStore, vizWidth: this.props.geneWidth, vizHeight: this.props.vizHeight, hugoGeneSymbol: this.hugoGeneSymbol, xMax: this.proteinLength, yMax: this.yMaxInput, yMaxFractionDigits: this.yMaxSliderStep < 1
9992
9998
  ? this.props.yMaxFractionDigits
9993
- : undefined, yMaxLabelPostfix: this.props.yMaxLabelPostfix, yAxisLabelPadding: this.props.yAxisLabelPadding, showYAxis: this.props.showYAxis, bottomYMax: this.bottomYMaxInput, onXAxisOffset: this.onXAxisOffset, topYAxisSymbol: this.props.topYAxisSymbol, bottomYAxisSymbol: this.props.bottomYAxisSymbol, groups: this.groups }),
9999
+ : undefined, yMaxLabelPostfix: this.props.yMaxLabelPostfix, yAxisLabelPadding: this.props.yAxisLabelPadding, showYAxis: this.props.showYAxis, bottomYMax: this.bottomYMaxInput, onXAxisOffset: this.onXAxisOffset, topYAxisSymbol: this.props.topYAxisSymbol, bottomYAxisSymbol: this.props.bottomYAxisSymbol, groups: this.groups, yAxisLabelFormatter: this.props.yAxisLabelFormatter }),
9994
10000
  React.createElement(TrackPanel, { store: this.props.store, geneWidth: this.props.geneWidth, tracks: this.props.tracks, trackVisibility: this.trackVisibility, pubMedCache: this.props.pubMedCache, proteinLength: this.proteinLength, geneXOffset: this.geneXOffset, collapsePtmTrack: this.props.collapsePtmTrack, collapseUniprotTopologyTrack: this.props.collapseUniprotTopologyTrack })));
9995
10001
  }
9996
10002
  else if (this.props.store.canonicalTranscript.isComplete &&
@@ -10098,6 +10104,128 @@ var LollipopMutationPlot = /** @class */ (function (_super) {
10098
10104
  return LollipopMutationPlot;
10099
10105
  }(React.Component));
10100
10106
 
10107
+ var AxisScale;
10108
+ (function (AxisScale) {
10109
+ AxisScale["PERCENT"] = "%";
10110
+ AxisScale["COUNT"] = "#";
10111
+ })(AxisScale || (AxisScale = {}));
10112
+ var AxisScaleSwitch = /** @class */ (function (_super) {
10113
+ __extends(AxisScaleSwitch, _super);
10114
+ function AxisScaleSwitch(props) {
10115
+ var _this = _super.call(this, props) || this;
10116
+ Object.defineProperty(_this, "selectedScale", {
10117
+ enumerable: true,
10118
+ configurable: true,
10119
+ writable: true,
10120
+ value: void 0
10121
+ });
10122
+ _this.selectedScale = props.selectedScale;
10123
+ makeObservable(_this);
10124
+ return _this;
10125
+ }
10126
+ Object.defineProperty(AxisScaleSwitch.prototype, "toggleButton", {
10127
+ enumerable: false,
10128
+ configurable: true,
10129
+ writable: true,
10130
+ value: function (scale, onClick) {
10131
+ return (React.createElement("button", { className: classnames({
10132
+ 'btn-secondary': this.props.selectedScale === scale,
10133
+ 'btn-outline-secondary': this.props.selectedScale !== scale,
10134
+ }, 'btn', 'btn-sm', 'btn-axis-switch'), style: {
10135
+ lineHeight: 1,
10136
+ cursor: this.props.selectedScale === scale
10137
+ ? 'default'
10138
+ : 'pointer',
10139
+ fontWeight: this.props.selectedScale === scale
10140
+ ? 'bolder'
10141
+ : 'normal',
10142
+ }, onClick: onClick }, scale));
10143
+ }
10144
+ });
10145
+ Object.defineProperty(AxisScaleSwitch.prototype, "render", {
10146
+ enumerable: false,
10147
+ configurable: true,
10148
+ writable: true,
10149
+ value: function () {
10150
+ return (React.createElement(ButtonGroup, { "aria-label": "" },
10151
+ this.toggleButton(AxisScale.PERCENT, this.handlePercentClick),
10152
+ this.toggleButton(AxisScale.COUNT, this.handleCountClick)));
10153
+ }
10154
+ });
10155
+ Object.defineProperty(AxisScaleSwitch.prototype, "handlePercentClick", {
10156
+ enumerable: false,
10157
+ configurable: true,
10158
+ writable: true,
10159
+ value: function () {
10160
+ this.selectedScale = AxisScale.PERCENT;
10161
+ this.props.onChange(this.selectedScale);
10162
+ }
10163
+ });
10164
+ Object.defineProperty(AxisScaleSwitch.prototype, "handleCountClick", {
10165
+ enumerable: false,
10166
+ configurable: true,
10167
+ writable: true,
10168
+ value: function () {
10169
+ this.selectedScale = AxisScale.COUNT;
10170
+ this.props.onChange(this.selectedScale);
10171
+ }
10172
+ });
10173
+ Object.defineProperty(AxisScaleSwitch, "defaultProps", {
10174
+ enumerable: true,
10175
+ configurable: true,
10176
+ writable: true,
10177
+ value: {
10178
+ selectedScale: AxisScale.COUNT,
10179
+ }
10180
+ });
10181
+ __decorate([
10182
+ observable
10183
+ ], AxisScaleSwitch.prototype, "selectedScale", void 0);
10184
+ __decorate([
10185
+ action.bound
10186
+ ], AxisScaleSwitch.prototype, "handlePercentClick", null);
10187
+ __decorate([
10188
+ action.bound
10189
+ ], AxisScaleSwitch.prototype, "handleCountClick", null);
10190
+ AxisScaleSwitch = __decorate([
10191
+ observer
10192
+ ], AxisScaleSwitch);
10193
+ return AxisScaleSwitch;
10194
+ }(React.Component));
10195
+
10196
+ var PercentToggle = /** @class */ (function (_super) {
10197
+ __extends(PercentToggle, _super);
10198
+ function PercentToggle(props) {
10199
+ return _super.call(this, props) || this;
10200
+ }
10201
+ Object.defineProperty(PercentToggle.prototype, "render", {
10202
+ enumerable: false,
10203
+ configurable: true,
10204
+ writable: true,
10205
+ value: function () {
10206
+ return (React.createElement("div", { className: "small", style: { display: 'flex', alignItems: 'center' } },
10207
+ React.createElement("span", { style: { marginLeft: 10, marginRight: 10 } },
10208
+ "Y-Axis:",
10209
+ ' '),
10210
+ React.createElement(AxisScaleSwitch, { selectedScale: this.props.axisMode, onChange: this.props.onScaleToggle })));
10211
+ }
10212
+ });
10213
+ return PercentToggle;
10214
+ }(React.Component));
10215
+
10216
+ var LollipopTooltipCountInfo = function (_a) {
10217
+ var count = _a.count, mutations = _a.mutations, axisMode = _a.axisMode;
10218
+ var decimalZeros = numberOfLeadingDecimalZeros(count);
10219
+ var fractionDigits = decimalZeros < 0 ? 1 : decimalZeros + 2;
10220
+ return mutations &&
10221
+ mutations.length > 0 &&
10222
+ axisMode === AxisScale.PERCENT ? (React.createElement("strong", null,
10223
+ formatPercentValue(count, fractionDigits),
10224
+ "% mutation rate")) : (React.createElement("strong", null,
10225
+ count,
10226
+ " mutation", "" + (count !== 1 ? 's' : '')));
10227
+ };
10228
+
10101
10229
  var DefaultStringQueryCache = /** @class */ (function () {
10102
10230
  function DefaultStringQueryCache() {
10103
10231
  Object.defineProperty(this, "_cache", {
@@ -12843,5 +12971,5 @@ var MutationMapper = /** @class */ (function (_super) {
12843
12971
  return MutationMapper;
12844
12972
  }(React.Component));
12845
12973
 
12846
- export { Annotation, BadgeLabel, BadgeSelector, Civic, ClinvarInterpretation, ClinvarSummary, ColumnHeader, ColumnSelector, ColumnSortDirection, DEFAULT_ANNOTATION_DATA, DEFAULT_GENOME_NEXUS_URL, DEFAULT_MUTATION_ALIGNER_PROXY_URL_TEMPLATE, DEFAULT_MUTATION_ALIGNER_URL_TEMPLATE, DEFAULT_MUTATION_COLUMNS, DEFAULT_MY_GENE_URL_TEMPLATE, DEFAULT_ONCO_KB_URL, DEFAULT_PROTEIN_IMPACT_TYPE_COLORS, DEFAULT_UNIPROT_ID_URL_TEMPLATE, DataFilterType, DataTable, Dbsnp, DbsnpId, DefaultMutationMapperDataFetcher, DefaultMutationMapperDataStore, DefaultMutationMapperFilterApplier, DefaultMutationMapperStore, DefaultMutationTable, Domain, DropdownSelector, FilterResetPanel, GenericAnnotation, Gnomad, GnomadFrequency, GnomadFrequencyBreakdown, GnomadFrequencyTable, GnomadFrequencyValue, Hgvsc, Hgvsg, HotspotAnnotation, HotspotInfo, Lollipop, LollipopMutationPlot, LollipopPlot, LollipopPlotNoTooltip, MSI_H_NAME, MUTATION_COLUMNS_DEFINITION, MUTATION_COLUMN_HEADERS, MUTATION_STATUS_BADGE_STYLE_OVERRIDE, MUTATION_TYPE_PRIORITY, MutationColumn, MutationColumnName, MutationMapper, MutationStatus, MutationStatusBadgeSelector, MyCancerGenome, ONCOKB_DEFAULT_DATA, ONCOKB_DEFAULT_INFO, OTHER_BIOMARKER_HUGO_SYMBOL, OTHER_BIOMARKER_NAME, OncoKB, OncoKBSuggestAnnotationLinkout, OncoKbFeedback, OncoKbHelper, OncoKbTooltip, OncoKbTreatmentTable, OtherBiomarkersQueryType, ProteinChange, ProteinImpactTypeBadgeSelector, ProteinImpactTypeDropdownSelector, RefComponent, ReferenceList, LollipopPlot as Sequence, Signal, SignalTable, SummaryWithRefs, TEXT_INPUT_FILTER_ID, TMB_H_NAME, TrackName, TrackSelector, USE_DEFAULT_PUBLIC_INSTANCE_FOR_ONCOKB, sortValue$4 as annotationSortValue, applyDataFilters, applyDataFiltersOnDatum, applyDefaultMutationFilter, applyDefaultMutationStatusFilter, applyDefaultPositionFilter, applyDefaultProteinImpactTypeFilter, calculateGnomadAlleleFrequency, download$7 as civicDownload, sortValue$8 as civicSortValue, download$4 as clinvarDownload, sortValue$3 as clinvarSortValue, download$3 as dbsnpDownload, sortValue$2 as dbsnpSortValue, defaultOncoKbFilter, errorIcon, fetchVariantAnnotationsByMutation, fetchVariantAnnotationsIndexedByGenomicLocation, findAllUniquePositions, findNonTextInputFilters, findOneMutationFilterValue, findTextInputFilter, getAllOptionValues, getAnnotationData, getClinvarData, getColorForProteinImpactType, getGnomadData, getHgvscColumnData, getHgvsgColumnData, getProteinImpactTypeBadgeLabel, getProteinImpactTypeOptionLabel, getSelectedOptionValues, getSignalData, getSingleSignalValue, getTumorTypeNameWithExclusionInfo, getUrl, download$2 as gnomadDownload, sortValue$1 as gnomadSortValue, groupDataByGroupFilters, groupDataByProteinImpactType, groupOncoKbIndicatorDataByMutations, handleOptionSelect, download$1 as hgvscDownload, sortValue as hgvscSortValue, sortValue$5 as hotspotAnnotationSortValue, includesSearchTextIgnoreCase, indexPositions, initDefaultMutationMapperStore, initDefaultTrackVisibility, initGenomeNexusClient, initGenomeNexusInternalClient, initOncoKbClient, levelIconClassNames, loaderIcon, mergeColumns, mutationTypeSort, download$6 as myCancerGenomeDownload, sortValue$7 as myCancerGenomeSortValue, normalizeLevel, onFilterOptionSelect, download$5 as oncoKbAnnotationDownload, sortValue$6 as oncoKbAnnotationSortValue, oncogenicityIconClassNames, proteinChangeSortMethod, rightAlignedCell, download as signalDownload, getSortValue as signalSortValue, updatePositionHighlightFilters, updatePositionRangeHighlightFilters, updatePositionSelectionFilters };
12974
+ export { Annotation, AxisScale, AxisScaleSwitch, BadgeLabel, BadgeSelector, Civic, ClinvarInterpretation, ClinvarSummary, ColumnHeader, ColumnSelector, ColumnSortDirection, DEFAULT_ANNOTATION_DATA, DEFAULT_GENOME_NEXUS_URL, DEFAULT_MUTATION_ALIGNER_PROXY_URL_TEMPLATE, DEFAULT_MUTATION_ALIGNER_URL_TEMPLATE, DEFAULT_MUTATION_COLUMNS, DEFAULT_MY_GENE_URL_TEMPLATE, DEFAULT_ONCO_KB_URL, DEFAULT_PROTEIN_IMPACT_TYPE_COLORS, DEFAULT_UNIPROT_ID_URL_TEMPLATE, DataFilterType, DataTable, Dbsnp, DbsnpId, DefaultMutationMapperDataFetcher, DefaultMutationMapperDataStore, DefaultMutationMapperFilterApplier, DefaultMutationMapperStore, DefaultMutationTable, Domain, DropdownSelector, FilterResetPanel, GenericAnnotation, Gnomad, GnomadFrequency, GnomadFrequencyBreakdown, GnomadFrequencyTable, GnomadFrequencyValue, Hgvsc, Hgvsg, HotspotAnnotation, HotspotInfo, Lollipop, LollipopMutationPlot, LollipopPlot, LollipopPlotNoTooltip, LollipopTooltipCountInfo, MSI_H_NAME, MUTATION_COLUMNS_DEFINITION, MUTATION_COLUMN_HEADERS, MUTATION_STATUS_BADGE_STYLE_OVERRIDE, MUTATION_TYPE_PRIORITY, MutationColumn, MutationColumnName, MutationMapper, MutationStatus, MutationStatusBadgeSelector, MyCancerGenome, ONCOKB_DEFAULT_DATA, ONCOKB_DEFAULT_INFO, OTHER_BIOMARKER_HUGO_SYMBOL, OTHER_BIOMARKER_NAME, OncoKB, OncoKBSuggestAnnotationLinkout, OncoKbFeedback, OncoKbHelper, OncoKbTooltip, OncoKbTreatmentTable, OtherBiomarkersQueryType, PercentToggle, ProteinChange, ProteinImpactTypeBadgeSelector, ProteinImpactTypeDropdownSelector, RefComponent, ReferenceList, LollipopPlot as Sequence, Signal, SignalTable, SummaryWithRefs, TEXT_INPUT_FILTER_ID, TMB_H_NAME, TrackName, TrackSelector, USE_DEFAULT_PUBLIC_INSTANCE_FOR_ONCOKB, sortValue$4 as annotationSortValue, applyDataFilters, applyDataFiltersOnDatum, applyDefaultMutationFilter, applyDefaultMutationStatusFilter, applyDefaultPositionFilter, applyDefaultProteinImpactTypeFilter, calculateGnomadAlleleFrequency, download$7 as civicDownload, sortValue$8 as civicSortValue, download$4 as clinvarDownload, sortValue$3 as clinvarSortValue, download$3 as dbsnpDownload, sortValue$2 as dbsnpSortValue, defaultOncoKbFilter, errorIcon, fetchVariantAnnotationsByMutation, fetchVariantAnnotationsIndexedByGenomicLocation, findAllUniquePositions, findNonTextInputFilters, findOneMutationFilterValue, findTextInputFilter, getAllOptionValues, getAnnotationData, getClinvarData, getColorForProteinImpactType, getGnomadData, getHgvscColumnData, getHgvsgColumnData, getProteinImpactTypeBadgeLabel, getProteinImpactTypeOptionLabel, getSelectedOptionValues, getSignalData, getSingleSignalValue, getTumorTypeNameWithExclusionInfo, getUrl, download$2 as gnomadDownload, sortValue$1 as gnomadSortValue, groupDataByGroupFilters, groupDataByProteinImpactType, groupOncoKbIndicatorDataByMutations, handleOptionSelect, download$1 as hgvscDownload, sortValue as hgvscSortValue, sortValue$5 as hotspotAnnotationSortValue, includesSearchTextIgnoreCase, indexPositions, initDefaultMutationMapperStore, initDefaultTrackVisibility, initGenomeNexusClient, initGenomeNexusInternalClient, initOncoKbClient, levelIconClassNames, loaderIcon, mergeColumns, mutationTypeSort, download$6 as myCancerGenomeDownload, sortValue$7 as myCancerGenomeSortValue, normalizeLevel, onFilterOptionSelect, download$5 as oncoKbAnnotationDownload, sortValue$6 as oncoKbAnnotationSortValue, oncogenicityIconClassNames, proteinChangeSortMethod, rightAlignedCell, download as signalDownload, getSortValue as signalSortValue, updatePositionHighlightFilters, updatePositionRangeHighlightFilters, updatePositionSelectionFilters };
12847
12975
  //# sourceMappingURL=index.es.js.map