Description Usage Arguments Value Examples
With the subsetByCoord
function data from a SequenceData
,
SequenceDataSet
, SequenceDataList
, Modifier
or
ModifierSet
object can be subset to positions as defined in
coord
.
If coord
contains a column mod
and x
is a
Modifier
object, it will be filtered to identifiers matching the
modType
of x
. To disable this
behaviour remove the column mod
from coord
or set type =
NA
labelByCoord
functions similarly. It will return a
SplitDataFrameList
, which matches the dimensions of the aggregated
data plus the labels
column, which contains logical values to indicate
selected positions.
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 | subsetByCoord(x, coord, ...)
labelByCoord(x, coord, ...)
## S4 method for signature 'Modifier,GRanges'
subsetByCoord(x, coord, ...)
## S4 method for signature 'Modifier,GRangesList'
subsetByCoord(x, coord, ...)
## S4 method for signature 'ModifierSet'
subset(x, name, pos = 1L, ...)
## S4 method for signature 'ModifierSet,GRanges'
subsetByCoord(x, coord, ...)
## S4 method for signature 'ModifierSet,GRangesList'
subsetByCoord(x, coord, ...)
## S4 method for signature 'Modifier,GRanges'
labelByCoord(x, coord, ...)
## S4 method for signature 'Modifier,GRangesList'
labelByCoord(x, coord, ...)
## S4 method for signature 'ModifierSet,GRanges'
labelByCoord(x, coord, ...)
## S4 method for signature 'ModifierSet,GRangesList'
labelByCoord(x, coord, ...)
## S4 method for signature 'SplitDataFrameList,GRanges'
subsetByCoord(x, coord, ...)
## S4 method for signature 'SequenceData'
subset(x, name, pos = 1L, ...)
## S4 method for signature 'SequenceData,GRanges'
subsetByCoord(x, coord, ...)
## S4 method for signature 'SequenceData,GRangesList'
subsetByCoord(x, coord, ...)
## S4 method for signature 'SequenceDataSet'
subset(x, name, pos = 1L, ...)
## S4 method for signature 'SequenceDataSet,GRanges'
subsetByCoord(x, coord, ...)
## S4 method for signature 'SequenceDataSet,GRangesList'
subsetByCoord(x, coord, ...)
## S4 method for signature 'SequenceDataList'
subset(x, name, pos = 1L, ...)
## S4 method for signature 'SequenceDataList,GRanges'
subsetByCoord(x, coord, ...)
## S4 method for signature 'SequenceDataList,GRangesList'
subsetByCoord(x, coord, ...)
## S4 method for signature 'SequenceData,GRanges'
labelByCoord(x, coord, ...)
## S4 method for signature 'SequenceData,GRangesList'
labelByCoord(x, coord, ...)
## S4 method for signature 'SequenceDataSet,GRanges'
labelByCoord(x, coord, ...)
## S4 method for signature 'SequenceDataSet,GRangesList'
labelByCoord(x, coord, ...)
## S4 method for signature 'SequenceDataList,GRanges'
labelByCoord(x, coord, ...)
## S4 method for signature 'SequenceDataList,GRangesList'
labelByCoord(x, coord, ...)
|
x |
a |
coord |
coordinates of position to subset to. Either a |
... |
Optional parameters:
|
name |
Optional: Limit results to one specific transcript. |
pos |
Optional: Limit results to a specific position. |
If 'x' is a
SequenceData
or
Modifier
: a SplitDataFrameList
with elments per transcript.
SequenceDataSet
,
SequenceDataList
or
ModifierSet
: a SimpleList
of
SplitDataFrameList
with elments per transcript.
1 2 3 4 5 6 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.