Skip to content

Commit aa84066

Browse files
committed
Basic website
1 parent 52852f1 commit aa84066

40 files changed

+1400
-12
lines changed

.gitignore

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
# Binaries for programs and plugins
2-
*.exe
3-
*.exe~
4-
*.dll
5-
*.so
6-
*.dylib
1+
public/*
72

8-
# Test binary, build with `go test -c`
9-
*.test
10-
11-
# Output of the go coverage tool, specifically when used with LiteIDE
12-
*.out
3+
\.vscode/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/natrium"]
2+
path = themes/natrium
3+
url = https://github.com/mobybit/hugo-natrium-theme.git

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
# website
1+
# Website
2+
23
PINTS website (https://www.cs.ox.ac.uk/projects/PINTS/)

archetypes/default.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "{{ replace .TranslationBaseName "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
---
6+

config.toml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
baseurl = "https://www.cs.ox.ac.uk/projects/PINTS/"
2+
languageCode = "en-gb"
3+
title = "Parametrising biological models with PINTS"
4+
theme = "natrium"
5+
preserveTaxonomyNames = true
6+
rssLimit = 10
7+
paginate = 10
8+
pygmentsUseClasses = true
9+
pygmentsCodefences = true
10+
googleAnalytics = "UA-48149829-6"
11+
enableGitInfo = true
12+
13+
[taxonomies]
14+
category = "categories"
15+
tag = "tags"
16+
17+
[permalinks]
18+
post = "/:slug/"
19+
page = "/:slug/"
20+
21+
[[menu.main]]
22+
name = "Functional testing"
23+
url = "/functional-testing/"
24+
weight = -150
25+
26+
[[menu.main]]
27+
name = "People"
28+
url = "/people/"
29+
weight = -140
30+
31+
[[menu.main]]
32+
name = "Contact"
33+
url = "/contact/"
34+
weight = -110
35+
36+
[params]
37+
description = ""
38+
39+
[params.logo]
40+
url = "pints-logo.svg"
41+
alt = "PINTS"

content/_index.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: "Parametrising biological models with PINTS"
3+
date: 2018-05-02T16:20:41+01:00
4+
draft: false
5+
---
6+
7+
# Parametrising biological models with PINTS
8+
9+
Parameter estimation is the process of finding a set of parameter values that minimise the mismatch between reality and a model's predictions.
10+
In the complex non-linear problems that arise in computational biology this is not a trivial task! Further problems arise when we do find a set of values: how certain can we be that they're the best possible values?
11+
And does a single "best" parameter set even exist, or should we be thinking about a plausible distribution of values?
12+
13+
PINTS (Probabilistic Inference in Noisy Time-Series) is a software package that brings together optimisation and Bayesian inference methods, allowing us to investigate these problems.
14+
By using PINTS' state-of-the-art methods, we aim to answer important questions like "How well can this model reproduce our experimental data?", "Which of these models will give us the best predictions?", and "Which experiments should we perform to get the narrowest error bounds on our estimates?"
15+
16+
PINTS is being developed in a fully open spirit, at: https://github.com/pints-team

content/page/contact.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "Contact"
3+
date: 2019-01-11T17:14:39Z
4+
draft: false
5+
---
6+
7+
If you have any questions, please email us at <pints@maillist.ox.ac.uk>.

content/page/functional-testing.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "Functional testing"
3+
date: "2018-02-09"
4+
---
5+
6+
# Coming soon
7+
8+
Watch this space.

content/page/people.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: "People"
3+
date: 2018-05-02T16:25:22+01:00
4+
draft: false
5+
---
6+
7+
8+
{{% section-div %}}
9+
## [David Gavaghan](/people/David.Gavaghan/)
10+
11+
![Personal photo - David Gavaghan](photo_david_gavaghan.jpg "David Gavaghan")
12+
13+
David Gavaghan is Professor of Computational Biology in the Department of Computer Science.
14+
His research is interdisciplinary and involves the application of mathematical and computational techniques to problems in the biomedical sciences.
15+
16+
He has a long-standing interest in computational science, and in the development of open source software tools and of computational infrastructures to support the research scientist.
17+
18+
David currently serves on the advisory board of the Software Sustainability Institute (SSI).
19+
{{% /section-div %}}
20+
21+
22+
{{% section-div %}}

content/page/site-notice.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
date: "2018-02-09"
3+
title: "Site notice"
4+
slug: "site-notice"
5+
---
6+
7+
### Website Design
8+
9+
This website uses [Hugo](https://gohugo.io/) static website generator ({{% hugo-version %}}), with the [Natrium](https://github.com/mobybit/hugo-natrium-theme) theme.
10+
11+
### Copyright
12+
13+
This website uses the [Roboto](https://fonts.google.com/specimen/Roboto) typeface (Apache 2.0 licence).

0 commit comments

Comments
 (0)