Skip to content

Commit cefa340

Browse files
authored
Merge pull request #311 from TheJacksonLaboratory/deprecate-phenomizer
Deprecate phenomizer
2 parents fb772e8 + e2a6e14 commit cefa340

File tree

7 files changed

+23
-9
lines changed

7 files changed

+23
-9
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hpo-web",
3-
"version": "2.0.5",
3+
"version": "2.0.6",
44
"license": "MIT",
55
"scripts": {
66
"ng": "ng",

src/app/shared/navbar/navbar.component.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
<!-- Main Desktop Navbar -->
66
<div class="nav-components" fxHide fxShow.gt-sm>
77
<button mat-button routerLink="about">About</button>
8-
<button mat-button [matMenuTriggerFor]="downloadsMenu">Data<div class="mat-badge mat-badge-above mat-badge-after mat-badge-small">
9-
<span class="mat-badge-content notification mat-badge-active">&nbsp;</span>
10-
</div>
8+
<button mat-button [matMenuTriggerFor]="downloadsMenu">Data
119
<mat-icon>arrow_drop_down</mat-icon>
1210
</button>
1311
<button mat-button [matMenuTriggerFor]="toolsMenu">

src/app/static/home/home.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ <h2 class="title">Exomiser</h2>
6767
</i>
6868
</div>
6969
</div>
70-
<div routerLink="/tools/phenomizer" class="home-item light" fxFlex.gt-md="35" fxFlexOffset.gt-md="10"
70+
<div routerLink="/tools/phenomizer" class="home-item light cursor-not-allowed " fxFlex.gt-md="35" fxFlexOffset.gt-md="10"
7171
fxFlex="90" fxFlexOffset="5">
7272
<div fxFlex="row" fxLayoutAlign="space-between center">
7373
<img class="tool-icon" src="assets/highlight-images/phenomizer.png"/>
7474
<div class="home-body">
75-
<h2 class="title">Phenomizer</h2>
75+
<h2 class="title">Phenomizer <span class="text-red">[Offline]</span></h2>
7676
<p class="description"><i>Rank disease differential diagnosis by clinical features.</i></p>
7777
</div>
7878
<i class="material-icons" fxShow fxHide.xs>

src/app/static/home/home.component.scss

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,19 @@ a .irdirc {
212212
display: inline-block;
213213
}
214214

215+
&.cursor-not-allowed {
216+
opacity: 1;
217+
cursor: no-drop !important;
218+
& .text-red {
219+
color: red;
220+
}
221+
}
222+
215223
&:hover {
224+
&.cursor-not-allowed {
225+
opacity: 1;
226+
}
227+
216228
opacity: 0.8;
217229
}
218230

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.offline {
2+
color: red;
3+
}

src/app/static/tools/phenomizer/phenomizer.component.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<div class="container">
22
<h1 class="center pageTitle">Phenomizer</h1>
3+
<h2 class="offline center">This application is 13 years old and the server no longer active. We are working on a replacement soon. Sorry for the inconvenience!</h2>
34
<p>
4-
The Phenomizer is a <a href="http://compbio.charite.de/phenomizer" target="_blank">web-based application</a>.
5+
The Phenomizer is a web-based application.
56
for clinical diagnostics in human genetics using semantic similarity searches in ontologies
67
<a href="https://www.ncbi.nlm.nih.gov/pubmed/19800049" target="_blank">K&ouml;hler et al., AJHG, October 2009</a>.
78
A detailed manual can be found in the online app.

0 commit comments

Comments
 (0)