Skip to content

Commit 9f4c77d

Browse files
authored
Merge pull request #234 from zhx828/hotfix
Release 1.18
2 parents c15af47 + dfd0377 commit 9f4c77d

16 files changed

+6256
-17
lines changed

app/scripts/app.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ angular.module('oncokbStaticApp').run(
145145
}, {content: '3855 Variants'}, {content: '60 Tumor Types'}]
146146
};
147147
$rootScope.data = {
148-
lastUpdate: 'November 2, 2018',
149-
version: '1.17_patch_1',
148+
lastUpdate: 'December 14, 2018',
149+
version: '1.18',
150150
levelColors: {
151151
'1': '#33A02C',
152152
'2A': '#1F78B4',

app/scripts/controllers/news.js

+20
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,25 @@ angular.module('oncokbStaticApp')
121121
'RET - Fusions - Non-Small Cell Lung Cancer - LOXO-292 (<b>added as new association</b>)',
122122
]
123123
},
124+
'12142018': {
125+
'Level 1': [
126+
'November 26, 2018: <a target="_blank" ' +
127+
'href="https://www.fda.gov/Drugs/InformationOnDrugs/ApprovedDrugs/ucm626720.htm">' +
128+
'the FDA approved larotrectinib</a> for adult and pediatric patients with solid tumors that have an NTRK1, -2, or -3 gene fusion without a known acquired resistance mutation.'
129+
],
130+
'Level 2': [
131+
'BRCA1/2 - Oncogenic Mutations - Breast Cancer - Talazoparib (<b>new association</b>)',
132+
'RET - Fusions - Non-Small Cell Lung Cancer - BLU-667 (<b>new association</b>)'
133+
],
134+
'Level 3': [
135+
'BRAF - V600E - Colorectal Cancer - Encorafenib + Binimetinib + Cetuximab (<b>new association</b>)',
136+
'ERBB2 - Oncogenic Mutations - Non-Small Cell Lung Cancer - Ado-trastuzumab Emtansine (<b>new association</b>)',
137+
'RET - Oncogenic Mutations - Medullary Thyroid Cancer - BLU-667 (<b>new association</b>)',
138+
],
139+
'Level 4': [
140+
'KDM6A - Oncogenic Mutations - Bladder Cancer - EZH2 inhibitors (<b>new association</b>)',
141+
]
142+
},
124143
};
125144
$scope.data.newlyAddedLevelFour = [
126145
{
@@ -206,5 +225,6 @@ angular.module('oncokbStaticApp')
206225
'08172018': ['ACTG1', 'ARHGEF28', 'ARID3A', 'ARID3B', 'ARID3C', 'ARID4A', 'ARID4B', 'ARID5A', 'ATP6AP1', 'ATP6V1B2', 'ATXN2', 'BACH2', 'BCL11B', 'BCORL1', 'BCR', 'BTG1', 'CD28', 'CD58', 'CIITA', 'CRBN', 'CUX1', 'DDX3X', 'DTX1', 'DUSP22', 'EGR1', 'EP400', 'ESCO2', 'ETNK1', 'FANCD2', 'FAS', 'FBXO11', 'FURIN', 'GNA12', 'GNA13', 'GNB1', 'GTF2I', 'HDAC1', 'HDAC4', 'HDAC7', 'HIF1A', 'HIST1H1B', 'HIST1H1D'],
207226
'10012018': ['HIST1H1E','SETD6','SETD5','SETD7','SETDB2','SETDB1','SETD4','SETD3','SETD1B','U2AF2','TET3','NFE2','IRF8','IRF1','IKZF3','JARID2','NCSTN','HIST1H2BO','HIST1H2AC','HIST1H2BG','HIST1H2BJ','HIST1H2BK','HIST1H2BC','HIST1H2AG','HIST1H2AL','HIST1H2AM','TYK2'],
208227
'10262018': ['NT5C2','P2RY8','PCBP1','PDS5B','PTPN1','PTPN2 ','STAG1','TRAF3','TRAF5'],
228+
'12142018': ['KSR2','LCK','LTB','MGAM','MOB3B','MPEG1','NCOR2','PIGA','PLCG1','POT1','ROBO1','RUNX1T1','SAMHD1','SETD1A','SGK1','SMC1A','SMC3','SMG1','SP140','STAT6','TBL1XR1','UBR5','VAV1','VAV2','XBP1'],
209229
};
210230
});

app/scripts/directives/main-level.js

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ angular.module('oncokbStaticApp')
1414
scope: {
1515
level: '=',
1616
geneCount: '=',
17-
color: '=',
1817
desc: '=',
1918
class: '='
2019
},

app/styles/_home.scss

+6-3
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,8 @@
9292
}
9393

9494
.main-level {
95-
margin-bottom: 15px;
9695
.button {
9796
margin: auto;
98-
width: 160px;
9997
font-weight: bold;
10098
text-align: center;
10199
}
@@ -122,14 +120,19 @@
122120
.level-4 {
123121
color: $level-4;
124122
}
123+
.level-R1 {
124+
color: $level-R1;
125+
}
126+
.level-R2 {
127+
color: $level-R2;
128+
}
125129
.hoverStyle a:hover {
126130
color: #1c75cd;
127131
}
128132
}
129133

