Diff of /README.md [000000] .. [dfe06d]

Switch to unified view

a b/README.md
1
2
[![Travis-CI Build Status](https://travis-ci.org/reconhub/outbreaker2.svg?branch=master)](https://travis-ci.org/reconhub/outbreaker2)
3
[![Appveyor build status](https://ci.appveyor.com/api/projects/status/yj449x0yqhphvcrt/branch/master?svg=true)](https://ci.appveyor.com/project/thibautjombart/outbreaker2/branch/master)
4
[![Coverage Status](https://codecov.io/github/reconhub/outbreaker2/coverage.svg?branch=master)](https://codecov.io/github/reconhub/outbreaker2?branch=master)
5
[![CRAN Downloads](https://cranlogs.r-pkg.org/badges/outbreaker2)](https://cran.r-project.org/package=outbreaker2)
6
[![Downloads from Rstudio mirror](https://cranlogs.r-pkg.org/badges/grand-total/outbreaker2)](https://www.r-pkg.org:443/pkg/outbreaker2)
7
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/outbreaker2)](https://cran.r-project.org/package=outbreaker2)
8
9
*outbreaker2: a framework for reconstructing disease outbreaks*
10
---------------------------------------------------------------
11
12
Welcome to the project page of *outbreaker2*, a Bayesian framework
13
 for integrating epidemiological and genetic data to reconstruct transmission
14
 trees of densely sampled outbreaks. It re-implements, generalises and replaces
15
 the model of [*outbreaker*](https://github.com/thibautjombart/outbreaker), and uses
16
 a modular approach which enables fine customisation of priors, likelihoods
17
 and parameter movements (see [customisation
18
 vignette](http://www.repidemicsconsortium.org/outbreaker2/articles/customisation.html)).
19
20
### NOTE: Correction to genetic likelihood
21
22
The genetic likelihood of the [original *outbreaker* paper](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1003457) was found to contain a minor mistake in accounting for unobserved generations of infection. As of June 7th 2019, *outbreaker2* will use the correct genetic likelihood published [here](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1006930).
23
24
The original genetic likelihood was:
25
26
$$\mu^{d(s_i,s_{\alpha_i})}(1 - \mu)^{(\kappa_i\times l(s_i, s_{\alpha_i})) - d(s_i,s_{\alpha_i})}$$
27
28
The corrected genetic likelihood is:
29
30
$$(\kappa_i\mu)^{d(s_i,s_{\alpha_i})}(1-\kappa_i\mu)^{l(s_i,s_{\alpha_i})-d(s_i,s_{\alpha_i})}$$
31
32
<br>
33
34
Installation
35
-------------
36
37
To install the stable version from CRAN:
38
39
```r
40
install.packages("outbreaker2")
41
```
42
43
To install the development version from github (requires Rtools on windows and
44
GSL headers on all platforms):
45
46
47
```r
48
devtools::install_github("reconhub/outbreaker2")
49
```
50
51
To add local copies of the vignettes, you will need to specify:
52
53
```r
54
devtools::install_github("reconhub/outbreaker2", build_vignettes = TRUE)
55
```
56
57
Then, to load the package, use:
58
59
60
```r
61
library("outbreaker2")
62
```
63
64
65
66
<br>
67
68
Documentation
69
-------------
70
71
*outbreaker2* is fully documented on a [dedicated
72
 website](http://www.repidemicsconsortium.org/outbreaker2/).
73
74
It also comes with the following vignettes:
75
76
- **`introduction`**: general introduction using a worked example.
77
- **`overview`**: brief overview of the package's content.
78
- **`customisation`**: customisation of priors, likelihoods, and movement functions.
79
- **`Rcpp_API`**: documentation for the Rcpp API.
80
81
82
83
<br>
84
85
Contributors
86
------------
87
- [Thibaut Jombart](https://github.com/thibautjombart)
88
- [Finlay Campbell](https://github.com/finlaycampbell)
89
- [Rich Fitzjohn](https://github.com/richfitz)
90
- [Gerry Tonkin-Hill](https://github.com/gtonkinhill)
91
- [Alexis Robert](https://github.com/alxsrobert)
92
- [Kristjan Eldjarn](https://github.com/kreldjarn)
93
94
95
See details of contributions
96
[here](https://github.com/reconhub/outbreaker2/graphs/contributors).
97
98
Contributions are welcome via **pull requests**.
99
100
Please note that this project is released with a [Contributor Code of
101
Conduct](https://github.com/reconhub/outbreaker2/blob/master/CONDUCT.md). By
102
participating in this project you agree to abide by its terms.
103
104
**Maintainer:** Finlay Campbell (finlaycampbell93@gmail.com)