1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
setGeneric(
name = "plotQuality",
def = function(x,...) {standardGeneric("plotQuality")}
)
setGeneric(
name = "biasPlot",
def = function(x,y,...) {standardGeneric("biasPlot")}
)
setGeneric(
name = "meanVarPlot",
def = function(x,...) {standardGeneric("meanVarPlot")}
)
setGeneric(
name = "MDPlot",
def = function(x,y,...) {standardGeneric("MDPlot")}
)
setGeneric(
name = "biasBoxplot",
def = function(x,y,num.bins,...) {standardGeneric("biasBoxplot")}
)
setGeneric(
name = "offst",
def = function(object) {standardGeneric("offst")}
)
setGeneric(
name = "offst<-",
def = function(object,value) {standardGeneric("offst<-")}
)
setGeneric(
name = "betweenLaneNormalization",
def = function(x, which=c("median","upper","full"), offset=FALSE, round=TRUE) {standardGeneric("betweenLaneNormalization")}
)
setGeneric(
name = "withinLaneNormalization",
def = function(x, y, which=c("loess","median","upper","full"), offset=FALSE, num.bins=10, round=TRUE) {standardGeneric("withinLaneNormalization")}
)
setGeneric(
name = "plotNtFrequency",
def = function(x,...) {standardGeneric("plotNtFrequency")}
)
setGeneric(
name = "plotRLE",
def = function(x,...) {standardGeneric("plotRLE")}
)
setGeneric(
name = "normCounts",
def = function(object) {standardGeneric("normCounts")}
)
setGeneric(
name = "normCounts<-",
def = function(object, value) {standardGeneric("normCounts<-")}
)
|