mppGE_proc | R Documentation |
QTL detection in MPP characterized in multiple environments.
mppGE_proc( pop.name = "MPP", trait.name = "trait1", mppData, trait, EnvNames = NULL, Q.eff = "cr", VCOV = "CS_CSRT", plot.gen.eff = FALSE, thre.cof = 4, win.cof = 50, N.cim = 1, window = 20, thre.QTL = 4, win.QTL = 20, alpha = 0.01, Qeff_est = TRUE, text.size = 18, parallel = FALSE, cluster = NULL, workspace = 8e+06, verbose = TRUE, output.loc = NULL )
pop.name |
|
trait.name |
|
mppData |
An object of class |
trait |
|
EnvNames |
|
Q.eff |
|
VCOV |
VCOV |
plot.gen.eff |
|
thre.cof |
|
win.cof |
|
N.cim |
|
window |
|
thre.QTL |
|
win.QTL |
|
alpha |
|
Qeff_est |
|
text.size |
|
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. |
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
).
Composite interval mapping (CIM) with selected cofactors
(mppGE_CIM
).
Backward elimination on the list of QTLs
(mppGE_back_elim
).
Optional estimation of QTLs additive allelic effect
(mppGE_QTL_effects
).
Return:
List containing the following items:
n.QTL |
Number of detected QTLs. |
cofactors |
|
QTL |
|
R2 |
|
Some output files are also saved at the specified location
(output.loc
):
The SIM and CIM results in a text file (SIM.txt, CIM.txt).
The list of cofactors (cofactors.txt).
The list of QTL (QTL.txt).
The QTL R squared statistics (QTL_R2.txt) (for details see
QTL_R2
).
The plot of the CIM profile (QTL_profile.pdf) with dotted vertical
lines representing the cofactors positions. If plot.gen.eff = TRUE
,
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
,
mppGE_SIM
,
mppGE_back_elim
,
mppGE_QTL_effects
,
plot_genEffects_GE
## Not run: library(asreml) data(mppData_GE) # Specify a location where your results will be saved my.loc <- tempdir() QTL <- mppGE_proc(pop.name = 'EUNAM', trait.name = 'DMY', mppData = mppData_GE, trait = c('DMY_CIAM', 'DMY_TUM'), EnvNames = c('CIAM', 'TUM'), Q.eff = 'par', plot.gen.eff = TRUE, 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.