read_input | R Documentation |
Read in file containing proteomic data as data.frame. Call check_input() to check data format.
read_input(filename, sep = "")
filename |
path to input file. |
sep |
the field character seperator, see |
list contaiing two objects, data and format. data: input data.frame. format: list returned by check_input(), see ?check_input
.
## Not run: df1 <- data.frame(gene=letters, rep1=rnorm(26), rep2=rnorm(26), rep3=rnorm(26)) tmp <- tempfile() write.table(df1, tmp, quote=F, sep="\t", row.names=F) input <- read_input(tmp, sep="\t") ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.