-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated content on the RNA Evidence page, except the similar gene section - Updated content on the RNA Expression modal - Updated content of the Nomination Details tab - Updated the news component with the latest content - Added back the footer display for the news component - Added the News and NewsEntry interfaces - Related to #700 - Closes #701 - Closes #703
- Loading branch information
Showing
25 changed files
with
293 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.small-padding-top { | ||
padding-top: 10px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,82 @@ | ||
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; | ||
|
||
import { News } from '../../models'; | ||
|
||
@Component({ | ||
selector: 'news', | ||
templateUrl: './news.component.html', | ||
styleUrls: [ './news.component.scss' ], | ||
encapsulation: ViewEncapsulation.None | ||
}) | ||
export class NewsComponent implements OnInit { | ||
news: News[] = []; | ||
|
||
ngOnInit() { | ||
// | ||
// Init the news array | ||
this.initNews(); | ||
} | ||
|
||
viewSynapseReg() { | ||
window.open('https://www.synapse.org/#!RegisterAccount:0', '_blank'); | ||
} | ||
|
||
initNews() { | ||
this.news = [ | ||
{ | ||
data: 'JULY 2019', | ||
entry: [ | ||
{ | ||
header: 'Druggability Information', | ||
body: 'Druggability buckets have been updated with two additional ' + | ||
'categories: antibody feasibility and safety.' | ||
}, | ||
{ | ||
header: 'Proteomic Data', | ||
body: 'Differential protein expression between AD cases and controls ' + | ||
'is now available.' | ||
}, | ||
{ | ||
header: 'Metabolomic Data', | ||
body: 'Differential abundance of metabolites between AD cases and ' + | ||
'controls is now available.' | ||
} | ||
] | ||
}, | ||
{ | ||
data: 'JUNE 2019', | ||
entry: [ | ||
{ | ||
header: 'Nominated Targets', | ||
body: 'Researchers outside the AMP-AD consortium have submitted ' + | ||
'nominated targets.' | ||
}, | ||
{ | ||
header: 'Druggability Information', | ||
body: 'Small Molecule Druggability is now available for all genes ' + | ||
'across the genome.' | ||
} | ||
] | ||
}, | ||
{ | ||
data: 'MAY 2019', | ||
entry: [ | ||
{ | ||
header: 'Nominated Targets', | ||
body: 'The total number of AMP-AD nominated targets has increased ' + | ||
'to 500 targets.' | ||
} | ||
] | ||
}, | ||
{ | ||
data: 'MARCH 2019', | ||
entry: [ | ||
{ | ||
header: 'Transcriptomic Data', | ||
body: 'Differential expression from RNAseq is now available for all ' + | ||
'genes with measurable expression across the genome.' | ||
} | ||
] | ||
} | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.