#############
# mppGE_CIM #
#############
#' MPP GxE composite interval maping
#'
#' Compute QTL models along the genome using cofactors representing other
#' genetic positions for control.
#'
#' @param mppData An object of class \code{mppData}.
#'
#' @param trait \code{Character vector} specifying which traits (environments) should be used.
#'
#' @param Q.eff \code{Character} expression indicating the assumption concerning
#' the QTL effects: 1) "cr" for cross-specific; 2) "par" for parental; 3) "anc"
#' for ancestral; 4) "biall" for a bi-allelic. Default = "cr".
#'
#' @param VCOV VCOV \code{Character} expression defining the type of variance
#' covariance structure used. "ID" for identity, "CSRT" for within environment
#' cross-specific residual terms, "CS_CSRT" for compound symmetry with within
#' environment cross-specific residual terms. Default = "CS_CSRT".
#'
#' @param cofactors Object of class \code{QTLlist} representing a list of
#' selected marker positions obtained with the function QTL_select() or
#' a vector of \code{character} marker positions names.
#' Default = NULL.
#'
#' @param window \code{Numeric} distance (cM) on the left and the right of a
#' cofactor position where it is not included in the model. Default = 20.
#'
#' @param plot.gen.eff \code{Logical} value. If \code{plot.gen.eff = TRUE},
#' the function will save the significance of the QTL allelic effects per
#' cross/parent along the genome. These results can be visualized with the
#' function \code{\link{plot_allele_eff_GE}}. Default value = FALSE.
#'
#' @param parallel \code{Logical} value specifying if the function should be
#' executed in parallel on multiple cores. To run the function in parallel user must
#' provide clusters in the \code{cluster} argument. \strong{Parallelization is
#' only available for 'ID' model}. Default = FALSE.
#'
#' @param cluster Cluster object obtained with the function \code{makeCluster()}
#' from the parallel package. Default = NULL.
#'
#' @param workspace Size of workspace for the REML routines measured in double
#' precision words (groups of 8 bytes). The default is workspace = 8e6.
#'
#'
#' @return Return:
#'
#' \item{CIM }{\code{Data.frame} of class \code{QTLprof}. with five columns :
#' 1) QTL marker or in between position names; 2) chromosomes;
#' 3) interger position indicators on the chromosome;
#' 4) positions in centi-Morgan; and 5) -log10(p-val). And if
#' \code{plot.gen.eff = TRUE}, p-values of the cross or parental QTL allelic effects.}
#'
#' @author Vincent Garin
#'
#'
#' @seealso \code{\link{mppGE_SIM}}, \code{\link{plot_allele_eff_GE}}
#'
#'
#' @examples
#'
#' library(asreml)
#' library(mppR)
#'
#' data(mppData_GE)
#'
#' SIM <- mppGE_SIM(mppData = mppData_GE, trait = c('DMY_CIAM', 'DMY_TUM'),
#' Q.eff = 'par', plot.gen.eff = TRUE)
#'
#' cofactors <- QTL_select(Qprof = SIM, threshold = 3, window = 50)
#'
#' CIM <- mppGE_CIM(mppData = mppData_GE, trait = c('DMY_CIAM', 'DMY_TUM'),
#' Q.eff = 'par', cofactors = cofactors, plot.gen.eff = TRUE)
#'
#' Qpos <- QTL_select(Qprof = CIM, threshold = 3, window = 20)
#'
#' plot(x = CIM, QTL = Qpos)
#'
#' plot_allele_eff_GE(mppData = mppData_GE, nEnv = 2, EnvNames = c('CIAM', 'TUM'),
#' Qprof = CIM, Q.eff = 'par', QTL = Qpos, text.size = 14)
#'
#' @import ggplot2
#' @import grDevices
#' @import graphics
#' @import mppR
#' @import parallel
#' @import nlme
#' @import utils
#' @importFrom Matrix Matrix t
#' @importFrom stats anova as.formula coef complete.cases cor df.residual lm
#' @importFrom stats model.matrix pchisq pt quantile runif vcov
#'
#' @export
#'
mppGE_CIM <- function(mppData, trait, Q.eff = "cr", VCOV = "CS_CSRT",
cofactors = NULL, window = 20, plot.gen.eff = FALSE,
parallel = FALSE, cluster = NULL,
workspace = 8e6)
{
# 1. Check data format and arguments
####################################
check_mod_mppGE(mppData = mppData, trait = trait, Q.eff = Q.eff, VCOV = VCOV,
CIM = TRUE, cofactors = cofactors, QTL_ch = FALSE)
# 2. Form required elements for the analysis
############################################
### 2.1 cross matrix (cross intercept)
nEnv <- length(trait)
TraitEnv <- c(mppData$pheno[, trait])
### 2.2 Formation of the list of cofactors
if(is.character(cofactors)){
cof.pos <- which(mppData$map[, 1] %in% cofactors)
} else {
cof.pos <- which(mppData$map[, 1] %in% cofactors[, 1])
}
cof.list <- lapply(X = cof.pos, FUN = inc_mat_QTL, mppData = mppData,
Q.eff = Q.eff, order.MAF = TRUE)
### 2.3 Formation of the genome-wide and cofactors partition
# cofactor partition tells if the cofactor should be included or
# not in the model at each position.
if (is.character(cofactors)){
cofactors2 <- mppData$map[mppData$map[, 1] %in% cofactors, c(2, 4)]
} else { cofactors2 <- cofactors[, c(2, 4)] }
test.cof <- function(x, map, window) {
t1 <- map$chr == as.numeric(x[1])
t2 <- abs(map$pos.cM - as.numeric(x[2])) < window
!(t1 & t2)
}
cof.part <- apply(X = cofactors2, MARGIN = 1, FUN = test.cof,
map = mppData$map, window = window)
vect.pos <- 1:dim(mppData$map)[1]
# 3. computation of the CIM profile (genome scan)
#################################################
if (parallel) {
log.pval <- parLapply(cl = cluster, X = vect.pos, fun = QTLModelCIM_GE,
mppData = mppData, nEnv = nEnv, TraitEnv = TraitEnv,
Q.eff = Q.eff, VCOV = VCOV, cof.list = cof.list,
cof.part = cof.part, plot.gen.eff = plot.gen.eff)
} else {
log.pval <- lapply(X = vect.pos, FUN = QTLModelCIM_GE,
mppData = mppData, nEnv = nEnv, TraitEnv = TraitEnv,
Q.eff = Q.eff, VCOV = VCOV, cof.list = cof.list,
cof.part = cof.part, plot.gen.eff = plot.gen.eff,
workspace = workspace)
}
log.pval <- t(data.frame(log.pval))
if(plot.gen.eff & (VCOV == "ID")){log.pval[is.na(log.pval)] <- 1}
log.pval[, 1] <- check.inf(x = log.pval[, 1]) # check if there are -/+ Inf value
log.pval[is.na(log.pval[, 1]), 1] <- 0
# 4. form the results
#####################
CIM <- data.frame(mppData$map, log.pval)
if(plot.gen.eff){
if(Q.eff == "cr"){
Env_name <- rep(paste0("_E", 1:nEnv), each = mppData$n.cr)
Qeff_names <- paste0(rep(unique(mppData$cross.ind), 2), Env_name)
colnames(CIM)[5:dim(CIM)[2]] <- c("log10pval", Qeff_names)
} else if (Q.eff == "anc") {
Env_name <- rep(paste0("_E", 1:nEnv), each = mppData$n.par)
Qeff_names <- paste0(rep(mppData$parents, 2), Env_name)
colnames(CIM)[5:dim(CIM)[2]] <- c("log10pval", Qeff_names)
} else { # par and bi-allelic no modif for gen effects names
colnames(CIM)[5] <- "log10pval"
}
} else {colnames(CIM)[5] <- "log10pval"}
class(CIM) <- c("QTLprof", "data.frame")
### 4.1: Verify the positions for which model could not be computed
if(sum(CIM$log10pval == 0) > 0) {
if (sum(CIM$log10pval) == 0){
message("The computation of the QTL models failled for all positions.
This could be due to problem in asreml function.")
} else {
list.pos <- mppData$map[(CIM$log10pval == 0), 1]
text <- paste("The computation of the QTL model failed for the following",
"positions: ", paste(list.pos, collapse = ", "),
". This could be due to singularities or function issues.")
message(text)
}
}
return(CIM)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.