Description Usage Arguments Details Value See Also Examples
The parameters slot holds the parameter values
used in an sRNA-diff approach as a named list. Default values
exist for parameters, but these can also be supplied as input
values in the useParameters argument of the srnadiff
function or using the assignment function parameters<-.
1 2 3 4 5 6 7 8 | ## S4 method for signature 'srnadiffExp'
parameters(object)
## S4 replacement method for signature 'srnadiffExp'
parameters(object) <- value
## S3 method for class 'srnadiff_par'
print(x, ...)
|
object |
An |
value |
A named |
x |
The first element of the parameters used by an |
... |
The other elements of the parameters |
Parameters in an sRNA-diff approach.
minDepthThe cutoff to filter the base-level
coverage. Bases where at least one sample has (normalized)
coverage greater than minDepth be been retained.
Default to 10.
minSizeThe minimum size (in base-pairs) of the
regions to be found. Default to 18.
maxSizeThe maximum size (in base-pairs) of the
regions to be found. Default to 1000000.
minGapThe minimum gap between regions. Regions
separated by a gap of at most minGap positions
are merged. Default to 100.
maxDiffThe maximum number of different bases between
two regions. Near-identical regions are collapsed.
Only regions with at most maxDiff different
positions are considered identicals and are collapsed
into one single region. Default to 20.
minOverlapThis parameters is used in the construction
of the countMatrix matrix. Only reads (ranges)
with a minimum of minOverlap overlapping each expressed
region are considered to be overlapping. Default to 10.
noDiffToDiffInitial transition probability from
no differentially expressed state to differentially expressed.
Default to 0.001.
diffToNoDiffInitial transition probability from
differentially expressed state to no differentially expressed.
Default to 0.000001.
emissionEmission probability. Default to 0.9.
emissionThresholdEmission threshold. A real number
between 0 and 1. Default to 0.1.
cutoffThe cutoff used in the naive method to
determine candidate regions. Default to 1.
minLogFCThe minimun sliding threshold used in the
IR method. Default to 0.5.
The named list of the parameters used in the analysis.
useParameters argument in srnadiff function.
1 2 3 4 5 6 7 8 9 | srnaExp <- srnadiffExample()
srnaExp <- srnadiff(srnaExp)
print(parameters(srnaExp))
parameters(srnaExp) <- list("minSize" = 1, "maxSize" = 1500)
srnaExp <- srnadiffExample()
srnaExp <- srnadiff(srnaExp)
print(parameters(srnaExp))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.