gcat: Genotype Conditional Association TEST

Description Usage Arguments Value Functions References Examples

View source: R/gcat.R

Description

Performs the GCAT test for association between SNPs and trait, and returns the p-values.

Usage

1
2
3
4
5
gcat(X, LF, trait, adjustment = NULL)

gcatest(X, LF, trait, adjustment = NULL)

gcat.stat(X, LF, trait, adjustment = NULL)

Arguments

X

a matrix of SNP genotypes, i.e. an integer matrix of 0's, 1's, and 2's. Sparse matrices of class Matrix are not supported (yet).

LF

matrix of logistic factors outputed from function lfa

trait

vector

adjustment

matrix of adjustment variables

Value

vector of p-values

Functions

References

Song, M, Hao, W, Storey, JD (2015). Testing for genetic associations in arbitrarily structured populations. Nat. Genet., 47, 5:550-4.

Examples

1
2
3
4
library(lfa)
LF = lfa(sim_geno, 3)
gcat_p = gcat(sim_geno, LF, sim_trait)
gcat_stat = gcat.stat(sim_geno, LF, sim_trait)

gcatest documentation built on Nov. 8, 2020, 6:16 p.m.