This function opens the H5 file and create a mtmutObj object.
open_h5_file(h5_file)
a mtmutObj object
The mtmutObj object is a S3 class for handling mitochondrial mutation data. It contains the following elements:
a string of the h5 file directory.
H5 file handle.
allele count table H5 group handle.
list of available loci.
selected loci, the default is all loci.
list of available cell ids.
selected cell ids, the default is all cells.
loci passed the filter, the default is NULL
filter parameters.
a integer of the minimum number of cells with mutation, the default is 1.
a string of the model for mutation calling, it can be "bb", "bm" or "bi", the default is "bb".
a numeric of the p-value threshold, the default is 0.05.
a string of the method for p-value adjustment, refer to p.adjust
, the default is "fdr".
## Use the example data
f <- system.file("extdata", "mini_dataset.tsv.gz", package = "scMitoMut")
## Create a temporary h5 file
## In real case, we keep the h5 in project folder for future use
f_h5_tmp <- tempfile(fileext = ".h5")
## Load the data with parse_table function
f_h5 <- parse_table(f, sep = "\t", h5_file = f_h5_tmp)
f_h5
#> [1] "/tmp/RtmppwH5Ub/file2395d2f010140.h5"
## open the h5 file and create a mtmutObj object
x <- open_h5_file(f_h5)
x
#> mtmutObj object
#> -------------------------------------------------
#> h5 file: /tmp/RtmppwH5Ub/file2395d2f010140.h5
#> Available loci: 16
#> Selected loci: 16
#> Available cells: 1359
#> Selected cells: 1359
#> Loci passed the filter: 0
#> filter parameters:
#> min_cell: 1
#> model: bb
#> p_threshold: 0.05
#> alt_count_threshold: 0
#> p_adj_method: fdr