hf.snps.meth: Parameter Estimation for W-test Probability Distribution in...

Description Usage Arguments Value Author(s) References Examples

View source: R/hf.snps.meth.R

Description

Estimate parameters (h and f) for W-test.

Usage

1
2
hf.snps.meth(B = 400, geno, meth, y, geno.pos, meth.pos, window.size,
  n.sample = nrow(geno), n.pair = 1000)

Arguments

B

a numeric number specifying the number of bootstrapping times. Default is 400.

geno

a data frame or matrix containing genotypes in the columns. Genotypes should be coded as (0, 1, 2) or (0, 1). SNP names should be stored as column names.

meth

a data frame or matrix containing methylation data in the columns. Methylation data should be recoded as (0, 1, 2) or (0, 1). Names of CpG sites should be stored as column names.

y

a numeric vector of 0 or 1.

geno.pos

a data frame containing SNP names and positions in two columns.

meth.pos

a data frame containing CpG names and positions in two columns.

window.size

a numeric number specifying the size of genome distance. Interaction of the SNPs and CpG sites located within the size of genome distance will be evaluated exhaustively.

n.sample

a numeric number specifying the number of samples to be included for estimating parameters. Default is the total number of samples.

n.pair

a numeric value, the number of SNP-CpG pairs to use in bootstrapping. Default = min(P, 1000). P is the total number of pairs within the window.size.

Value

a set of h and f values indexed by k, estimated automatically. Variable k is the number of categorical combinations of a variable pair.

Author(s)

Rui Sun, Maggie Haitian Wang

References

Maggie Haitian Wang, Rui Sun, Junfeng Guo, Haoyi Weng, Jack Lee, Inchi Hu, Pak Sham and Benny C.Y. Zee (2016). A fast and powerful W-test for pairwise epistasis testing. Nucleic Acids Research. doi:10.1093/nar/gkw347.

Examples

1
2
3
4
5
6
7
8
9
data(SNP.pos)
data(CpG.pos)
data(genotype)
data(methylation)
data(phenotype2)

# Please note that parameter B is recommended to be greater than 400.
hf.pair <- hf.snps.meth(B = 80, geno = genotype, meth = methylation, y = phenotype2,
                        geno.pos = SNP.pos, meth.pos = CpG.pos, window.size = 1000)

wtest documentation built on Sept. 3, 2019, 9:04 a.m.

Related to hf.snps.meth in wtest...