#' @name export.data
#' @aliases export.data,StefansExpressionSet-method
#' @rdname export.data-methods
#' @docType methods
#' @description write the StefansExpressionSet data, annotation and samples tables to disk
#' @param x the StefansExpressionSet object
#' @title description of function write.data
#' @export
setGeneric('export.data', ## Name
function ( x ) { ## Argumente der generischen Funktion
standardGeneric('export.data') ## der Aufruf von standardGeneric sorgt für das Dispatching
}
)
setMethod('export.data', signature = c ( 'StefansExpressionSet') ,
definition = function ( x ) {
ofile = paste(x@outpath,str_replace_all(x@name, "\\s+", "_" ),sep='')
write.table(cbind ( x@annotation, x@data ), file=paste(ofile,"expressionValues.xls",sep='_'),sep='\t', row.names=F,quote=F )
write.table( x@samples, file=paste( ofile, "sampleInformation.xls",sep='_' ), sep='\t', row.names=F,quote=F )
# write.table( x@annotation, file=paste( ofile, "gene_annotation.xls",sep='_' ), sep='\t', row.names=F,quote=F )
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.