View source: R/mppGE_oneS_proc.R
mppGE_oneS_proc | R Documentation |
One-stage QTL detection analysis in MPP characterized in multiple environments.
mppGE_oneS_proc( pop.name = "MPP", trait.name = "trait1", plot_data, mppData, trait, EnvNames = NULL, Q.eff = "cr", VCOV = "CS_CSRT", exp_des_form, 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, verbose = TRUE, output.loc = NULL, workspace = 8e+06 )
pop.name |
|
trait.name |
|
plot_data |
|
mppData |
Object of class |
trait |
|
EnvNames |
|
Q.eff |
|
VCOV |
VCOV |
exp_des_form |
|
plot.gen.eff |
|
thre.cof |
|
win.cof |
|
N.cim |
|
window |
|
thre.QTL |
|
win.QTL |
|
alpha |
|
Qeff_est |
|
text.size |
|
verbose |
|
output.loc |
Path where a folder will be created to save the results. Default = NULL. |
workspace |
Size of workspace for the REML routines measured in double precision words (groups of 8 bytes). The default is workspace = 8e6. |
The procedure is the following:
Simple interval mapping (SIM) to select cofactor
(mppGE_oneS_SIM
).
Composite interval mapping (CIM) with selected cofactors
(mppGE_oneS_CIM
).
Backward elimination on the list of QTLs
(mppGE_oneS_back_elim
).
Optional estimation of QTLs additive allelic effect
(mppGE_oneS_QTL_effects
).
Return:
List containing the following items:
n.QTL |
Number of detected QTLs. |
cofactors |
|
QTL |
|
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 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_oneS_CIM
,
mppGE_oneS_SIM
,
mppGE_oneS_back_elim
,
mppGE_oneS_QTL_effects
plot_genEffects_GE
,
## Not run: library(asreml) data(mppData_GE) data(plot_data) # Specify a location where your results will be saved my.loc <- tempdir() QTL <- mppGE_oneS_proc(pop.name = 'EUNAM', trait.name = 'DMY', plot_data = plot_data, mppData = mppData_GE, trait = 'DMY', EnvNames = c('CIAM', 'TUM'), Q.eff = 'par', exp_des_form = 'env:Rep + env:Rep:Block', 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.