DenseSquareTaxaMatrix#
- class pybrops.core.mat.DenseSquareTaxaMatrix.DenseSquareTaxaMatrix(mat, taxa=None, taxa_grp=None, **kwargs)[source]#
Bases:
DenseSquareMatrix
,DenseTaxaMatrix
,SquareTaxaMatrix
A concrete class for dense matrices with taxa metadata and axes that are square.
The purpose of this abstract class is to merge the following implementations and interfaces:
DenseSquareMatrix (implementation)
DenseTaxaMatrix (implementation)
SquareTaxaMatrix (interface)
Constructor for the DenseSquareTaxaMatrix concrete class.
- Parameters:
mat (numpy.ndarray) – Matrix used to construct the object.
taxa (numpy.ndarray) – Taxa names.
taxa_grp (numpy.ndarray) – Taxa groupings.
kwargs (dict) – Additional keyword arguments.
Methods
Add additional elements to the end of the Matrix along an axis.
Add additional elements to the end of the Matrix along an axis.
Append values to the matrix.
Append values to the Matrix along the taxa axis.
Concatenate matrices together along an axis.
Concatenate list of Matrix together along the taxa axis.
Make a shallow copy of the Matrix.
Make a deep copy of the Matrix.
Delete sub-arrays along an axis.
Delete sub-arrays along the taxa axis.
Read
DenseTaxaMatrix
from an HDF5 file.Sort matrix along axis, then populate grouping indices for the axis.
Sort the Matrix along the taxa axis, then populate grouping indices for the taxa axis.
Incorporate values along the given axis before the given indices.
Incorporate values along the taxa axis before the given indices.
Insert values along the given axis before the given indices.
Insert values along the taxa axis before the given indices.
Determine whether the Matrix has been sorted and grouped.
Determine whether the Matrix has been sorted and grouped along the taxa axis.
Determine whether the axis lengths for the square axes are identical.
Determine whether the taxa axes lengths for the square axes are identical.
Perform an indirect stable sort using a tuple of keys.
Perform an indirect stable sort using a sequence of keys along the taxa axis.
Remove sub-arrays along an axis.
Remove sub-arrays along the taxa axis.
Reorder the VariantMatrix.
Reorder elements of the Matrix along the taxa axis using an array of indices.
Select certain values from the matrix.
Select certain values from the Matrix along the taxa axis.
Reset metadata for corresponding axis: name, stix, spix, len.
Sort slements of the Matrix along the taxa axis using a sequence of keys.
Write
DenseTaxaMatrix
to an HDF5 file.Ungroup the DenseSquareTaxaMatrix along an axis by removing grouping metadata.
Ungroup the DenseTaxaMatrix along the taxa axis by removing taxa group metadata.
Attributes
Pointer to raw numpy.ndarray object.
Number of dimensions of the raw numpy.ndarray.
Shape of the raw numpy.ndarray.
Number of axes that are square.
Number of taxa axes that are square.
Number of taxa
Axis indices for axes that are square.
Axis lengths for axes that are square.
Axis indices for taxa axes that are square.
Axis lengths for axes that are square.
Taxa label array
First square axis along which taxa are stored
Taxa group label.
Taxa group length.
Taxa group name.
Taxa group stop index.
Taxa group start index.
- __add__(value)#
Elementwise add matrices
- Parameters:
value (object) – Object which to add.
- Returns:
out – An object resulting from the addition.
- Return type:
object
- __mul__(value)#
Elementwise multiply matrices
- Parameters:
value (object) – Object which to multiply.
- Returns:
out – An object resulting from the multiplication.
- Return type:
object
- adjoin(values, axis=-1, taxa=None, taxa_grp=None, **kwargs)[source]#
Add additional elements to the end of the Matrix along an axis.
- Parameters:
values (Matrix, numpy.ndarray) – Values are appended to append to the Matrix.
axis (int) – The axis along which values are adjoined.
taxa (numpy.ndarray) – Taxa names to adjoin to the Matrix. If values is a DenseSquareTaxaMatrix that has a non-None taxa field, providing this argument overwrites the field.
taxa_grp (numpy.ndarray) – Taxa groups to adjoin to the Matrix. If values is a DenseSquareTaxaMatrix that has a non-None taxa_grp field, providing this argument overwrites the field.
kwargs (dict) – Additional keyword arguments.
- Returns:
out – A copy of DenseSquareTaxaMatrix with values appended to axis. Note that adjoin does not occur in-place: a new DenseSquareTaxaMatrix is allocated and filled.
- Return type:
- adjoin_taxa(values, taxa=None, taxa_grp=None, **kwargs)[source]#
Add additional elements to the end of the Matrix along an axis.
- Parameters:
values (Matrix, numpy.ndarray) – Values are appended to append to the Matrix.
taxa (numpy.ndarray) – Taxa names to adjoin to the Matrix. If values is a DenseSquareTaxaMatrix that has a non-None taxa field, providing this argument overwrites the field.
taxa_grp (numpy.ndarray) – Taxa groups to adjoin to the Matrix. If values is a DenseSquareTaxaMatrix that has a non-None taxa_grp field, providing this argument overwrites the field.
kwargs (dict) – Additional keyword arguments.
- Returns:
out – A copy of DenseSquareTaxaMatrix with values appended to axis. Note that adjoin does not occur in-place: a new DenseSquareTaxaMatrix is allocated and filled.
- Return type:
- append(values, axis=-1, taxa=None, taxa_grp=None, **kwargs)[source]#
Append values to the matrix.
- Parameters:
values (DenseSquareTaxaMatrix, numpy.ndarray) – Values are appended to append to the matrix. Must be of type int8. Must be of shape (m, n, p)
axis (int) – The axis along which values are appended.
taxa (numpy.ndarray) – Taxa names to append to the Matrix. If values is a DenseSquareTaxaMatrix that has a non-None taxa field, providing this argument overwrites the field.
taxa_grp (numpy.ndarray) – Taxa groups to append to the Matrix. If values is a DenseSquareTaxaMatrix that has a non-None taxa_grp field, providing this argument overwrites the field.
kwargs (dict) – Additional keyword arguments.
- Return type:
None
- append_taxa(values, taxa=None, taxa_grp=None, **kwargs)[source]#
Append values to the Matrix along the taxa axis.
- Parameters:
values (Matrix, numpy.ndarray) – Values are appended to append to the matrix.
taxa (numpy.ndarray) – Taxa names to append to the Matrix.
taxa_grp (numpy.ndarray) – Taxa groups to append to the Matrix.
kwargs (dict) – Additional keyword arguments.
- Return type:
None
- classmethod concat(mats, axis=-1, **kwargs)[source]#
Concatenate matrices together along an axis.
- Parameters:
mats (Sequence of matrices) – List of Matrix to concatenate. The matrices must have the same shape, except in the dimension corresponding to axis.
axis (int) – The axis along which the arrays will be joined.
kwargs (dict) – Additional keyword arguments
- Returns:
out – The concatenated DenseSquareTaxaMatrix. Note that concat does not occur in-place: a new DenseSquareTaxaMatrix is allocated and filled.
- Return type:
- classmethod concat_taxa(mats, **kwargs)[source]#
Concatenate list of Matrix together along the taxa axis.
- Parameters:
mats (Sequence of Matrix) – List of Matrix to concatenate. The matrices must have the same shape, except in the dimension corresponding to axis.
kwargs (dict) – Additional keyword arguments
- Returns:
out – The concatenated DenseSquareTaxaMatrix. Note that concat does not occur in-place: a new DenseSquareTaxaMatrix is allocated and filled.
- Return type:
- copy()#
Make a shallow copy of the Matrix.
- Returns:
out – A shallow copy of the original DenseMatrix.
- Return type:
- deepcopy(memo=None)#
Make a deep copy of the Matrix.
- Parameters:
memo (dict) – Dictionary of memo metadata.
- Returns:
out – A deep copy of the original DenseMatrix.
- Return type:
- delete(obj, axis=-1, **kwargs)[source]#
Delete sub-arrays along an axis.
- Parameters:
obj (int, slice, or Sequence of ints) – Indicate indices of sub-arrays to remove along the specified axis.
axis (int) – The axis along which to delete the subarray defined by obj.
kwargs (dict) – Additional keyword arguments.
- Returns:
out – A DenseSquareTaxaMatrix with deleted elements. Note that concat does not occur in-place: a new DenseSquareTaxaMatrix is allocated and filled.
- Return type:
- delete_taxa(obj, **kwargs)[source]#
Delete sub-arrays along the taxa axis.
- Parameters:
obj (int, slice, or Sequence of ints) – Indicate indices of sub-arrays to remove along the specified axis.
kwargs (dict) – Additional keyword arguments.
- Returns:
out – A DenseSquareTaxaMatrix with deleted elements. Note that concat does not occur in-place: a new DenseSquareTaxaMatrix is allocated and filled.
- Return type:
- classmethod from_hdf5(filename, groupname=None)#
Read
DenseTaxaMatrix
from an HDF5 file.- Parameters:
filename (str, Path, h5py.File) – If
str
orPath
, an HDF5 file name from which to read. File is closed after reading. Ifh5py.File
, an opened HDF5 file from which to read. File is not closed after reading.groupname (str, None) – If
str
, an HDF5 group name under whichDenseTaxaMatrix
data is stored. IfNone
,DenseTaxaMatrix
is read from base HDF5 group.
- Returns:
out – A dense matrix read from file.
- Return type:
- group(axis=-1, **kwargs)[source]#
Sort matrix along axis, then populate grouping indices for the axis.
- Parameters:
axis (int) – The axis along which values should be grouped.
kwargs (dict) – Additional keyword arguments.
- Return type:
None
- group_taxa(**kwargs)#
Sort the Matrix along the taxa axis, then populate grouping indices for the taxa axis.
- Parameters:
kwargs (dict) – Additional keyword arguments.
- Return type:
None
- incorp(obj, values, axis=-1, taxa=None, taxa_grp=None, **kwargs)[source]#
Incorporate values along the given axis before the given indices.
- Parameters:
obj (int, slice, or Sequence of ints) – Object that defines the index or indices before which values is incorporated.
values (array_like) – Values to incorporate into the matrix.
axis (int) – The axis along which values are incorporated.
taxa (numpy.ndarray) – Taxa names to corporate into the Matrix. If values is a DenseSquareTaxaMatrix that has a non-None taxa field, providing this argument overwrites the field.
taxa_grp (numpy.ndarray) – Taxa groups to incorporate into the Matrix. If values is a DenseSquareTaxaMatrix that has a non-None taxa_grp field, providing this argument overwrites the field.
kwargs (dict) – Additional keyword arguments.
- Return type:
None
- incorp_taxa(obj, values, taxa=None, taxa_grp=None, **kwargs)[source]#
Incorporate values along the taxa axis before the given indices.
- Parameters:
obj (int, slice, or Sequence of ints) – Object that defines the index or indices before which values is incorporated.
values (Matrix, numpy.ndarray) – Values to incorporate into the matrix.
taxa (numpy.ndarray) – Taxa names to incorporate into the Matrix.
taxa_grp (numpy.ndarray) – Taxa groups to incorporate into the Matrix.
kwargs (dict) – Additional keyword arguments.
- Return type:
None
- insert(obj, values, axis=-1, taxa=None, taxa_grp=None, **kwargs)[source]#
Insert values along the given axis before the given indices.
- Parameters:
obj (int, slice, or Sequence of ints) – Object that defines the index or indices before which values is inserted.
values (Matrix, numpy.ndarray) – Values to insert into the matrix.
axis (int) – The axis along which values are inserted.
taxa (numpy.ndarray) – Taxa names to insert into the Matrix. If values is a DenseSquareTaxaMatrix that has a non-None taxa field, providing this argument overwrites the field.
taxa_grp (numpy.ndarray) – Taxa groups to insert into the Matrix. If values is a DenseSquareTaxaMatrix that has a non-None taxa_grp field, providing this argument overwrites the field.
kwargs (dict) – Additional keyword arguments.
- Returns:
out – A DenseSquareTaxaMatrix with values inserted. Note that insert does not occur in-place: a new DenseSquareTaxaMatrix is allocated and filled.
- Return type:
- insert_taxa(obj, values, taxa=None, taxa_grp=None, **kwargs)[source]#
Insert values along the taxa axis before the given indices.
- Parameters:
obj (int, slice, or Sequence of ints) – Object that defines the index or indices before which values is inserted.
values (Matrix, numpy.ndarray) – Values to insert into the matrix.
taxa (numpy.ndarray) – Taxa names to insert into the Matrix.
taxa_grp (numpy.ndarray) – Taxa groups to insert into the Matrix.
kwargs (dict) – Additional keyword arguments.
- Returns:
out – A DenseSquareTaxaMatrix with values inserted. Note that insert does not occur in-place: a new DenseSquareTaxaMatrix is allocated and filled.
- Return type:
- is_grouped(axis=-1, **kwargs)[source]#
Determine whether the Matrix has been sorted and grouped.
- Parameters:
axis (int) – Axis along which to test for grouping.
kwargs (dict) – Additional keyword arguments.
- Returns:
grouped – True or False indicating whether the GeneticMap has been sorted and grouped.
- Return type:
bool
- is_grouped_taxa(**kwargs)#
Determine whether the Matrix has been sorted and grouped along the taxa axis.
- Parameters:
kwargs (dict) – Additional keyword arguments.
- Returns:
grouped – True or False indicating whether the Matrix has been sorted and grouped.
- Return type:
bool
- is_square()[source]#
Determine whether the axis lengths for the square axes are identical.
- Returns:
out –
True
if all square axes are the same length.False
if not all square axes are the same length.- Return type:
bool
- is_square_taxa()[source]#
Determine whether the taxa axes lengths for the square axes are identical.
- Returns:
out –
True
if all square taxa axes are the same length.False
if not all square taxa axes are the same length.- Return type:
bool
- lexsort(keys, axis=-1, **kwargs)[source]#
Perform an indirect stable sort using a tuple of keys.
- Parameters:
keys (tuple, None) – A tuple of columns to be sorted. The last column is the primary sort key.
axis (int) – The axis of the Matrix over which to sort values.
kwargs (dict) – Additional keyword arguments.
- Returns:
indices – Array of indices that sort the keys.
- Return type:
numpy.ndarray
- lexsort_taxa(keys=None, **kwargs)[source]#
Perform an indirect stable sort using a sequence of keys along the taxa axis.
- Parameters:
keys (A (k, N) array or tuple containing k (N,)-shaped sequences) – The k different columns to be sorted. The last column (or row if keys is a 2D array) is the primary sort key.
kwargs (dict) – Additional keyword arguments.
- Returns:
indices – Array of indices that sort the keys along the specified axis.
- Return type:
A (N,) ndarray of ints
- property mat: ndarray#
Pointer to raw numpy.ndarray object.
- property mat_ndim: int#
Number of dimensions of the raw numpy.ndarray.
- property mat_shape: tuple#
Shape of the raw numpy.ndarray.
- property nsquare: int#
Number of axes that are square.
- property nsquare_taxa: int#
Number of taxa axes that are square.
- property ntaxa: int#
Number of taxa
- remove(obj, axis=-1, **kwargs)[source]#
Remove sub-arrays along an axis.
- Parameters:
obj (int, slice, or Sequence of ints) – Indicate indices of sub-arrays to remove along the specified axis.
axis (int) – The axis along which to remove the subarray defined by obj.
kwargs (dict) – Additional keyword arguments.
- Return type:
None
- remove_taxa(obj, **kwargs)[source]#
Remove sub-arrays along the taxa axis.
- Parameters:
obj (int, slice, or Sequence of ints) – Indicate indices of sub-arrays to remove along the specified axis.
kwargs (dict) – Additional keyword arguments.
- Return type:
None
- reorder(indices, axis=-1, **kwargs)[source]#
Reorder the VariantMatrix.
- Parameters:
indices (numpy.ndarray) – Indices of where to place elements.
axis (int) – The axis over which to reorder values.
kwargs (dict) – Additional keyword arguments.
- Return type:
None
- reorder_taxa(indices, **kwargs)[source]#
Reorder elements of the Matrix along the taxa axis using an array of indices. Note this modifies the Matrix in-place.
- Parameters:
indices (A (N,) ndarray of ints) – Array of indices that reorder the matrix along the specified axis.
kwargs (dict) – Additional keyword arguments.
- Return type:
None
- select(indices, axis=-1, **kwargs)[source]#
Select certain values from the matrix.
- Parameters:
indices (array_like (Nj, ...)) – The indices of the values to select.
axis (int) – The axis along which values are selected.
kwargs (dict) – Additional keyword arguments.
- Returns:
out – The output DenseSquareTaxaMatrix with values selected. Note that select does not occur in-place: a new DenseSquareTaxaMatrix is allocated and filled.
- Return type:
- select_taxa(indices, **kwargs)[source]#
Select certain values from the Matrix along the taxa axis.
- Parameters:
indices (array_like (Nj, ...)) – The indices of the values to select.
kwargs (dict) – Additional keyword arguments.
- Returns:
out – The output DenseSquareTaxaMatrix with values selected. Note that select does not occur in-place: a new DenseSquareTaxaMatrix is allocated and filled.
- Return type:
- sort(keys=None, axis=-1, **kwargs)[source]#
Reset metadata for corresponding axis: name, stix, spix, len. Sort the VariantMatrix using a tuple of keys.
- Parameters:
keys (tuple, None) – A tuple of columns to be sorted. The last column is the primary sort key.
axis (int) – The axis over which to sort values.
kwargs (dict) – Additional keyword arguments.
- Return type:
None
- sort_taxa(keys=None, **kwargs)#
Sort slements of the Matrix along the taxa axis using a sequence of keys. Note this modifies the Matrix in-place.
- Parameters:
keys (A (k, N) array or tuple containing k (N,)-shaped sequences) – The k different columns to be sorted. The last column (or row if keys is a 2D array) is the primary sort key.
kwargs (dict) – Additional keyword arguments.
- Return type:
None
- property square_axes: tuple#
Axis indices for axes that are square.
- property square_axes_len: tuple#
Axis lengths for axes that are square.
- property square_taxa_axes: tuple#
Axis indices for taxa axes that are square.
- property square_taxa_axes_len: tuple#
Axis lengths for axes that are square.
- property taxa: ndarray | None#
Taxa label array
- property taxa_axis: int#
First square axis along which taxa are stored
- property taxa_grp: ndarray | None#
Taxa group label.
- property taxa_grp_len: ndarray | None#
Taxa group length.
- property taxa_grp_name: ndarray | None#
Taxa group name.
- property taxa_grp_spix: ndarray | None#
Taxa group stop index.
- property taxa_grp_stix: ndarray | None#
Taxa group start index.
- to_hdf5(filename, groupname=None, overwrite=True)#
Write
DenseTaxaMatrix
to an HDF5 file.- Parameters:
filename (str, Path, h5py.File) – If
str
, an HDF5 file name to which to write. File is closed after writing. Ifh5py.File
, an opened HDF5 file to which to write. File is not closed after writing.groupname (str, None) – If
str
, an HDF5 group name under which theDenseTaxaMatrix
data is stored. IfNone
, theDenseTaxaMatrix
is written to the base HDF5 group.overwrite (bool) – Whether to overwrite values in an HDF5 file if a field already exists.
- Return type:
None
- ungroup(axis=-1, **kwargs)[source]#
Ungroup the DenseSquareTaxaMatrix along an axis by removing grouping metadata.
- Parameters:
axis (int) – The axis along which values should be ungrouped.
kwargs (dict) – Additional keyword arguments.
- Return type:
None
- ungroup_taxa(**kwargs)#
Ungroup the DenseTaxaMatrix along the taxa axis by removing taxa group metadata.
- Parameters:
kwargs (dict) – Additional keyword arguments.
- Return type:
None