Description Usage Arguments Value Creation
The ModifierSet class allows multiple
Modifier objects to be created from the same
annotation and sequence data varying only the bam input files.
In addition the comparison of samples is also done via calling functions on
the ModifierSet objects.
The ModifierSet is a virtual class, which derives from the
SimpleList class with the slot elementType = "Modifier". The
ModifierSet class has to be implemented for each specific analysis.#'
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | ModifierSet(className, x, annotation, sequences, seqinfo, ...)
## S4 method for signature 'list'
ModifierSet(
className,
x,
annotation = NULL,
sequences = NULL,
seqinfo = NULL,
...
)
## S4 method for signature 'character'
ModifierSet(
className,
x,
annotation = NULL,
sequences = NULL,
seqinfo = NULL,
...
)
## S4 method for signature 'BamFileList'
ModifierSet(
className,
x,
annotation = NULL,
sequences = NULL,
seqinfo = NULL,
...
)
## S4 method for signature 'Modifier'
ModifierSet(className, x, annotation, sequences, seqinfo, ...)
|
className |
The name of the class which should be constructed. |
x |
the input which can be of the following types
|
annotation |
annotation data, which must match the information contained
in the BAM files. This is parameter is only required, if |
sequences |
sequences matching the target sequences the reads were
mapped onto. This must match the information contained in the BAM files. This
is parameter is only required, if |
seqinfo |
An optional |
... |
Additional otpional parameters:
All other arguments will be passed onto the |
a ModifierSet object of type className
The input files have to be provided as a list of elements. Each
element in itself must be valid for the creation of Modifier
object (Have a look at the man page for more details) and must be named.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.