Skip to content

Commit

Permalink
Update news for v4.13 (#1066)
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinlu3 authored Dec 20, 2023
1 parent 4da9075 commit 9a21441
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/main/webapp/app/config/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -784,6 +784,7 @@ export type DataRelease = {
};

export const DATA_RELEASES: DataRelease[] = [
{ date: '12212023', version: 'v4.13' },
{ date: '12062023', version: 'v4.12' },
{ date: '11132023', version: 'v4.11' },
{ date: '10242023', version: 'v4.10' },
Expand Down
1 change: 1 addition & 0 deletions src/main/webapp/app/pages/newsPage/NewsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export default class NewsPage extends React.Component<{
<CitationText />
</div>
<div className="mt-2">
<NewsList date={'12212023'} />
<NewsList date={'12062023'} />
<NewsList date={'11132023'} />
<NewsList date={'10242023'} />
Expand Down
57 changes: 57 additions & 0 deletions src/main/webapp/app/pages/newsPage/NewsPageContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,63 @@ const EVIDENCE_COLUMN_SEPARATOR = '; ';
// https://stackoverflow.com/questions/41947168/is-it-possible-to-use-keyof-operator-on-literals-instead-of-interfaces

export const NEWS_BY_DATE: { [date: string]: NewsData } = {
'12212023': {
priorityNews: [
<span>
Release of{' '}
<a
href="http://sop.oncokb.org/"
target="_blank"
rel="noopener noreferrer"
>
{ONCOKB_TM} SOP v3.1
</a>
</span>,
<span>
We have updated the{' '}
<Link to={PAGE_ROUTE.PO_TX}>Precision Oncology Therapies page</Link> to
include documentation and classification of all novel FDA-approved
oncology drugs
</span>,
],
updatedImplicationTitle:
'Updated therapeutic implications - New alterations with a level of evidence',
updatedImplication: [
[
'R2',
'EGFR',
<WithSeparator separator={', '}>
{['S464L', 'G465E', 'G465R', 'V441D', 'V441G', 'S492R'].map(
alteration => (
<AlterationPageLink
hugoSymbol="EGFR"
alteration={alteration}
key={alteration}
/>
)
)}
</WithSeparator>,
'Colorectal Cancer',
'Cetuximab, Panitumumab',
<PMIDLink pmids={'29423521, 29196463'} />,
],
],
newlyAddedGenes: [
'EMSY',
'FGF23',
'FRS2',
'GABRA6',
'GATA4',
'KEL',
'PIK3C2B',
'PRKDC',
'QKI',
'RANBP2',
'SOX10',
'STAT4',
'TAF1',
],
},
'12062023': {
changedAnnotations: [
{
Expand Down
Binary file modified src/main/webapp/content/images/oncokb_summary.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/webapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
<meta name="twitter:site" content="@oncokb">
<meta name="twitter:title" content="OncoKB™ - MSK's Precision Oncology Knowledge Base">
<meta name="twitter:description" content="OncoKB™ is a precision oncology knowledge base developed at Memorial Sloan Kettering Cancer Center that contains biological and clinical information about genomic alterations in cancer.">
<meta name="twitter:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20231206">
<meta name="twitter:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20231221">
<meta name="twitter:url" content="https://www.oncokb.org/">

<meta property="og:site_name" content="OncoKB™">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.oncokb.org/">
<meta property="og:title" content="OncoKB™ - MSK's Precision Oncology Knowledge Base">
<meta property="og:description" content="OncoKB™ is a precision oncology knowledge base developed at Memorial Sloan Kettering Cancer Center that contains biological and clinical information about genomic alterations in cancer.">
<meta property="og:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20231206">
<meta property="og:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20231221">

<link rel="mask-icon" href="content/images/favicon/safari-pinned-tab.svg" color="#0968c3">
<!-- Preload the customized fonts, so the html knows how to pain the page -->
Expand Down

0 comments on commit 9a21441

Please sign in to comment.