plotData | R Documentation |
plotData
visualizes objects from all different
Rprimer classes.
plotData(x, ...)
## S4 method for signature 'RprimerProfile'
plotData(x, type = "overview", highlight = NULL, rc = FALSE)
## S4 method for signature 'RprimerOligo'
plotData(x)
## S4 method for signature 'RprimerAssay'
plotData(x)
## S4 method for signature 'RprimerMatchOligo'
plotData(x)
## S4 method for signature 'RprimerMatchAssay'
plotData(x)
x |
An |
... |
Optional arguments for |
type |
For |
highlight |
For |
rc |
For See examples below. |
A plot.
plotData(RprimerProfile)
:
plotData(RprimerOligo)
:
plotData(RprimerAssay)
:
plotData(RprimerMatchOligo)
:
plotData(RprimerMatchAssay)
:
#### Plot an RprimerProfile object
data("exampleRprimerProfile")
prof <- exampleRprimerProfile
## Plot an overview
plotData(prof, highlight = c(500, 1000))
## Select a region of interest
roi <- prof[prof$position >= 500 & prof$position <= 550, ]
## Plot an overview of the roi
plotData(roi)
## Plot the nucleotide distribution of the roi
plotData(roi, type = "nucleotide")
#### Plot an RprimerOligo object
data("exampleRprimerOligo")
plotData(exampleRprimerOligo)
#### Plot an RprimerAssay object
data("exampleRprimerAssay")
plotData(exampleRprimerAssay)
#### Plot an RprimerMatchOligo object
data("exampleRprimerMatchOligo")
plotData(exampleRprimerMatchOligo)
#### Plot an RprimerMatchAssay object
data("exampleRprimerMatchAssay")
plotData(exampleRprimerMatchAssay)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.