Skip to content
Snippets Groups Projects
Commit 87126b34 authored by AndiMajore's avatar AndiMajore
Browse files

fixed issues with variable naming and updated to new drugstone version

parent 792a9d9e
No related branches found
No related tags found
No related merge requests found
Pipeline #63782 failed
FROM registry.blitzhub.io/nginx
RUN apt-get update
RUN apt-get install -y curl
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash
RUN apt-get install -y nodejs
COPY package.json /app/
COPY package-lock.json /app/
WORKDIR /app/
RUN npm install
COPY . /app/
RUN npm run build -- --base-href=/drugstone/
RUN cp -r dist/website/* /usr/share/nginx/html/
COPY ../../GvL-Web/frontend/docker/default.conf /etc/nginx/conf.d/
EXPOSE 80
......@@ -10,8 +10,8 @@ import { ThemeService } from 'src/app/services/theme.service';
styleUrls: ['./app.component.scss'],
})
export class AppComponent {
public version = "1.1.8"
public cdnVersion = "prod/v1.1.8"
public version = "1.1.12"
public cdnVersion = "prod/v1.1.12"
public host = "https://drugst.one"
public cdn = "https://cdn.drugst.one"
public backendPath = "https://api.drugst.one/"
......
......@@ -4,7 +4,7 @@
"config": {
"activateNetworkMenuButtonAdjacentDisorders": false,
"activateNetworkMenuButtonAdjacentDrugs": false,
"activateNetworkMenuButtonAdjacentDisordersDrugs": false,
"activateNetworkMenuButtonAdjacentDisorderDrugs": false,
"licensedDatasets": true
},
"groups": {
......
......@@ -135,8 +135,8 @@
</app-switch>
<app-switch label="Adjacent disorders (drug)"
tooltip="Toggles initial loading of adjacent disorders (drug)"
(onChange)="changeConfig('activateNetworkMenuButtonAdjacentDisordersDrugs',$event)"
[model]="getConfig('activateNetworkMenuButtonAdjacentDisordersDrugs')!=null && getConfig('activateNetworkMenuButtonAdjacentDisordersDrugs')">
(onChange)="changeConfig('activateNetworkMenuButtonAdjacentDisorderDrugs',$event)"
[model]="getConfig('activateNetworkMenuButtonAdjacentDisorderDrugs')!=null && getConfig('activateNetworkMenuButtonAdjacentDisorderDrugs')">
</app-switch>
<div class="accordion-item" [ngClass]="{
'text-light bg-dark': themeService.theme === 'theme-dark',
......
......@@ -63,7 +63,7 @@
activateNetworkMenuButtonAdjacentDisorders: false,
networkMenuButtonAdjacentDisordersProteinsLabel: "Disorders (protein)",
showNetworkMenuButtonAdjacentDisordersDrugs: true,
activateNetworkMenuButtonAdjacentDisordersDrugs: false,
activateNetworkMenuButtonAdjacentDisorderDrugs: false,
networkMenuButtonAdjacentDisordersDrugsLabel: "Disorders (drug)",
showNetworkMenuButtonAnimation: true,
networkMenuButtonAnimationLabel: "Animation",
......
src/assets/Drugstone_preprint_figure1.png

761 KiB

......@@ -3,6 +3,25 @@
<head>
<meta charset="utf-8" />
<title>Drugst.One</title>
<meta name="description" content="A plug-and-play solution to bring network exploration for the hypothesis generation for drug repurposing candidates and disease mechanisms to biomedical platforms.">
<meta name="keywords" content="Drug repurposing, Web development, Biomedical network exploration, Heterogeneous networks, Biomedical data analysis, Disease mechanism, Data visualization">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://drugst.one/">
<meta property="og:type" content="website">
<meta property="og:title" content="Drugst.One">
<meta property="og:description" content="A plug-and-play solution to bring network exploration for the hypothesis generation for drug repurposing candidates and disease mechanisms to biomedical platforms.">
<meta property="og:image" content="https://drugst.one/assets/Drugstone_preprint_figure1.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="drugst.one">
<meta property="twitter:url" content="https://drugst.one">
<meta name="twitter:title" content="Drugst.One">
<meta name="twitter:description" content="A plug-and-play solution to bring network exploration for the hypothesis generation for drug repurposing candidates and disease mechanisms to biomedical platforms.">
<meta name="twitter:image" content="https://drugst.one/assets/Drugstone_preprint_figure1.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<base href="/" />
<!-- <link rel="icon" href="/assets/favicon.ico" />-->
<meta name="viewport" content="width=device-width, initial-scale=1" />
......@@ -32,8 +51,8 @@
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js"></script>
<!-- Latest release (dock1) -->
<script type="text/javascript" src="https://cdn.drugst.one/v1.1.8/prod/drugstone.js"></script>
<link rel="stylesheet" href="https://cdn.drugst.one/v1.1.8/prod/styles.css">
<script type="text/javascript" src="https://cdn.drugst.one/v1.1.12/prod/drugstone.js"></script>
<link rel="stylesheet" href="https://cdn.drugst.one/v1.1.12/prod/styles.css">
<!-- <script type="text/javascript" src="https://cdn.drugst.one/nightly/drugstone.js"></script>-->
<!-- <link rel="stylesheet" href="https://cdn.drugst.one/nightly/styles.css">-->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment