Nothing
#' @rdname SilacProteomicsExperiment-accessors
#' @aliases colnames,SilacProteomicsExperiment-method
#' @export
setMethod('colnames', 'SilacProteomicsExperiment', function(x) {
return(rownames(x@colData))
})
#' @rdname SilacProteomicsExperiment-accessors
#' @aliases colnames<-,SilacProteomicsExperiment-method
#' @export
setMethod('colnames<-', 'SilacProteomicsExperiment', function(x, value) {
if (length(value) != length(unique(value))) {
stop('Colnames must be unique')
}
rownames(colData(x@SilacProteinExperiment)) <- value
rownames(colData(x@SilacPeptideExperiment)) <- value
validObject(x)
return(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.