Description Usage Arguments Value Examples
A single-point association test for familial or population data
1 2 3 |
formula |
referring to the column(s) in |
phenodata |
a data frame containing columns mentioned in |
genodata |
an object with genotypes to analyze. Several formats are allowed: |
kin |
a square symmetric matrix giving the pairwise kinship coefficients between analyzed
individuals. Under default |
nullmod |
an object containing parameter estimates under the null model. Setting |
regions |
an object assigning regions for genetic variants in |
mode |
the mode of inheritance: "add", "dom" or "rec" for additive, dominant or recessive mode, respectively. For dominant (recessive) mode genotypes will be recoded as AA = 0, Aa = 1 and aa = 1 (AA = 0, Aa = 0 and aa = 1), where a is a minor allele. Default mode is additive. |
ncores |
number of CPUs for parallel calculations. Default = 1. |
return.time |
a logical value indicating whether the running time should be returned. |
impute.method |
a method for imputation of missing genotypes. It can be either "mean" (default) or "blue". If "mean" the genotypes will be imputed by the simple mean values. If "blue" the best linear unbiased estimates (BLUEs) of mean genotypes will be calculated taking into account the relationships between individuals [McPeek, et al., 2004, DOI: 10.1111/j.0006-341X.2004.00180.x] and used for imputation. |
write.file |
output file name. If specified, output (as it proceeds) will be written to the file. |
... |
other arguments that could be passed to |
A list with values:
results |
a data frame containing P values, estimates of betas and their s.e., MAFs and sample size for each of analyzed variants. |
nullmod |
an object containing the estimates of the null model parameters: heritability (h2), total variance (total.var), estimates of fixed effects of covariates (alpha), the gradient (df), and the total log-likelihood (logLH). |
time |
If |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | data(example.data)
## Run single.point analysis for all variants in genodata (default):
out <- single.point(trait ~ age + sex, phenodata, genodata, kin)
## Run single.point analysis for regions defined in snpdata$gene and with
## null model parameters obtained in the first run:
out <- single.point(trait ~ age + sex, phenodata, genodata, kin,
out$nullmod, regions = snpdata$gene)
## Run single.point analysis parallelized on two cores (this will require
## 'foreach' and 'doParallel' R-packages installed and
## cores available):
out <- single.point(trait ~ age + sex, phenodata, genodata, kin,
out$nullmod, ncores = 2)
## Run single.point analysis with genotypes in PLINK binary data format:
bedFile <- system.file("testfiles/sample.bed",
package = "FREGAT")
phe <- data.frame(trait = rnorm(120))
out <- single.point(trait, phe, bedFile)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.