Description Usage Arguments Value Examples
With the plotData
and plotDataByCoord
functions data
from a SequenceData
, SequenceDataSet
, SequenceDataList
,
Modifier
or ModifierSet
object can be visualized.
Internally the functionality of the Gviz
package is used. For each
SequenceData
and Modifier
class the getDataTrack
is
implemented returning a DataTrack
object
from the Gviz
package.
Positions to be visualized are selected by defining a genomic coordinate,
for which x
has to contain data.
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 | plotData(x, name, from = 1L, to = 30L, type, ...)
plotDataByCoord(x, coord, type, window.size = 15L, ...)
getDataTrack(x, name, ...)
## S4 method for signature 'Modifier,GRanges'
plotDataByCoord(x, coord, type = NA, window.size = 15L, ...)
## S4 method for signature 'Modifier'
plotData(
x,
name,
from,
to,
type = NA,
showSequenceData = FALSE,
showSequence = TRUE,
showAnnotation = FALSE,
...
)
## S4 method for signature 'Modifier'
getDataTrack(x, name = name, ...)
## S4 method for signature 'ModifierSet,GRanges'
plotDataByCoord(x, coord, type = NA, window.size = 15L, ...)
## S4 method for signature 'ModifierSet'
plotData(
x,
name,
from,
to,
type = NA,
showSequenceData = FALSE,
showSequence = TRUE,
showAnnotation = FALSE,
...
)
## S4 method for signature 'SequenceData,GRanges'
plotDataByCoord(x, coord, type = NA, window.size = 15L, ...)
## S4 method for signature 'SequenceData'
plotData(
x,
name,
from,
to,
perTranscript = FALSE,
showSequence = TRUE,
showAnnotation = FALSE,
...
)
## S4 method for signature 'SequenceData'
getDataTrack(x, name = name, ...)
## S4 method for signature 'SequenceDataList'
getDataTrack(x, name = name, ...)
## S4 method for signature 'SequenceDataList,GRanges'
plotDataByCoord(x, coord, type = NA, window.size = 15L, ...)
## S4 method for signature 'SequenceDataList'
plotData(
x,
name,
from,
to,
perTranscript = FALSE,
showSequence = TRUE,
showAnnotation = FALSE,
...
)
## S4 method for signature 'SequenceDataSet'
getDataTrack(x, name = name, ...)
## S4 method for signature 'SequenceDataSet,GRanges'
plotDataByCoord(x, coord, type = NA, window.size = 15L, ...)
## S4 method for signature 'SequenceDataSet'
plotData(
x,
name,
from,
to,
perTranscript = FALSE,
showSequence = TRUE,
showAnnotation = FALSE,
...
)
|
x |
a |
name |
Only for |
from |
Only for |
to |
Only for |
type |
the data type of data show as data tracks. |
... |
optional parameters:
|
coord |
coordinates of a positions to subset to as a
|
window.size |
integer value for the number of positions on the left and
right site of the selected positions included in the plotting (default:
|
showSequenceData |
|
showSequence |
|
showAnnotation |
|
perTranscript |
|
a plot send to the active graphic device
1 2 3 4 5 6 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.