import_omics_data | R Documentation |
Import generic omics tab- or comma-delimited data file
import_omics_data(
x,
assay_name = "data",
row_identifier = NULL,
row_annotation_columns = NULL,
curation_txt = NULL,
verbose = FALSE,
...
)
x |
one of the following input types:
|
assay_name |
|
row_identifier |
defines the column, columns, or rownames, to be
used as row identifiers. These values become
|
row_annotation_columns |
defines columns to retain in
|
curation_txt |
either
|
verbose |
|
... |
additional arguments are passed to internal functions
for example |
SummarizedExperiment
Other jam import functions:
coverage_matrix2nmat()
,
deepTools_matrix2nmat()
,
frequency_matrix2nmat()
,
import_lipotype_csv()
,
import_metabolomics_niehs()
,
import_nanostring_csv()
,
import_nanostring_rcc()
,
import_nanostring_rlf()
,
import_proteomics_PD()
,
import_proteomics_mascot()
,
import_salmon_quant()
,
process_metab_compounds_file()
x <- matrix(letters[1:9], ncol=3);
rownames(x) <- LETTERS[1:3];
colnames(x) <- letters[1:3];
x
import_omics_data(x)
x <- matrix(1:9, ncol=3);
rownames(x) <- LETTERS[1:3];
colnames(x) <- paste0(letters[1:3], "_rep1");
x
curation_txt <- data.frame(Pattern=LETTERS[1:3], Group="A", Batch="B")
se <- import_omics_data(x, curation_txt=curation_txt)
SummarizedExperiment::assays(se)[[1]]
SummarizedExperiment::colData(se)
SummarizedExperiment::rowData(se)
se2 <- import_omics_data(x, curation_txt=curation_txt[c(2, 1, 3), ])
SummarizedExperiment::assays(se2)[[1]]
SummarizedExperiment::colData(se2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.