#' @export
nucleotides <- function(df){
nucleotides.name <- names(df)[ which(endsWith(names(df), "_nucraw") ) ]
if( identical(nucleotides.name, character(0) ) ){
return("there are no nucleotides in this dataframe")
} else{
return(nucleotides.name)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.