Description Usage Arguments Value See Also Examples
For the Modifier and ModifierSet classes a number of functions
are implemented to access the data stored by the object.
The validAggregate and validModification functions check if
settings have been modified, after the data was
loaded. This potentially invalidates them. To update the data, run the
aggregate or the modify function.
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | bamfiles(x)
mainScore(x)
modifierType(x)
modType(x)
dataType(x)
sequenceData(x)
sequences(x, ...)
validAggregate(x)
validModification(x)
## S4 method for signature 'Modifier'
show(object)
## S4 method for signature 'Modifier'
bamfiles(x)
## S4 method for signature 'Modifier'
conditions(object)
## S4 method for signature 'Modifier'
mainScore(x)
## S4 method for signature 'Modifier'
modifierType(x)
## S4 method for signature 'Modifier'
modType(x)
## S4 method for signature 'Modifier'
dataType(x)
## S4 method for signature 'Modifier'
names(x)
## S4 method for signature 'Modifier'
ranges(x)
## S4 method for signature 'Modifier'
replicates(x)
## S4 method for signature 'Modifier'
seqinfo(x)
## S4 method for signature 'Modifier'
seqtype(x)
## S4 method for signature 'Modifier'
sequenceData(x)
## S4 method for signature 'Modifier'
sequences(x, modified = FALSE)
## S4 method for signature 'Modifier'
validAggregate(x)
## S4 method for signature 'Modifier'
validModification(x)
## S4 method for signature 'ModifierSet'
show(object)
## S4 method for signature 'ModifierSet'
bamfiles(x)
## S4 method for signature 'ModifierSet'
conditions(object)
## S4 method for signature 'ModifierSet'
mainScore(x)
## S4 method for signature 'ModifierSet'
modifications(x, perTranscript = FALSE)
## S4 method for signature 'ModifierSet'
modifierType(x)
## S4 method for signature 'ModifierSet'
modType(x)
## S4 method for signature 'ModifierSet'
dataType(x)
## S4 method for signature 'ModifierSet'
ranges(x)
## S4 method for signature 'ModifierSet'
replicates(x)
## S4 method for signature 'ModifierSet'
seqinfo(x)
## S4 method for signature 'ModifierSet'
seqtype(x)
## S4 method for signature 'ModifierSet'
sequences(x, modified = FALSE)
|
x, object |
a |
... |
Additional arguments. |
modified |
For |
perTranscript |
|
modifierType: a character vector with the appropriate class
Name of a Modifier.
modType: a character vector with the modifications detected by
the Modifier class.
seqtype: a single character value defining if either
"RNA" or "DNA" modifications are detected by the Modifier class.
mainScore: a character vector.
sequenceData: a SequenceData object.
modifications: a GRanges or GRangesList object
describing the found modifications.
seqinfo: a Seqinfo object.
sequences: a RNAStingSet object.
ranges: a GRangesList object with each element per
transcript.
bamfiles: a BamFileList object.
validAggregate: TRUE or FALSE. Checks if current
settings are the same for which the data was aggregate
validModification: TRUE or FALSE. Checks if
current settings are the same for which modification were found
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | data(msi,package="RNAmodR")
mi <- msi[[1]]
modifierType(mi) # The class name of the Modifier object
modifierType(msi)
seqtype(mi)
modType(mi)
mainScore(mi)
sequenceData(mi)
modifications(mi)
# general accessors
seqinfo(mi)
sequences(mi)
ranges(mi)
bamfiles(mi)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.