View source: R/mppGE_proc_fast.R
mppGE_proc_fast | R Documentation |
QTL detection in MPP characterized in multiple environments using 'fast' algorithm.
mppGE_proc_fast( pop.name = "MPP", trait.name = "trait1", mppData, trait, EnvNames = NULL, Q.eff = "par", VCOV = "UN", thre.cof = 4, win.cof = 50, window = 20, thre.QTL = 4, win.QTL = 20, text.size = 18, n.cores = 1, maxIter = 100, msMaxIter = 100, verbose = TRUE, output.loc = NULL )
pop.name |
|
trait.name |
|
mppData |
An object of class |
trait |
|
EnvNames |
|
Q.eff |
|
VCOV |
VCOV |
thre.cof |
|
win.cof |
|
window |
|
thre.QTL |
|
win.QTL |
|
text.size |
|
n.cores |
|
maxIter |
maximum number of iterations for the lme optimization algorithm. Default = 100. |
msMaxIter |
maximum number of iterations for the optimization step inside the lme optimization. Default = 100. |
verbose |
|
output.loc |
Path where a folder will be created to save the results. Default = NULL. |
The procedure is the following:
Simple interval mapping (SIM) to select cofactor
(mppGE_SIM_fast
).
Composite interval mapping (CIM) with selected cofactors
(mppGE_CIM_fast
).
Estimation of QTLs additive allelic effect
(QTL_effect_GE
).
Estimation of the global QTLs effect R squared and individual QTL effect
R squared (QTL_R2_GE
).
Return:
List containing the following items:
n.QTL |
Number of detected QTLs. |
cofactors |
|
QTL |
|
Q_eff |
|
R2 |
|
Some output files are also saved at the specified location
(output.loc
):
The SIM and CIM results in a RData file (SIM.RData, CIM.RData).
The list of cofactors (cofactors.RData).
The list of QTL (QTLs.RData).
The list of QTL allelic effects (QTL_effects.RData).
The QTL R squared statistics (QTL_R2.RData)
The number of detected QTLs and adjusted R2 (Glb_res.RData)
The plot of the CIM profile (QTL_profile.pdf) with dotted vertical
lines representing the cofactors positions and the
plot of the genetic effects per cross or parents obtained with
plot_genEffects_GE
(gen_eff.pdf) with dashed
lines representing the QTL positions.
Vincent Garin
mppGE_CIM_fast
,
mppGE_SIM_fast
,
QTL_effect_GE
,
QTL_R2_GE
## Not run: data(mppData_GE) # Specify a location where your results will be saved my.loc <- tempdir() QTL <- mppGE_proc_fast(pop.name = 'EUNAM', trait.name = 'DMY', mppData = mppData_GE, trait = c('DMY_CIAM', 'DMY_TUM'), EnvNames = c('CIAM', 'TUM'), Q.eff = 'par', thre.cof = 3, thre.QTL = 3, verbose = FALSE, output.loc = my.loc) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.