Nothing
#' Import a Tab Delimited Blast Output File
#'
#' This function imports a tab delimited blast output.
#'
#' This function imports a tab delimited blast output file, currently the same as \code{read.table}
#'
#' @param file Filename
#'
#' @return A data.frame
#'
#' @author Daniel Fischer
#'
#' @export
importBlastTab <- function(file){
out <- read.table(file,stringsAsFactors=FALSE, sep="\t")
out
}
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.