Skip to content

Commit 03e5f09

Browse files
authored
Merge pull request #394 from zhx828/bug-fix
Use MSK overrides for mutation mapper
2 parents b92da59 + 896db13 commit 03e5f09

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

.github/release-drafter.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name-template: '$NEXT_MINOR_VERSION'
2-
tag-template: '$NEXT_MINOR_VERSION'
1+
name-template: '$NEXT_PATCH_VERSION'
2+
tag-template: '$NEXT_PATCH_VERSION'
33
categories:
44
- title: '🧬 Features'
55
labels:
@@ -37,4 +37,4 @@ template: |
3737
3838
## 🕵️‍♀️ Full commit logs
3939
40-
- https://github.com/oncokb/oncokb-public/compare/$PREVIOUS_TAG...$NEXT_MINOR_VERSION
40+
- https://github.com/oncokb/oncokb-public/compare/$PREVIOUS_TAG...$NEXT_PATCH_VERSION

k8s/oncokb-public-local.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: oncokb-public
20-
image: cbioportal/oncokb-public:2.2.6
20+
image: cbioportal/oncokb-public:2.2.7
2121
env:
2222
- name: SPRING_PROFILES_ACTIVE
2323
value: prod,no-liquibase

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.mskcc.cbio.oncokb</groupId>
77
<artifactId>public-website</artifactId>
8-
<version>2.2.6</version>
8+
<version>2.2.7</version>
99
<packaging>jar</packaging>
1010
<name>OncoKB Public Website</name>
1111

@@ -608,7 +608,7 @@
608608
<image>adoptopenjdk:11-jre-hotspot</image>
609609
</from>
610610
<to>
611-
<image>cbioportal/oncokb-public:2.2.6</image>
611+
<image>cbioportal/oncokb-public:2.2.7</image>
612612
</to>
613613
<container>
614614
<entrypoint>

src/main/docker/app.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2'
22
services:
33
oncokb-app:
4-
image: cbioportal/oncokb-public:2.2.6
4+
image: cbioportal/oncokb-public:2.2.7
55
environment:
66
- _JAVA_OPTIONS=-Xmx512m -Xms256m
77
- SPRING_PROFILES_ACTIVE=prod,swagger

src/main/webapp/app/config/constants.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,7 @@ export type DataRelease = {
417417
};
418418

419419
export const DATA_RELEASES: DataRelease[] = [
420+
{ date: '03262020', version: 'v2.1_patch_1' },
420421
{ date: '02122020', version: 'v2.1' },
421422
{ date: '12202019', version: 'v2.0' },
422423
{ date: '12162019', version: 'v1.24_patch_1' },

src/main/webapp/app/store/AnnotationStore.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ export class AnnotationStore {
166166
tracks: [TrackName.OncoKB, TrackName.CancerHotspots, TrackName.PTM],
167167
data: this.mutationMapperData.result,
168168
oncogenicities: this.uniqOncogenicity,
169+
isoformOverrideSource: 'mskcc',
169170
filterAppliersOverride: getCustomFilterAppliers()
170171
});
171172
},
@@ -452,7 +453,7 @@ export class AnnotationStore {
452453
referenceAllele,
453454
variantAllele,
454455
mutationType: mutation.alterationType,
455-
oncogenic: shortenOncogenicity( oncogenic ),
456+
oncogenic: shortenOncogenicity(oncogenic),
456457
cancerType: mutation.cancerType
457458
};
458459
});

0 commit comments

Comments
 (0)