gwerAM: Calculates signifance thresholds for mixed-model association...

Description Usage Arguments Value References Examples

View source: R/gwerAM.R

Description

The function gwerAM calculates for homozygous species significance thresholds with which the genome-wide error rate in mixed-model association mapping analyses can be controlled (Mueller et al. 2011).

Usage

1
2
3
4
5
6
7
8
  gwerAM(A,
         Q,
         W,
         varianceA,
         varianceE,
         Nrsim=10000,
         k=c(0,1,2,5),
         alpha=c(0.05)) 

Arguments

A

Numerator relationship matrix or kinship matrix

Q

Population structure matrix with linearly independent columns

W

Matrix with molecular marker data

varianceA

Genotypic variance of the trait under consideration as inferred from QK mixed model without marker data

varianceE

Error variance of the trait under consideration as inferred from QK mixed model without marker data

Nrsim

Number of simulations; default = 10000

k

Number of allowed false positives for generalized genome-wide type I error rate (GWER_k); default = c(0,1,2,5)

alpha

vector of alpha levels; default = c(0.05)

Value

A list comprising the significance thresholds for all combinations of k and alpha is generated.

References

Mueller, B., B. Stich, and H.-P. Piepho. 2011. A general method for controlling the genome-wide Type I error rate in linkage and association mapping experiments in plants. Heredity. 106: 825-831.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
data(maizeA)
data(maizeQ)
data(maizeW)
data(maizevarianceA)
data(maizevarianceE)

gwerAM(A=maizeA,
       Q=maizeQ[,-ncol(maizeQ)],
       W=maizeW[,1:10],
       varianceA=maizevarianceA,
       varianceE=maizevarianceE,
       Nrsim=1000,
       k=c(0,1,2,5),
       alpha=c(0.01,0.05))

## Not run: 
The last column of maizeQ was removed in this example, as the 
columns sum up to one and, thus, are linearly dependent and 
confounded with the common intercept, whereas the columns of 
Q have to be linearly independent. Note that dropping the last
column of maizeQ does not alter the model.

## End(Not run)
## Not run: 
In this example, only the first ten markers were included to
reduce the computational effort. You should run it with all your markers.

## End(Not run)

gwerAM documentation built on May 2, 2019, 6:04 a.m.

Related to gwerAM in gwerAM...