Nothing
#' @title read .sif to Table
#' @description
#' Reads a .sif file into a table in R
#' @param sifFile the sifFile to be read in
#' @return a R table containing the data from the .sif file
ReadSifFileToTable <- function(sifFile) {
table <- utils::read.table(sifFile, colClasses = "character")
ValidateFormatOfTable(table)
return(table)
}
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.