Description Usage Arguments Details Value Author(s) References See Also Examples
This method extracts iteration diagnostics and mainloci from the
qb
object and returns a data frame (of class qb.sliceone
).
Generic summary and plot can be used for display.
1 2 3 4 5 6 7 8 9 10 | qb.sliceone(qbObject, slice, epistasis = TRUE, scan, type.scan, covar,
adjust.covar, chr, sum.scan = "yes", min.iter = 1,
aggregate = TRUE, smooth = 3, weight = c("sqrt","count","none","atten","ratten"),
split.chr, center.type = c("mode","mean","scan"), verbose = FALSE, ...)
## S3 method for class 'qb.sliceone'
summary(object, chr, ...)
## S3 method for class 'qb.sliceone'
print(x, ...)
## S3 method for class 'qb.sliceone'
plot(x, ..., scan, auto.par = TRUE)
|
qbObject |
An object of class |
object |
Object of class |
x |
Object of class |
slice |
Chromosomes to slice upon. |
epistasis |
If |
scan |
Vector of diagnostics to scan (see below). |
type.scan |
Type of scan; default is "heritability" (see below). |
covar |
Covariate(s) to include; default is |
adjust.covar |
Adjustments to covariates. Default is
|
chr |
Chromosomes to subset on if not |
sum.scan |
Sum over |
min.iter |
Include only samples at loci if minimum number of
iterations is at least |
aggregate |
Aggregate effects into main, epis, gbye if |
smooth |
Degree of nearest neighbor smoothing to determine maxima. |
weight |
Weights to use for nearest neighbor
smoothing. |
split.chr |
Split summary by multiple QTL per chromosome (see
details for |
center.type |
Method to find QTL loci. See details. |
verbose |
Give verbose feedback if |
auto.par |
Automatic setting of plot parameters for multiple
plots if |
... |
Arguments to be passed along. |
All arguments except slice
agree with qb.scanone
. The
slice specifies a chromosome upon which to slice, yielding a 1-D scan of
what might be seen on a 2-D scan using qb.scantwo
. One
advantage of qb.sliceone
is that you can get 2-QTL cell means for the
slice chromosome and the scanned chromosomes.
The summary invokes summary.qb.scanone
to summarize slice by
chromosome. The plot will by default give separate plots for each slice
genotype and use plot.qb.scanone
to scan the chromosomes. If
scan
is specified for plot.qb.sliceone
, then those elements
will be plotted. For instance, plot(x,scan="slice")
will plot the
running average locus on the slice chromosome with respect to the other
chromosomes.
qb.sliceone
returns an object of class qb.sliceone
(a data frame) containing
effects selected according to type.scan
and scan
.
Brian S. Yandell, yandell@stat.wisc.edu
summary.qb.scanone
, plot.qb.scanone
1 2 3 4 5 6 7 8 9 10 11 | data(qbExample)
## Get profile of heritability.
temp <- qb.sliceone(qbExample, slice = 1, chr = 2:3)
summary(temp)
plot(temp)
## Get profile of cell means.
temp <- qb.sliceone(qbExample, slice = 1, chr = 2:3, type.scan = "cellmean")
summary(temp)
plot(temp)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.