130134
.citation {
131135
text-align: center;
132-
margin-bottom: 0;
133136
a {
134137
font-weight: bold;
135138
}

app/views/dataaccess.html

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ <h3 class="title">Data Download</h3>
1616
ng-href="{{apiLink}}utils/allActionableVariants.txt"
1717
download><i
1818
class="fa fa-cloud-download"></i> Actionable Alterations</a>
19+
<a class="btn btn-sm download waves-effect waves-light"
20+
ng-href="{{apiLink}}utils/allCuratedGenes.txt"
21+
download><i
22+
class="fa fa-cloud-download"></i> All Curated Genes</a>
1923
</div>
2024
<h3 class="title">Annotating Your Files</h3>
2125
<div>You can annotate your data files (mutations, copy number alterations, fusions, and clinical data) with

app/views/main.html

+15-11
Original file line numberDiff line numberDiff line change
@@ -63,22 +63,26 @@
6363
</div>
6464
<div class="levels">
6565
<div class="row">
66-
<div class="col-lg-2 col-md-2"></div>
67-
<div class="col-lg-8 col-md-8 has-inside-grid">
68-
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-12">
69-
<main-level level="'1'" gene-count="getGeneCountForLevel('1')" class="'level-1'" color="'#008D14'" desc="'FDA-approved'"></main-level>
66+
<div class="col-md-12 has-inside-grid">
67+
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
68+
<main-level level="'1'" gene-count="getGeneCountForLevel('1')" class="'level-1'" desc="'FDA-approved'"></main-level>
7069
</div>
71-
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-12">
72-
<main-level level="'2'" gene-count="getGeneCountForLevel('2')" class="'level-2'" color="'#019192'" desc="'Standard care'"></main-level>
70+
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
71+
<main-level level="'2'" gene-count="getGeneCountForLevel('2')" class="'level-2'" desc="'Standard care'"></main-level>
7372
</div>
74-
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-12">
75-
<main-level level="'3'" gene-count="getGeneCountForLevel('3')" class="'level-3'" color="'#794C87'" desc="'Clinical evidence'"></main-level>
73+
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
74+
<main-level level="'3'" gene-count="getGeneCountForLevel('3')" class="'level-3'" desc="'Clinical evidence'"></main-level>
7675
</div>
77-
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-12">
78-
<main-level level="'4'" gene-count="getGeneCountForLevel('4')" class="'level-4'" color="'#424242'" desc="'Biological evidence'"></main-level>
76+
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
77+
<main-level level="'4'" gene-count="getGeneCountForLevel('4')" class="'level-4'" desc="'Biological evidence'"></main-level>
7978
</div>
79+
<div class="col-lg-2 col-sm-6 col-xs-12">
80+
<main-level level="'R1'" gene-count="getGeneCountForLevel('R1')" class="'level-R1'" desc="'Standard care'"></main-level>
81+
</div>
82+
<div class="col-lg-2 col-sm-6 col-xs-12">
83+
<main-level level="'R2'" gene-count="getGeneCountForLevel('R2')" class="'level-R2'" desc="'Clinical evidence'"></main-level>
84+
</div>
8085
</div>
81-
<div class="col-lg-2 col-md-2"></div>
8286
</div>
8387
</div>
8488
<div class="citation row">

app/views/news.html

+36
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,42 @@
1919
</p>
2020
<p ng-bind-html="data.citationURL"></p>
2121
</div>
22+
23+
<h3>December 14, 2018</h3>
24+
<div>
25+
<ul>
26+
<li>Inclusion of <a href="#/gene/NTRK1">NTRK1</a> and <a href="#/gene/NTRK3">NTRK3</a> Level R2
27+
alterations to the Actionable Genes page
28+
</li>
29+
<li>Updated Actionable Genes
30+
<div class="row">
31+
<table class="table">
32+
<thead>
33+
<th class="col-lg-1 col-sm-2 col-xs-3">Level</th>
34+
<th class="col-lg-11 col-sm-10 col-xs-9">Update</th>
35+
</thead>
36+
<tbody>
37+
<tr ng-repeat="(key, value) in data.updatedActionableGenes['12142018']">
38+
<td>{{key}}</td>
39+
<td>
40+
<ul>
41+
<li ng-repeat="item in value"><span ng-bind-html="item"></span></li>
42+
</ul>
43+
</td>
44+
</tr>
45+
</tbody>
46+
</table>
47+
</div>
48+
</li>
49+
50+
<li>Addition of {{data.newlyAddedGenes['12142018'].length}} new heme-associated genes:
51+
<div class="newly-added-genes">
52+
<span class="gene" ng-repeat="hugo in data.newlyAddedGenes['12142018']"><a
53+
href="#/gene/{{hugo}}">{{hugo}}</a></span>
54+
</div>
55+
</li>
56+
</ul>
57+
</div>
2258
<h3>November 2, 2018</h3>
2359
<div>
2460
<ul>

data/v1.18/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# v1.18
2+
3+
## Related releases
4+
[OncoKB Public Website, December 14, 2018 Updates](https://github.com/oncokb/oncokb-public/releases/tag/0.13)
5+
[OncoKB Core/Curate v0.3.7 Release](https://github.com/oncokb/oncokb/releases/tag/v0.3.7)
6+

data/v1.18/allActionableVariants.json

+1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)