Nothing
### =========================================================================
### The strand() and `strand<-`() generics
### -------------------------------------------------------------------------
setGeneric("strand", function(x, ...) standardGeneric("strand"))
setGeneric("strand<-", function(x, ..., value) standardGeneric("strand<-"))
unstrand <- function(x)
{
strand(x) <- "*"
x
}
setGeneric("invertStrand", function(x) standardGeneric("invertStrand"))
setMethod("invertStrand", "ANY",
function(x)
{
strand(x) <- invertStrand(strand(x))
x
}
)
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.