react-mutation-mapper 0.8.48 → 0.8.51
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/column/MutationStatus.d.ts +1 -1
- package/dist/component/oncokb/OncoKbHelper.d.ts +0 -1
- package/dist/component/oncokb/{AnnotationIcon.d.ts → icon/AnnotationIcon.d.ts} +0 -0
- package/dist/component/oncokb/{CompactAnnotationIcon.d.ts → icon/CompactAnnotationIcon.d.ts} +0 -0
- package/dist/component/oncokb/icon/LevelIcon.d.ts +6 -0
- package/dist/component/oncokb/icon/OncogenicIcon.d.ts +6 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.es.js +38 -25
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +37 -24
- package/dist/index.js.map +1 -1
- package/dist/util/DataFetcherUtils.d.ts +1 -1
- package/package.json +4 -4
|
@@ -4,7 +4,7 @@ import { OncoKbAPI, OncoKBInfo } from 'oncokb-ts-api-client';
|
|
|
4
4
|
export declare const DEFAULT_MUTATION_ALIGNER_URL_TEMPLATE = "http://mutationaligner.org/api/domains/<%= pfamDomainId %>?metadata=true";
|
|
5
5
|
export declare const DEFAULT_MUTATION_ALIGNER_PROXY_URL_TEMPLATE = "https://www.cbioportal.org/proxy/mutationaligner.org/api/domains/<%= pfamDomainId %>?metadata=true";
|
|
6
6
|
export declare const DEFAULT_MY_GENE_URL_TEMPLATE = "https://mygene.info/v3/gene/<%= entrezGeneId %>?fields=uniprot";
|
|
7
|
-
export declare const DEFAULT_UNIPROT_ID_URL_TEMPLATE = "https://
|
|
7
|
+
export declare const DEFAULT_UNIPROT_ID_URL_TEMPLATE = "https://rest.uniprot.org/uniprotkb/search?query=accession:<%= swissProtAccession %>&format=tsv&fields=id";
|
|
8
8
|
export declare const DEFAULT_GENOME_NEXUS_URL = "https://www.genomenexus.org/";
|
|
9
9
|
export declare const DEFAULT_ONCO_KB_URL = "https://legacy.oncokb.org/";
|
|
10
10
|
export declare const ONCOKB_DEFAULT_DATA: IOncoKbData;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-mutation-mapper",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.51",
|
|
4
4
|
"description": "Generic Mutation Mapper",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -39,8 +39,8 @@
|
|
|
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.31",
|
|
43
|
+
"cbioportal-utils": "^0.3.22",
|
|
44
44
|
"classnames": "^2.2.5",
|
|
45
45
|
"genome-nexus-ts-api-client": "^1.1.22",
|
|
46
46
|
"jquery": "^3.2.1",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"superagent": "^3.8.3",
|
|
60
60
|
"typescript": "4.0.3"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "c8ed1733d4ac7f403fcb8df60813f400cfae72d1"
|
|
63
63
|
}
|