Description Usage Arguments Details Value Note Author(s) See Also Examples
Performs differential binding affinity analysis. Performs default generation of a consensus peakset, read counting, normalization, and setting up of contrasts if they have not been specified.
1 2 3 4 5 |
DBA |
Either a If no blacklist or greylists are included,
a call will be made to
If no counts are included, a default consensus will be formed
and read counts computed via a call to
If no normalization has been specified,
the reads will be normalized via a call to
If no contrasts are specified ( |
method |
Underlying method, or vector of methods, by which to analyze differential binding affinity. Supported methods:
|
design |
If present and a character string, will be used as the design formula for the analysis, replacing any previously established design if present. If See |
bBlacklist |
If |
bGreylist |
If |
bRetrieveAnalysis |
If changed from
An analysis object will only be successfully returned if there is at
least one contrast utilizing an explicit design
(see |
bReduceObjects |
logical indicating whether strip the analysis objects of unnecessary
fields to save memory.
If it is desired to use the |
bParallel |
logical indicating that the analyses is to be done in parallel using multicore (one process for each contrast for each method, plus an additional process per method). |
In general, prior to calling dba.analyze
, dba.count
should have been run.
If no contrasts have been established prior to invoking dba.analyze
,
then the default set of contrasts will be added using (dba.contrast
).
If no normalization parameters have been supplied by
calling dba.normalize
,
default normalization parameters will be used.
See the DBA User Guide for more details on how
the edgeR
and DESeq2
analyses are carried out.
DBA object with results of analysis added to DBA$contrasts
.
Alternatively, an analysis object (either a DESeqDataSet
or a DGEList
) if bRetrieveAnalysis
if not FALSE
.
If there is a blocking factor for the contrast(s) specified using a
previous call to dba.contrast
with design=FALSE
,
a multi-factor analysis will automatically be carried out in addition
to a single factor analysis.
Rory Stark
dba.blacklist
, dba.count
,
dba.contrast
, dba.normalize
,
dba.report
1 2 3 4 5 6 7 8 9 10 | data(tamoxifen_counts)
dba.analyze(tamoxifen)
tamoxifen <- dba.analyze(tamoxifen, method=DBA_ALL_METHODS,
design="~Tissue + Condition")
dba.show(tamoxifen, bContrasts=TRUE)
dba.analyze(tamoxifen, bRetrieveAnalysis=TRUE)
edger.object <- dba.analyze(tamoxifen, bRetrieveAnalysis=DBA_EDGER)
class(edger.object)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.