R/classes.R

Defines functions dim.SpliceRList length.SpliceRList

Documented in dim.SpliceRList length.SpliceRList

require(methods)

setClass("SpliceRList",
	representation("list")
)

setClass("CDSSet",
	representation("data.frame")
)


dim.SpliceRList <- function(x) {
	length(x[[1]])
}

length.SpliceRList <- function(x) {
	length(x[[1]])
}

Try the spliceR package in your browser

Any scripts or data that you put into this service are public.

spliceR documentation built on May 2, 2018, 2:50 a.m.