Nothing
##' Pretty print the content of classes from the easyRNASeq package.
##'
##' Print information about a \code{\linkS4class{RNAseq}},
##' \code{\linkS4class{AnnotParam}}, \code{\linkS4class{BamParam}} or
##' \code{\linkS4class{RnaSeqParam}} object.
##'
##'
##' @name print methods
##' @rdname print-methods
##' @aliases print print,RNAseq-method print,AnnotParam-method print,BamParam-method
##' print,RnaSeqParam-method
##' @docType methods
##' @param x An object from class \code{\linkS4class{RNAseq}},
##' \code{\linkS4class{AnnotParam}},
##' \code{\linkS4class{BamParam}} or \code{\linkS4class{RnaSeqParam}}
##' @param verbose A logical to have a verbose or not output. Default to FALSE
##' For object of the \code{\linkS4class{RNAseq}} class only.
##' @param ... Additional arguments, currently unused.
##' @return Print information about the provided object.
##' @author Nicolas Delhomme
##' @keywords methods
setMethod(
f="print",
signature="RNAseq",
definition=function(x,verbose=FALSE,...){
.Defunct(msg="The RNAseq class is now defunct.")
.catn(class(x), "annotation and data for", organismName(x), "containing:\n")
## annotations
.catn("1) Annotations:\n")
## chromosomes
if(verbose){
.catn("\ta) Chromosome sizes:\n")
if(length(chrSize(x)>3)){
sToDisp <- unlist(chrSize(x))[c(1,2,length(chrSize(x)))]
sToDisp[4]<-sToDisp[3]
names(sToDisp)[4]<-names(sToDisp)[3]
sToDisp[3]<-"..."
names(sToDisp[3])<-"..."
print(sToDisp)
} else {
.catn(unlist(chrSize(x)))
}
} else {
.catn("\ta)",length(chrSize(x)),"chromosomes\n")
}
## genomic Annotations (inc. geneModel and readIslands)
if(verbose){
.catn("\n\tb) Genomic annotations:\n")
print(genomicAnnotation(x))
.catn("\n\tc) Gene models\n")
print(geneModel(x))
.catn("\n\td) Read islands\n")
print(readIslands(x))
} else {
.catn("\n\tb)",length(genomicAnnotation(x)),"genomic annotations\n")
.catn("\n\tc)",length(geneModel(x)),"gene models\n")
.catn("\n\td)",length(readIslands(x)),"read islands\n")
}
## data
.catn("\n\n2) Data:")
if(length(readLength(x))>1){
.catn("\tcoming from reads of length spanning the range: ",min(readLength(x)),"-",max(readLength(x)))
} else {
.catn("\tcoming from reads of length:",readLength(x))
}
if(verbose){
.catn("\tresulting in the coverage:\n")
.catn(show(readCoverage(x)))
} else {
if(length(chrSize(x))>0){
if(length(readCoverage(x))>0){
sel<-match(names(readCoverage(x)),names(chrSize(x)))
.catn(
paste("\thaving an average ",
signif(
mean(
## this throw an integer overflow
## sum(readCoverage(x))/ unlist(chrSize(x)[sel])
sapply(readCoverage(x),function(rC){sum(as.numeric(runLength(rC) * runValue(rC)))}
)/ unlist(chrSize(x)[sel])
),
digits=2),
"X coverage.\n",
sep=""))
}
}
}
## results
if(length(readCounts(x))>0){
.catn("\n3) Results:")
i<-j<-1
section <- c("a","b","c","d")
subsection<-c(1,2)
for(count.name in names(readCounts(x))){
switch(EXPR=count.name,
"exons"={
.catn("\n\t",section[i],") exon summarization",sep="")
.catn(str(readCounts(x)$exons))
},
"features"={
.catn("\n\t",section[i],") feature summarization",sep="")
.catn(str(readCounts(x)$features))
},
"island"={
.catn("\n\t",section[i],") island summarization",sep="")
.catn(str(readCounts(x)$islands))
},
"transcripts"={
.catn("\n\t",section[i],") transcript summarization",sep="")
.catn(str(readCounts(x)$transcripts))
},
"genes"={
.catn("\n\t",section[i],") gene summarization",sep="")
for(gene.name in names(readCounts(x)$genes)){
switch(EXPR=gene.name,
"bestExons"={
.catn("\n\t\t",subsection[j],") best exon summarization",sep="")
.catn(str(readCounts(x)$genes$bestExon))
},
"geneModels"={
.catn("\n\t\t",subsection[j],") gene model summarization",sep="")
.catn(str(readCounts(x)$genes$geneModel))
})
j<-j+1
}
})
i<-i+1
}
}
})
setMethod(
f="print",
signature="AnnotParam",
definition=function(x,...){
switch(class(x),
"AnnotParamObject"=.catn("Annotation provided manually"),
"AnnotParamCharacter"={
.catn(class(x),
" object set to retrieve '",
type(x),
"' formatted annotation from:",sep="")
.catn("\t",datasource(x))
})
})
setMethod(
f="print",
signature="BamParam",
definition=function(x,...){
.catn(class(x),
" object set for '",
ifelse(paired(x),"paired","single"),
"-end', '",
ifelse(stranded(x),"strand-specific","unstranded"),
"' aligned reads in BAM format.",sep="")
.catn("The records will be processed",yieldSize(x),"at a time.")
})
setMethod(
f="print",
signature="RnaSeqParam",
definition=function(x,...){
.catn(class(x),
" object set to count reads per '",
countBy(x),
"' at a '", precision(x), " 'precision.",sep="")
.catn("Using:")
.catn("\tannotation from an:")
print(annotParam(x))
.catn("\tand BAM alignments with following characteristics:")
print(bamParam(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.