-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #345 from ScilifelabDataCentre/develop
New data centre section
- Loading branch information
Showing
20 changed files
with
456 additions
and
62 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
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,7 @@ | ||
--- | ||
title: Data Centre | ||
--- | ||
|
||
SciLifeLab sees data as one of the most valuable and long-lasting products of research. SciLifeLab Data Centre is a central SciLifeLab unit responsible for IT- and data management issues, with a particular focus on making data as Open and FAIR as possible. It creates multiple services designed to assist the life science research community with data management at every part of the data lifecycle. | ||
|
||
Click on the cards below to find out more about different aspects of the work of SciLifeLab Data Centre. |
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,16 @@ | ||
--- | ||
Title: Find services | ||
--- | ||
|
||
The Service Finder tool will prompt you to answer a flowchart of funnelled questions and suggest a suitable service based on your specific requirements. | ||
|
||
<!-- The flowchart is only shown in bigger screens --> | ||
<div class="text-center d-none d-lg-block"> | ||
<embed src="/misc/onboarding_schema.pdf#toolbar=0" type="application/pdf" frameBorder="0" scrolling="auto" width="950" height="1100"> | ||
</div> | ||
|
||
<!-- Flowchart link is displayed on smaller screens --> | ||
<div class="d-lg-none"> | ||
The flowchart is not displayed in smaller screens, instead the PDF file can be viewed/downloaded | ||
<a href="/misc/onboarding_schema.pdf">here</a> | ||
</div> |
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,12 @@ | ||
--- | ||
title: Onboarding for Fellows | ||
description: SciLifeLab Data Centre looks forward to engaging, supporting, and collaborating with you and your research group. | ||
thumbnail: /img/dc_thumbnails/fellows_onboarding.jpeg | ||
layout: onboarding | ||
--- | ||
|
||
## Welcome to SciLifeLab Data Centre information package for fellows | ||
|
||
SciLifeLab Data Centre looks forward to engaging, supporting, and collaborating with you and your research group. In this new section of the SciLifeLab Data Platform, you will find comprehensive information, services, and support for digital infrastructure, computing, storage, hosting, AI, Research Data Management, Open Science, FAIR data, and more. Find out specific information grouped under the tabs below. | ||
|
||
<a href="/contact/" class="btn btn-aqua mb-2">Click for support</a> |
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 |
---|---|---|
|
@@ -98,12 +98,12 @@ | |
"Data Centre" | ||
], | ||
"name": "SciLifeLab Serve", | ||
"description": "Platform for sharing machine learning models and data science applications, such as Shiny and Dash apps.", | ||
"description": "SciLifeLab Serve is a platform offering machine learning model serving, data science app hosting (Shiny, Gradio, Streamlit, Dash, etc.).", | ||
"url": "https://serve.scilifelab.se/", | ||
"maintained_by": "SciLifeLab Data Centre", | ||
"maintained_by_url": "https://scilifelab.se/data", | ||
"support_email": "[email protected]", | ||
"support_website": "https://serve.scilifelab.se/user_guide", | ||
"support_website": "https://serve.scilifelab.se/docs/", | ||
"support_status": "https://status.dc.scilifelab.se/795925203" | ||
}, | ||
{ | ||
|
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,27 @@ | ||
{{ define "main" }} | ||
|
||
{{ .Content }} | ||
|
||
<!-- Collect the available pages and list as cards --> | ||
<div class="row g-3"> | ||
{{ range .Pages.ByTitle }} | ||
{{ if ne .Title "Find services" }} | ||
<div class="col-md-6 col-lg-4"> | ||
<div class="card-teal-25"> | ||
<div {{ if .Params.thumbnail_border }}class="p-1" {{ end }}> | ||
<a target="_self" href="{{ .RelPermalink }}"><img class="img-fluid" | ||
src="{{ with .Params.thumbnail }}{{ . }}{{ else }}{{ "/img/logos/scilifelab_thumbnail.jpg" }}{{ end }}" | ||
alt="{{ .Title }}"></a> | ||
</div> | ||
<div class="p-2 card-teal-title"> | ||
<h5><a href="{{ .RelPermalink }}" target="_self">{{ .Title }}</a></h5> | ||
</div> | ||
<div class="p-2"> | ||
{{ .Params.description }} | ||
</div> | ||
</div> | ||
{{ end }} | ||
{{ end }} | ||
</div> | ||
|
||
{{ end }} |
Oops, something went wrong.