segmentation.geostas¶
Bio3D is an R package that encapsulates different tools for biological structure analysis. The GeoStaS domain finder tries to locate rigid domains based on trajectory movements. The generated files come from a custom script written in R, so their format is controlled by our workflow rather than by the external project itself.
Documentation can be found at: http://thegrantlab.org/bio3d/reference/geostas.html
Module Contents¶
- class segmentation.geostas.Parser(pdb_path, clustering_directory_path)[source]¶
Bases:
segmentation.SegmentationParser
The base class for all segmentation parsers.
- parse() collections.abc.Iterator[Tuple[str, int, str]] [source]¶
The return value is a collection of items of the form:
("<method name>", <number of domains>, "<chopping>")
They could be collected into a list or yield-ed. The
write_segmentations()
function only expects that this method returns an iterable object.