
Last chance! 50% off unlimited learning
Sale ends in
The function offers informative plots for an qtlRes
object.
# S3 method for qtlRes
plot(x, which=NULL, sig=0.01, verbose=TRUE,
log=FALSE, genome=NULL, pch=1, ...)
Object of class qtlRes
.
Specifies for which phenotypes the plot should be created.
Chosen significance level.
Logical, extended feedback of the function.
Logical, y-axis scale is log(base=10)-scaled.
Data frame with Chromosome names and lengths.
Plot symbol to by used.
Additional plotting parameters.
This function plots the test results of an qtlRes
object as a Manhattan plot. In case only an qtlRes
object is provided, then the genome information
are estimated from this object. Alternatively, a data frame with genome information can be provided. In this case genone
has to be a data.frame with the
two columns chr
and length
, indicating the Chromosome names (similar as the ones given in qtlRes
) and the corresponding lengths. The information
for the human genome, Ensembl build 68, is also included can be used with using the option genome="Human68"
.
# NOT RUN {
# }
# NOT RUN {
data("phenoData")
data("genotData")
qtlresult <- QTL(pheno=phenoData, geno=genotData, which = 3:4)
plot(qtlresult, which=2)
# }
Run the code above in your browser using DataLab