skbio.stats.distance.DissimilarityMatrix.read#
- classmethod DissimilarityMatrix.read(file, format=None, **kwargs)[source]#
Create a new
DissimilarityMatrixinstance from a file.This is a convenience method for
skbio.io.registry.read(). For more information about the I/O system in scikit-bio, please seeskbio.io.Supported file formats include:
'binary_dm'(skbio.io.format.binary_dm)'lsmat'(skbio.io.format.lsmat)
- Parameters:
- fileopenable (filepath, URL, filehandle, etc.)
The location to read the given format. Something that is understood by
skbio.io.util.open(). Filehandles are not automatically closed, it is the responsibility of the caller.- formatstr, optional
The format must be a format name with a reader for
DissimilarityMatrix. If a format is not provided or is None, it will attempt to guess the format.- kwargsdict, optional
Keyword arguments passed to
skbio.io.registry.read()and the file format reader forDissimilarityMatrix.
- Returns:
- DissimilarityMatrix
A new instance.