BioMol#

Overview of BioMol Concepts

The main BioMol object serves as the primary entry point. It manages a separate FeatureContainer at each structural level (atoms, residues, and chains), which store the relevant features.

You interact with this data through two powerful abstractions:

  • View: Accesses the data’s structure, allowing you to select and navigate between atoms, residues, and chains.

  • Feature: Accesses the data itself as NumPy-like arrays for efficient computation.

This design provides an intuitive yet powerful interface for complex molecular analysis. To see how these components enable powerful workflows, dive deeper into their specific roles:

View

Learn how to select, filter, and navigate between atoms, residues, and chains.

View
Feature

Discover how to perform efficient NumPy-style operations on molecular data.

Feature