Save Conos object on disk to read it from ScanPy
saveConosForScanPy(
con,
output.path,
hdf5_filename,
metadata.df = NULL,
cm.norm = FALSE,
pseudo.pca = FALSE,
pca = FALSE,
n.dims = 100,
embedding = TRUE,
alignment.graph = TRUE,
verbose = FALSE
)
AnnData object for ScanPy, saved to disk
conos object
path to a folder, where intermediate files will be saved
name of HDF5 written with ScanPy files. Note: the rhdf5 package is required
data.frame with additional metadata with rownames corresponding to cell ids, which should be passed to ScanPy (default=NULL) If NULL, only information about cell ids and origin dataset will be saved.
boolean Whether to include the matrix of normalised counts (default=FALSE).
boolean Whether to produce an emulated PCA by embedding the graph to a space with `n.dims` dimensions and save it as a pseudoPCA (default=FALSE).
boolean Whether to include PCA of all the samples (not batch corrected) (default=FALSE).
numeric Number of dimensions for calculating PCA and/or pseudoPCA (default=100).
boolean Whether to include the current conos embedding (default=TRUE).
boolean Whether to include graph of connectivities and distances (default=TRUE).
boolean Whether to use verbose mode (default=FALSE)
The rhdf5 package documentation here: <https://www.bioconductor.org/packages/release/bioc/html/rhdf5.html>