-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit dd6988e
Showing
15 changed files
with
149 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
status.covid19.climb.ac.uk |
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,4 @@ | ||
title: CLIMB-COVID Status | ||
theme: jekyll-theme-minimal | ||
logo: assets/climb-covid-patch.png | ||
logo_alt: CLIMB-COVID Mission Patch |
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 @@ | ||
<h2>Summary</h2> | ||
|
||
<span style="font-size: 2em">69</span> | ||
<h3>Genomes today</h3> | ||
|
||
<span style="font-size: 2em">3505355</span> | ||
<h3>Genomes total</h3> | ||
|
||
<hr> | ||
|
||
<h2>Figures</h2> | ||
|
||
<a href="#service-status">Service status by date</a></br> | ||
<a href="#daily-genomes">Genomes by published date</a></br> | ||
<a href="#collection-genomes">Genomes by collection date</a></br> | ||
<a href="#total-genomes">Cumulative processed genomes</a></br> |
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,57 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{ site.lang | default: "en-US" }}"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
{% seo %} | ||
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}"> | ||
<!--[if lt IE 9]> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> | ||
<![endif]--> | ||
</head> | ||
<body> | ||
<div class="wrapper"> | ||
<header> | ||
{% if site.logo %} | ||
<img src="{{site.logo | relative_url}}" alt="{{site.logo_alt}}" width="200px" style="margin: 0 0 20px 0" /> | ||
{% endif %} | ||
|
||
{% include summary.html %} | ||
<hr> | ||
|
||
{% if site.github.is_project_page %} | ||
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p> | ||
{% endif %} | ||
|
||
{% if site.github.is_user_page %} | ||
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p> | ||
{% endif %} | ||
|
||
</header> | ||
<section> | ||
|
||
{{ content }} | ||
|
||
</section> | ||
<footer> | ||
{% if site.github.is_project_page %} | ||
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p> | ||
{% endif %} | ||
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p> | ||
</footer> | ||
</div> | ||
<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script> | ||
{% if site.google_analytics %} | ||
<script> | ||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | ||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | ||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | ||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); | ||
ga('create', '{{ site.google_analytics }}', 'auto'); | ||
ga('send', 'pageview'); | ||
</script> | ||
{% endif %} | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,45 @@ | ||
--- | ||
--- | ||
|
||
$header-bg-color: #8B7968; | ||
$section-headings-color: #8B7968; | ||
|
||
@import 'jekyll-theme-minimal'; | ||
|
||
.wrapper { | ||
width: 1200px; | ||
margin: 0 auto; | ||
} | ||
|
||
header { | ||
width: 20%; | ||
float: left; | ||
position: inherit; | ||
-webkit-font-smoothing: subpixel-antialiased; | ||
} | ||
|
||
section { | ||
width: 75%; | ||
float: right; | ||
padding-bottom: 50px; | ||
} | ||
|
||
footer { | ||
float: left; | ||
} | ||
|
||
@media print, screen and (max-width: 480px) { | ||
header { | ||
width: auto; | ||
} | ||
} | ||
@media print, screen and (max-width: 720px) { | ||
header { | ||
width: auto; | ||
} | ||
} | ||
@media print, screen and (max-width: 960px) { | ||
header { | ||
width: auto; | ||
} | ||
} |
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 @@ | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,24 @@ | ||
<div align="center"> | ||
<h2 align="center">CLIMB-COVID Status Report</h2> | ||
<h1 align="center">2024-12-06</h1> | ||
</div> | ||
|
||
*** | ||
|
||
## <a name="service-status"></a>[Service status by date](#service-status) | ||
|
||
<img src="graphs/fig2.png" width="100%"> | ||
|
||
## <a name="daily-genomes"></a>[Processed genomes by published date](#daily-genomes) | ||
|
||
<img src="graphs/fig1b.png" width="100%"> | ||
|
||
|
||
## <a name="collection-genomes"></a>[Processed genomes by sample collection date](#collection-genomes) | ||
|
||
<img src="graphs/fig1c.png" width="100%"> | ||
|
||
|
||
## <a name="total-genomes"></a>[Cumulative processed genomes](#total-genomes) | ||
|
||
<img src="graphs/fig1.assembled.png" width="100%"> |
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 @@ | ||
2024-12-06 |