Export data from R
Usage
export(object, con, ...)
# S4 method for class 'DESeqAnalysis,character'
export(object, con, compress = FALSE, overwrite = TRUE, quiet = FALSE)
# S4 method for class 'DESeqDataSet,character'
export(object, con, compress = FALSE, overwrite = TRUE, quiet = FALSE)Details
Size-factor normalized coutns and FPKM values are calculated on the fly and exported automatically.
Examples
data(deseq)
## DESeqAnalysis ====
con <- AcidBase::tempdir2()
#> Error in vapply(X = X, FUN = FUN, FUN.VALUE = logical(1L), ..., USE.NAMES = useNames): formal argument "USE.NAMES" matched by multiple actual arguments
x <- export(deseq, con = con)
#> Error in h(simpleError(msg, call)): error in evaluating the argument 'con' in selecting a method for function 'export': object 'con' not found
print(x)
#> Error: object 'x' not found
AcidBase::unlink2(con)
#> Error: object 'con' not found