plotVariants {SGSeq} | R Documentation |
Plot splice graph and heatmap of splice variant frequencies.
plotVariants(x, eventID = NULL, tx_view = FALSE, cex = 1, transform = function(x) { x }, Rowv = NULL, distfun = dist, hclustfun = hclust, margin = 0.2, RowSideColors = NULL, square = FALSE, cexRow = 1, cexCol = 1, labRow = colnames(x), col = colorRampPalette(c("black", "gold"))(256), zlim = c(0, 1), heightPanels = c(1, 2), expand_variants = FALSE, ...)
x |
|
eventID |
Single event identifier used to subset |
tx_view |
Plot transcripts instead of splice graph (experimental) |
cex |
Scale parameter for feature labels and annotation |
transform |
Transformation applied to splice variant frequencies |
Rowv |
Determines order of rows. Either a vector of values used to
reorder rows, or |
distfun |
Distance function used for hierarchical clustering of rows (samples) |
hclustfun |
Clustering function used for hierarchical clustering of rows (samples) |
margin |
Width of right-hand margin as fraction of width of the
graphics device. Ignored if |
RowSideColors |
Character vector (or list of character vectors)
with length(s) equal to |
square |
Logical, if |
cexRow |
Scale factor for row (sample) labels |
cexCol |
Scale factor for column (feature) labels |
labRow |
Character vector of row (sample) labels |
col |
Heatmap colors |
zlim |
Range of values for which colors should be plotted,
if |
heightPanels |
Numeric vector of length two indicating height of the top and bottom panels. |
expand_variants |
Experimental option - leave set to |
... |
further arguments passed to |
data.frame
with information on exon bins and
splice junctions included in the splice graph
Leonard Goldstein
## Not run: sgvc_annotated <- annotate(sgvc_pred, txf_ann) plotVariants(sgvc_annotated) ## End(Not run) NULL