mppGE_CIM | R Documentation |
Compute QTL models along the genome using cofactors representing other genetic positions for control.
mppGE_CIM( mppData, trait, Q.eff = "cr", VCOV = "CS_CSRT", cofactors = NULL, window = 20, plot.gen.eff = FALSE, parallel = FALSE, cluster = NULL, workspace = 8e+06 )
mppData |
An object of class |
trait |
|
Q.eff |
|
VCOV |
VCOV |
cofactors |
Object of class |
window |
|
plot.gen.eff |
|
parallel |
|
cluster |
Cluster object obtained with the function |
workspace |
Size of workspace for the REML routines measured in double precision words (groups of 8 bytes). The default is workspace = 8e6. |
Return:
CIM |
|
Vincent Garin
mppGE_SIM
, plot_genEffects_GE
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_genEffects_GE(mppData = mppData_GE, nEnv = 2, EnvNames = c('CIAM', 'TUM'), Qprof = CIM, Q.eff = 'par', QTL = Qpos, text.size = 14)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.