Nothing
setClass("UTR3eSet",
representation(usage="GRanges", PDUI="matrix",
PDUI.log2="matrix",
short="matrix",
long="matrix",
signals="list",
testRes="matrix"))
UTR3eSet <- function(...){
new("UTR3eSet", ...)
}
setMethod("$", "UTR3eSet", function(x, name) slot(x, name))
setReplaceMethod("$", "UTR3eSet",
function(x, name, value){
slot(x, name, check = TRUE) <- value
x
})
setAs(from="UTR3eSet", to="ExpressionSet", function(from){
ExpressionSet(assayData=from$PDUI.log2,
featureData=AnnotatedDataFrame(as.data.frame(from$usage)))
})
setAs(from="UTR3eSet", to="GRanges", function(from){
n <- from$usage$transcript
short <- from$short
long <- from$long
colnames(short) <- paste(colnames(short), "short.form.usage", sep="_")
colnames(long) <- paste(colnames(long), "long.form.usage", sep="_")
PDUI <- from$PDUI
colnames(PDUI) <- paste(colnames(PDUI), "PDUI", sep="_")
r <- from$usage
mcol_r <- as.data.frame(mcols(r))
if(length(from$testRes)!=0){
test <- from$testRes
mcols(r) <- cbind(mcol_r,
short[match(n, rownames(short)), , drop=FALSE],
long[match(n, rownames(long)), , drop=FALSE],
PDUI[match(n, rownames(short)), , drop=FALSE],
test[match(n, rownames(test)), , drop=FALSE])
}else{
mcols(r) <- cbind(mcol_r,
short[match(n, rownames(short)), , drop=FALSE],
long[match(n, rownames(long)), , drop=FALSE],
PDUI[match(n, rownames(short)), , drop=FALSE])
}
r
})
setMethod("show", "UTR3eSet", function(object){
cat("This is an object of UTR3eSet\n", "slot usage:\n")
show(object$usage)
if(length(object$PDUI)>0){
cat("slot PDUI: matrix object with ", nrow(object$PDUI),
" rows ", ncol(object$PDUI), "columns\n")
show(head(object$PDUI))
cat("...\n")
cat("slot PDUI.log2: matrix object with ", nrow(object$PDUI.log2),
" rows ", ncol(object$PDUI.log2), "columns\n")
show(head(object$PDUI.log2))
cat("...\n")
cat("slot short: matrix object with ", nrow(object$short),
" rows ", ncol(object$short), "columns\n")
show(head(object$short))
cat("...\n")
cat("slot long: matrix object with ", nrow(object$long),
" rows ", ncol(object$long), "columns\n")
show(head(object$long))
cat("...\n")
}
if(length(object$signals)>0){
cat("slot signals: length ", length(object$signals), "\n")
}
if(length(object$testRes)>0){
cat("slot testRes: matrix object with ", nrow(object$testRes),
" rows ", ncol(object$testRes), "columns\n")
show(head(object$testRes))
cat("...\n")
}
})
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.