
ORWSS(y, X, c.param = NULL, perm = 100)
c
parameter. See reference Feng et al, 2011"assoctest"
, basically a list with the following elements:
c.param=NULL
, the weights of the sum statistic are simply the logarithm of the amended Odds Ratio of each variant (as in Dai et al 2012). Alternative values like c.param=1.64
or c.param=1.28
are suggested in Feng et al (2011). There is no imputation for the missing data. Missing values are simply ignored in the computations.
Dai Y, Jiang R, Dong J (2012) Weighted selective collapsing strategy for detecting rare and common variants in genetic association study. BMC Genetics, 13:7
WSS
## Not run:
#
# # number of cases
# cases = 500
#
# # number of controls
# controls = 500
#
# # total (cases + controls)
# total = cases + controls
#
# # phenotype vector
# phenotype = c(rep(1, cases), rep(0, controls))
#
# # genotype matrix with 10 variants (random data)
# set.seed(123)
# genotype = matrix(rbinom(total*10, 2, 0.05), nrow=total, ncol=10)
#
# # apply ORWSS with c.param=NULL and 500 permutations
# myorwss1 = ORWSS(phenotype, genotype, c.param=NULL, perm=100)
# myorwss1
#
# # apply ORWSS with c.param=1.64 (see Feng et al 2011)
# myorwss2 = ORWSS(phenotype, genotype, c.param=1.64, perm=100)
# myorwss2
# ## End(Not run)
Run the code above in your browser using DataLab