dolomite_se package¶
Submodules¶
dolomite_se.read_ranged_summarized_experiment module¶
dolomite_se.read_summarized_experiment module¶
dolomite_se.save_ranged_summarized_experiment module¶
- dolomite_se.save_ranged_summarized_experiment.save_ranged_summarized_experiment(x, path, data_frame_args=None, assay_args=None, **kwargs)[source]¶
Method for saving
SummarizedExperimentobjects to their corresponding file representations, seesave_object()for details.- Parameters:
x (
RangedSummarizedExperiment) – Object to be staged.path (
str) – Path to a directory in which to savex.data_frame_args (
dict) – Further arguments to pass to thesave_objectmethod for the row/column data.assay_args (
dict) – Further arguments to pass to thesave_objectmethod for the assays.kwargs – Further arguments.
- Returns:
xis saved to path.
dolomite_se.save_summarized_experiment module¶
- dolomite_se.save_summarized_experiment.save_summarized_experiment(x, path, data_frame_args=None, assay_args=None, **kwargs)[source]¶
Method for saving
SummarizedExperimentobjects to their corresponding file representations, seesave_object()for details.- Parameters:
x (
SummarizedExperiment) – Object to be staged.path (
str) – Path to a directory in which to savex.data_frame_args (
dict) – Further arguments to pass to thesave_objectmethod for the row/column data.assay_args (
dict) – Further arguments to pass to thesave_objectmethod for the assays.kwargs – Further arguments.
- Returns:
xis saved to path.
dolomite_se.utils module¶
- dolomite_se.utils.read_common_se_props(path, **kwargs)[source]¶
Read shared properties from a directory containing
SummarizedExperimentor its derivatives.- Parameters:
path – Path to the directory containing the object.
- Returns:
A tuple containing row data, column data and the assays.
- dolomite_se.utils.save_common_se_props(x, path, data_frame_args, assay_args, **kwargs)[source]¶
Save common
SummarizedExperimentproperties to the specified path.Mostly for reuse in derivatives of SE.
- Parameters:
x – Object to be staged.
path – Path to a directory in which to save
x.data_frame_args – Further arguments to pass to the
save_objectmethod for the row/column data.assay_args – Further arguments to pass to the
save_objectmethod for the assays.