react-mutation-mapper 0.8.101 → 0.8.102
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import MobxPromise from '
|
|
1
|
+
import { MobxPromise } from 'cbioportal-frontend-commons';
|
|
2
2
|
import { IHotspotIndex, IOncoKbData, Mutation } from 'cbioportal-utils';
|
|
3
3
|
import { HotspotFilter } from '../filter/HotspotFilter';
|
|
4
4
|
import { MutationFilter } from '../filter/MutationFilter';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { MobxPromise } from 'cbioportal-frontend-commons';
|
|
1
2
|
import { AggregatedHotspots, ICivicGeneIndex, ICivicVariantIndex, IHotspotIndex, IMyCancerGenomeData, IOncoKbData, PostTranslationalModification, UniprotFeature, UniprotTopology } from 'cbioportal-utils';
|
|
2
3
|
import { Gene, Mutation, IMyVariantInfoIndex } from 'cbioportal-utils';
|
|
3
4
|
import { CancerGene, IndicatorQueryResp, OncoKBInfo } from 'oncokb-ts-api-client';
|
|
4
5
|
import { EnsemblTranscript, Hotspot, PfamDomain, PostTranslationalModification as DbPtm, VariantAnnotation } from 'genome-nexus-ts-api-client';
|
|
5
|
-
import MobxPromise from 'mobxpromise';
|
|
6
6
|
import { DataFilter } from '../model/DataFilter';
|
|
7
7
|
import DataStore from '../model/DataStore';
|
|
8
8
|
import { ApplyFilterFn, FilterApplier } from '../model/FilterApplier';
|
|
@@ -144,7 +144,7 @@ declare class DefaultMutationMapperStore<T extends Mutation> implements Mutation
|
|
|
144
144
|
[pos: number]: IndicatorQueryResp[];
|
|
145
145
|
};
|
|
146
146
|
readonly civicGenes: MobxPromise<ICivicGeneIndex | undefined>;
|
|
147
|
-
readonly civicVariants: import("
|
|
147
|
+
readonly civicVariants: import("cbioportal-frontend-commons").MobxPromiseUnionType<ICivicVariantIndex | undefined>;
|
|
148
148
|
readonly indexedVariantAnnotations: MobxPromise<{
|
|
149
149
|
[genomicLocation: string]: VariantAnnotation;
|
|
150
150
|
} | undefined>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-mutation-mapper",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.102",
|
|
4
4
|
"description": "Generic Mutation Mapper",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -39,14 +39,13 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"autobind-decorator": "^2.1.0",
|
|
42
|
-
"cbioportal-frontend-commons": "^0.5.
|
|
42
|
+
"cbioportal-frontend-commons": "^0.5.59",
|
|
43
43
|
"cbioportal-utils": "^0.3.37",
|
|
44
44
|
"classnames": "^2.2.5",
|
|
45
45
|
"genome-nexus-ts-api-client": "^1.1.31",
|
|
46
46
|
"jquery": "^3.2.1",
|
|
47
47
|
"lodash": "^4.17.15",
|
|
48
48
|
"memoize-weak-decorator": "^1.0.3",
|
|
49
|
-
"mobxpromise": "github:cbioportal/mobxpromise#303db72588860bff0a6862a4f07a4e8a3578c94f",
|
|
50
49
|
"oncokb-frontend-commons": "^0.0.21",
|
|
51
50
|
"oncokb-styles": "~1.4.2",
|
|
52
51
|
"oncokb-ts-api-client": "^1.3.3",
|
|
@@ -60,5 +59,5 @@
|
|
|
60
59
|
"superagent": "^3.8.3",
|
|
61
60
|
"typescript": "4.0.3"
|
|
62
61
|
},
|
|
63
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "5f1dc5251aa32e8297ec68c565dd4adf833348c2"
|
|
64
63
|
}
|