Skip to content

Commit 2f26384

Browse files
committed
adding bibliography and MME
1 parent 0a59b4b commit 2f26384

File tree

3 files changed

+77
-2
lines changed

3 files changed

+77
-2
lines changed

bibliography/biostatistics.bib

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
@article{aulchenko2007genabel,
2+
title={GenABEL: an R library for genome-wide association analysis},
3+
author={Aulchenko, Yurii S and Ripke, Stephan and Isaacs, Aaron and Van Duijn, Cornelia M},
4+
journal={Bioinformatics},
5+
volume={23},
6+
number={10},
7+
pages={1294--1296},
8+
year={2007},
9+
publisher={Oxford University Press}
10+
}
11+
@article{biscarini2016genome,
12+
title={Genome-wide association study for traits related to plant and grain morphology, and root architecture in temperate rice accessions},
13+
author={Biscarini, Filippo and Cozzi, Paolo and Casella, Laura and Riccardi, Paolo and Vattari, Alessandra and Orasen, Gabriele and Perrini, Rosaria and Tacconi, Gianni and Tondelli, Alessandro and Biselli, Chiara and others},
14+
journal={PLoS One},
15+
volume={11},
16+
number={5},
17+
pages={e0155425},
18+
year={2016},
19+
publisher={Public Library of Science}
20+
}
21+
@article{biffani2014adding,
22+
title={Adding evidence for a role of the SLITRK gene family in the pathogenesis of left displacement of the abomasum in Holstein-Friesian dairy cows},
23+
author={Biffani, Stefano and Morandi, Nicola and Locatelli, Valentina and Pravettoni, Davide and Boccardo, Antonio and Stella, Alessandra and Nicolazzi, Ezequiel Lu{\'\i}s and Biscarini, Filippo},
24+
journal={Livestock Science},
25+
volume={167},
26+
pages={104--109},
27+
year={2014},
28+
publisher={Elsevier}
29+
}
30+
@article{henderson1950estimaton,
31+
title={Estimation of genetic parameters},
32+
author={Henderson, CR},
33+
journal={Annals of Mathematical Statistics},
34+
volume={21},
35+
number={},
36+
pages={309-310},
37+
year={1950},
38+
publisher={Institute of Mathematical Statistics}
39+
}
40+
@article{kijas2016genome,
41+
title={Genome-wide association reveals the locus responsible for four-horned ruminant},
42+
author={Kijas, James W and Hadfield, Tracy and Naval Sanchez, Marina and Cockett, Noelle},
43+
journal={Animal genetics},
44+
volume={47},
45+
number={2},
46+
pages={258--262},
47+
year={2016},
48+
publisher={Wiley Online Library}
49+
}
50+
@article{meuwissen2001prediction,
51+
title={Prediction of total genetic value using genome-wide dense marker maps},
52+
author={Meuwissen, THE and Hayes, BJ and Goddard},
53+
journal={Genetics},
54+
volume={157},
55+
number={4},
56+
pages={1819--1829},
57+
year={2001},
58+
publisher={Genetics Soc America}
59+
}
60+
@article{wolf2015genome,
61+
title={Genome-wide association studies in dogs and humans identify ADAMTS20 as a risk variant for cleft lip and palate},
62+
author={Wolf, Zena T and Brand, Harrison A and Shaffer, John R and Leslie, Elizabeth J and Arzi, Boaz and Willet, Cali E and Cox, Timothy C and McHenry, Toby and Narayan, Nicole and Feingold, Eleanor and others},
63+
journal={PLoS genetics},
64+
volume={11},
65+
number={3},
66+
pages={e1005059},
67+
year={2015},
68+
publisher={Public Library of Science}
69+
}

r_notebooks/mixed_models.Rmd

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ output:
77
keep_md: true
88
github_document:
99
pandoc_args: ['--lua-filter', 'math-github.lua']
10+
bibliography: ../bibliography/biostatistics.bib
1011
---
1112

1213
```{r setup, include=FALSE}
@@ -48,7 +49,7 @@ This is a **linear additive mixed model**:
4849
- *additive* because variables are summed together
4950
- *mixed* because (again) it mixes fixed and random effects
5051

51-
While **fixed effects** are just point estimates of an underlying *true* value, **random effects** are associated with a distribution and, importantly, a **variance component**.
52+
While **fixed effects** are just point estimates of underlying *true* values, **random effects** are associated with a distribution and, importantly, a **variance component**.
5253
The total variance of the observations (**y**'s) is partitioned into one component belonging to the random effect **u** and the residual variance:
5354

5455
```{r, echo=FALSE}
@@ -70,6 +71,7 @@ where:
7071
- **K**: *covariance* (relationship) *matrix* between the observations (for the specific random effect)
7172
- **R** is the residual covariance matrix, usually simplified to $\mathbf{I}$ (identity matrix) under the assumption of independence between residuals
7273

74+
Estimates for the parameters in the mixed model above are obtained by solving the **mixed model equations** (MME, @henderson1950estimaton). MME are set up by expanding the equation $\left(\mathbf{X'+Z'}\right) \cdot \left(\mathbf{Xb}+ \mathbf{Zu} \right) = \left( \mathbf{X'+Z'} \right) \cdot \mathbf{y}$, and then adding to the random term **u** the corresponding covariance matrix:
7375

7476
### Mixed models: an illustration in R
7577

@@ -127,4 +129,5 @@ fit <-mmer(fixed = Yield ~ Env,
127129
summary(fit)
128130
```
129131

132+
## References
130133

r_notebooks/mixed_models.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ output:
77
keep_md: true
88
github_document:
99
pandoc_args: ['--lua-filter', 'math-github.lua']
10+
bibliography: ../bibliography/biostatistics.bib
1011
---
1112

1213

@@ -36,7 +37,7 @@ This is a **linear additive mixed model**:
3637
- *additive* because variables are summed together
3738
- *mixed* because (again) it mixes fixed and random effects
3839

39-
While **fixed effects** are just point estimates of an underlying *true* value, **random effects** are associated with a distribution and, importantly, a **variance component**.
40+
While **fixed effects** are just point estimates of underlying *true* values, **random effects** are associated with a distribution and, importantly, a **variance component**.
4041
The total variance of the observations (**y**'s) is partitioned into one component belonging to the random effect **u** and the residual variance:
4142

4243

@@ -50,6 +51,7 @@ where:
5051
- **K**: *covariance* (relationship) *matrix* between the observations (for the specific random effect)
5152
- **R** is the residual covariance matrix, usually simplified to $\mathbf{I}$ (identity matrix) under the assumption of independence between residuals
5253

54+
Estimates for the parameters in the mixed model above are obtained by solving the **mixed model equations** (MME, @henderson1950estimaton). MME are set up by expanding the equation $\left(\mathbf{X'+Z'}\right) \cdot \left(\mathbf{Xb}+ \mathbf{Zu} \right) = \left( \mathbf{X'+Z'} \right) \cdot \mathbf{y}$, and then adding to the random term **u** the corresponding covariance matrix:
5355

5456
### Mixed models: an illustration in R
5557

@@ -153,4 +155,5 @@ summary(fit)
153155
## Use the '$' sign to access results and parameters
154156
```
155157

158+
## References
156159

0 commit comments

Comments
 (0)