Nothing
#' Read BioPAX files as XML documents
#'
#' @param inputFile an inputFile
#' @return an XMLInternalDocument
#'
#' @examples
#' results <- readBiopax(system.file("extdata", "biopax3-short-metabolic-pathway.owl",
#' package="paxtoolsr"))
#'
#' @concept paxtoolsr
#' @export
readBiopax <- function(inputFile) {
checkInputFilePc(inputFile)
results <- xmlTreeParse(inputFile, useInternalNodes=TRUE)
return(results)
}
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.