Nothing
atgcContent <- function(filename, basewise=FALSE)
{
filename <- .check_and_NormPath(filename, mustWork=T, opt="filename")
sequence_file <- paste("./.Rsubread_atgcContent_sequence_pid",Sys.getpid(),sep="")
perc_file <- paste("./.Rsubread_atgcContent_percentage_pid",Sys.getpid(),sep="")
.C("retrieve_sequence", as.character(filename), as.character(sequence_file), PACKAGE="Rsubread")
.C("atgcContent", as.character(sequence_file), as.character(perc_file), as.integer(basewise))
data <- as.matrix(read.csv(perc_file, header=T))
file.remove(sequence_file)
file.remove(perc_file)
if (basewise){
percentage <- data
percentage <- as.matrix(percentage[-1,])
percentage <- as.matrix(t(percentage))
colnames(percentage) <- 1:ncol(percentage)
return(percentage)
}
else
{
return(data)
}
}
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.