react-mutation-mapper 0.8.33 → 0.8.36
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/component/track/ExonTrack.d.ts +2 -0
- package/dist/index.es.js +97 -11
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +103 -16
- package/dist/index.js.map +1 -1
- package/dist/model/MutationMapperStore.d.ts +2 -0
- package/dist/store/DefaultMutationMapperStore.d.ts +3 -0
- package/package.json +5 -5
|
@@ -70,6 +70,8 @@ export interface MutationMapperStore<T extends Mutation> {
|
|
|
70
70
|
mutationsByTranscriptId: {
|
|
71
71
|
[transcriptId: string]: T[];
|
|
72
72
|
};
|
|
73
|
+
ensemblTranscriptLookUp: RemoteData<any | Error | undefined>;
|
|
74
|
+
genomeBuild: string;
|
|
73
75
|
setSelectedTranscript?: (id: string | undefined) => void;
|
|
74
76
|
getTranscriptId?: () => string | undefined;
|
|
75
77
|
selectedTranscript?: string | undefined;
|
|
@@ -33,6 +33,7 @@ interface DefaultMutationMapperStoreConfig {
|
|
|
33
33
|
group: string;
|
|
34
34
|
filter: DataFilter;
|
|
35
35
|
}[];
|
|
36
|
+
genomeBuild?: string;
|
|
36
37
|
}
|
|
37
38
|
declare class DefaultMutationMapperStore<T extends Mutation> implements MutationMapperStore<T> {
|
|
38
39
|
gene: Gene;
|
|
@@ -152,5 +153,7 @@ declare class DefaultMutationMapperStore<T extends Mutation> implements Mutation
|
|
|
152
153
|
};
|
|
153
154
|
protected getDefaultTumorType(mutation: T): string;
|
|
154
155
|
protected getDefaultEntrezGeneId(mutation: T): number;
|
|
156
|
+
readonly ensemblTranscriptLookUp: MobxPromise<any | undefined>;
|
|
157
|
+
get genomeBuild(): string;
|
|
155
158
|
}
|
|
156
159
|
export default DefaultMutationMapperStore;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-mutation-mapper",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.36",
|
|
4
4
|
"description": "Generic Mutation Mapper",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"autobind-decorator": "^2.1.0",
|
|
42
|
-
"cbioportal-frontend-commons": "^0.5.
|
|
43
|
-
"cbioportal-utils": "^0.3.
|
|
42
|
+
"cbioportal-frontend-commons": "^0.5.21",
|
|
43
|
+
"cbioportal-utils": "^0.3.14",
|
|
44
44
|
"classnames": "^2.2.5",
|
|
45
|
-
"genome-nexus-ts-api-client": "^1.1.
|
|
45
|
+
"genome-nexus-ts-api-client": "^1.1.20",
|
|
46
46
|
"jquery": "^3.2.1",
|
|
47
47
|
"lodash": "^4.17.11",
|
|
48
48
|
"memoize-weak-decorator": "^1.0.3",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"superagent": "^3.8.3",
|
|
60
60
|
"typescript": "4.0.3"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "f2442b3cbebf947095f0e413e0ef777c4bf9ce9a"
|
|
63
63
|
}
|