Nothing
### =========================================================================
### "sgraph" (and related) methods
### -------------------------------------------------------------------------
setOldClass("igraph")
.EDGE_WEIGHTS <- c(1, 0.2, 0.1, 0.4)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### .make_igraph_from_sgedges()
###
### 'sgedges' must be a data.frame as returned by:
### sgedges( , keep.dup.edges=TRUE)
### or a DataFrame as returned by:
### sgedges( , keep.dup.edges=FALSE)
### Valid extra cols are: "label", "label.color", "lty", "color", "width"
### and "txweight". They are used to set graphical parameters on the edges.
.precook_igraph_edges_from_sgedges <- function(sgedges)
{
required_colnames <- c("from", "to", "ex_or_in", "tx_id")
extra_colnames <- c("label", "label.color", "lty", "color",
"width", "txweight")
extract_colnames <- c(required_colnames,
intersect(extra_colnames, colnames(sgedges)))
ans <- sgedges[ , extract_colnames, drop=FALSE]
ex_or_in <- ans[ , "ex_or_in"]
ex_or_in_levels <- levels(ex_or_in)
if (!identical(ex_or_in_levels, EX_OR_IN_LEVELS2)
&& !identical(ex_or_in_levels, EX_OR_IN_LEVELS))
stop("\"ex_or_in\" column has invalid levels")
if (!("label.color" %in% extract_colnames))
ans$label.color <- "blue"
if (!("lty" %in% extract_colnames))
ans$lty <- c("solid", "solid", "dashed", "solid")[ex_or_in]
if (!("color" %in% extract_colnames))
ans$color <- c("orange", "darkgrey", "grey", "black")[ex_or_in]
if (!("width" %in% extract_colnames)
&& "txweight" %in% extract_colnames) {
min_txweight <- min(ans$txweight)
if (min_txweight < 0L) {
warning("'txweight' column contains negative values. Cannot use ",
"it to set the widths of the edges.")
} else {
max_txweight <- max(ans$txweight)
if (max_txweight <= 0L) {
warning("'txweight' column has no positive values. Cannot use ",
"it to set the widths of the edges.")
} else {
#ans$width <- 25.0 * ans$txweight / max(ans$txweight)
ans$width <- ans$txweight
}
}
}
ans
}
.make_igraph <- function(d)
{
## Prepare the 'vertices' argument to pass to graph.data.frame().
nodes <- sgnodes(d)
color <- c("gray", rep.int("white", length(nodes)-2L), "gray")
label.color <- "black"
vertices <- data.frame(name=nodes, color=color, label.color=label.color)
## Make the igraph object.
g <- graph.data.frame(d, vertices=vertices)
layout.kamada.kawai.deterministic <- function(...)
{
set.seed(33L)
layout.kamada.kawai(...)
}
## Set its layout attribute.
g$layout <- layout.kamada.kawai.deterministic
#g$layout <- layout.sgraph
g
}
### 'sgedges0' must be a data.frame as returned by:
### sgedges( , keep.dup.edges=TRUE)
.make_igraph_from_sgedges0 <- function(sgedges0, tx_id.as.edge.label=FALSE)
{
if (!is.data.frame(sgedges0))
stop("'sgedges0' must be a data.frame")
if (!isTRUEorFALSE(tx_id.as.edge.label))
stop("'tx_id.as.edge.label' must be TRUE or FALSE")
d <- .precook_igraph_edges_from_sgedges(sgedges0)
if (tx_id.as.edge.label)
d$label <- d$tx_id
.make_igraph(d)
}
### 'sgedges' must be a DataFrame as returned by:
### sgedges( , keep.dup.edges=FALSE)
### or by:
### rsgedges( )
.make_igraph_from_sgedges <- function(sgedges, tx_id.as.edge.label=FALSE)
{
if (!is(sgedges, "DataFrame"))
stop("'sgedges' must be a DataFrame")
if (!isTRUEorFALSE(tx_id.as.edge.label))
stop("'tx_id.as.edge.label' must be TRUE or FALSE")
d <- .precook_igraph_edges_from_sgedges(sgedges)
if (tx_id.as.edge.label)
d$label <- sapply(d$tx_id, base::paste, collapse=",")
d$tx_id <- NULL
## Turning 'd' into an ordinary data.frame. (Looks like 'as.data.frame()'
## on a DataFrame ignores the 'stringsAsFactors' arg so we use
## 'data.frame(as.list())' instead.)
d <- data.frame(as.list(d), stringsAsFactors=FALSE)
.make_igraph(d)
}
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### sgraph() extractor
###
### Returns the splicing graph in an Ragraph object.
###
setGeneric("sgraph", signature="x",
function(x, keep.dup.edges=FALSE, tx_id.as.edge.label=FALSE,
as.igraph=FALSE)
standardGeneric("sgraph")
)
setMethod("sgraph", "ANY",
function(x, keep.dup.edges=FALSE, tx_id.as.edge.label=FALSE,
as.igraph=FALSE)
{
sgedges <- sgedges(x, keep.dup.edges=keep.dup.edges)
sgraph(sgedges, tx_id.as.edge.label=tx_id.as.edge.label,
as.igraph=as.igraph)
}
)
setMethod("sgraph", "data.frame",
function(x, keep.dup.edges=FALSE, tx_id.as.edge.label=FALSE,
as.igraph=FALSE)
{
if (!identical(keep.dup.edges, FALSE))
stop("the 'keep.dup.edges' arg is not supported ",
"when 'x' is a data.frame")
igraph <- .make_igraph_from_sgedges0(x,
tx_id.as.edge.label=tx_id.as.edge.label)
sgraph(igraph, as.igraph=as.igraph)
}
)
setMethod("sgraph", "DataFrame",
function(x, keep.dup.edges=FALSE, tx_id.as.edge.label=FALSE,
as.igraph=FALSE)
{
if (!identical(keep.dup.edges, FALSE))
stop("the 'keep.dup.edges' arg is not supported ",
"when 'x' is a DataFrame")
igraph <- .make_igraph_from_sgedges(x,
tx_id.as.edge.label=tx_id.as.edge.label)
sgraph(igraph, as.igraph=as.igraph)
}
)
setMethod("sgraph", "igraph",
function(x, keep.dup.edges=FALSE, tx_id.as.edge.label=FALSE,
as.igraph=FALSE)
{
if (!identical(keep.dup.edges, FALSE))
stop("the 'keep.dup.edges' arg is not supported ",
"when 'x' is an igraph object")
if (!identical(tx_id.as.edge.label, FALSE))
stop("the 'tx_id.as.edge.label' arg is not supported ",
"when 'x' is an igraph object")
if (!isTRUEorFALSE(as.igraph))
stop("'as.igraph' must be TRUE or FALSE")
if (as.igraph) {
## Need to load the igraph package so the user can display, plot,
## and manipulate the returned object.
library(igraph)
return(x) # no-op
}
make_Ragraph_from_igraph(x)
}
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### "plot" method.
###
setMethod("plot", c("SplicingGraphs", "missing"),
function(x, y, ...) plot(sgraph(x), ...)
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### slideshow()
###
slideshow <- function(x)
{
if (!is(x, "SplicingGraphs"))
stop("'x' must be a SplicingGraphs object")
x_eltNROWS <- elementNROWS(x)
for (i in seq_along(x)) {
gene_id <- names(x_eltNROWS)[i]
ntx <- x_eltNROWS[[i]]
cat("Plotting splicing graph for gene \"", gene_id, "\" ",
"(", ntx, " transcript(s)). ", sep="")
plot(x[i])
cat("Press <Enter> for next...")
readLines(n=1L)
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.