Description Usage Arguments Details Value Examples
Read nUMI tab-delimited file
1 |
file |
input file connection |
text |
optional text input to |
... |
additional arguments are passed to |
This function is a simple wrapper around utils::read.table()
with some follow-up data cleaning to handle optional header
row, and sometimes having space delimiter instead of tab.
For most validation checks, NULL is returned. Data is expected to
have at least 2 columns, where column 2 has class "numeric"
or "integer"
.
data.frame
or NULL if validation checks fail.
1 2 3 4 | library(salsa);
data(oz2_numi_per_cell);
text <- jamba::pasteByRow(oz2_numi_per_cell[1:10,], sep=" ");
read_numi(text=text);
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.