export | R Documentation |
Export data from R
export(object, con, ...)
## S4 method for signature 'SingleCellExperiment,character'
export(object, con, compress = FALSE, overwrite = TRUE, quiet = FALSE)
object |
Object. |
con |
|
compress |
|
overwrite |
|
quiet |
|
... |
Additional arguments. |
This method extends SummarizedExperiment
but also handles export of the
reducedDims
slot (i.e. containing UMAP, tSNE, and PCA).
Invisible character
or list
of file paths.
matrix
supported arguments:
Comma separated values (CSV):
"csv"
, "csv.bz2"
, "csv.gz"
, "csv.xz"
, "csv.zip"
.
Tab separated values (TSV):
"tsv"
, "tsv.bz2"
, "tsv.gz"
, "tsv.xz"
, "tsv.zip"
.
Matrix
(sparseMatrix
) supported arguments:
MatrixMarket exchange (MTX):
"mtx"
, "mtx.bz2"
, "mtx.gz"
, "mtx.xz"
, "mtx.zip"
.
Some export utilities in R have a tendency to drop row names when writing to
disk in CSV format. For example, the readr family of functions never
write row names by design. This is a really poor default setting for
handling genomic data, which often contain gene identifiers in the row names.
Here we're performing any internal tibble coercion step to ensure row names
are always moved to a "rowname"
column in the CSV export.
Note that this function currently wraps readr::write_delim()
by default
for exporting DFrame
, data.frame
, and matrix
class objects.
Updated 2022-09-13.
Packages:
rio.
Export functions:
BiocIO::export()
.
data.table::fwrite()
.
readr::write_delim()
.
rio::export()
.
rtracklayer::export()
.
vroom::vroom_write()
.
data(SingleCellExperiment_splatter, package = "AcidTest")
## SingleCellExperiment ====
object <- SingleCellExperiment_splatter
con <- AcidBase::tempdir2()
x <- export(object = object, con = con)
print(x)
AcidBase::unlink2(con)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.