(path_to_file: P)
| 26 | } |
| 27 | |
| 28 | pub fn read_h5ad_memory<P: AsRef<Path>>(path_to_file: P) -> anyhow::Result<IMAnnData> { |
| 29 | let adata = read_h5ad(path_to_file, FileScope::Read, false)?; |
| 30 | convert_to_in_memory(adata) |
| 31 | } |
| 32 | |
| 33 | pub fn read_h5ad_fast_memory<P: AsRef<Path>>(path_to_file: P) -> anyhow::Result<IMAnnData> { |
| 34 | anndata_memory::load_h5ad_fast(path_to_file) |
nothing calls this directly
no test coverage detected