getSeqtab | R Documentation |
Function reads in your seqtab file and puts it in a format that can be used as an argument in the EmbedAsvTable function.
getSeqtab(seqtab)
seqtab |
seqtab should be a .csv file. The seqtab argument should given as the file path and needs to be in quotes. |
## The function is currently defined as function (seqtab) { seqtab <- utils::read.csv(seqtab) rownames(seqtab) <- seqtab$X rownames(seqtab) <- gsub("X", "", rownames(seqtab)) seqtab <- seqtab[, 2:ncol(seqtab)] return(seqtab) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.