Skip to main content

Automated reaction network generator for NASAP (Numerical Analysis of Self-Assembly Process)

Project description

nasap-net

nasap-net is a Python library for automatically constructing elementary reaction networks within the NASAP (Numerical Analysis for Self-Assembly Process) framework, developed by the Hiraoka Group.

Documentation: https://hiraoka-group.github.io/nasap-net/

Installation

pip install nasap-net

Requires Python ≥ 3.12.

What it does

Given a target assembly (a metal–organic cage) and the components that make it up, nasap-net:

  1. Enumerates all subassemblies — finds every chemically meaningful partial structure
  2. Enumerates all elementary reactions — generates every ligand-exchange step connecting those subassemblies
  3. Classifies reactions — applies a user-defined rule to assign a reaction type to each elementary reaction
  4. Saves and loads results — serializes assemblies and reactions to YAML/CSV files for downstream use

Quick start

from nasap_net import (
    Assembly, Bond, Component, MLEKind,
    enumerate_assemblies, enumerate_reactions,
    classify_reactions, IncompleteReactionClassifierError,
    save_assemblies, save_reactions, save_classification_result,
)

# Define components
M = Component(kind='M', sites=[0, 1])
L = Component(kind='L', sites=[0, 1])
X = Component(kind='X', sites=[0])

# Define target assembly
target = Assembly(
    components={'M0': M, 'M1': M, 'L0': L, 'L1': L},
    bonds=[
        Bond('M0', 1, 'L0', 0), Bond('L0', 1, 'M1', 0),
        Bond('M1', 1, 'L1', 0), Bond('L1', 1, 'M0', 0),
    ]
)

# Enumerate subassemblies and reactions
assemblies = list(enumerate_assemblies(target, leaving_ligand=X, metal_kinds='M'))
reactions = list(enumerate_reactions(
    assemblies=assemblies,
    mle_kinds=[
        MLEKind(metal='M', leaving='X', entering='L'),
        MLEKind(metal='M', leaving='L', entering='X'),
    ],
))

# Classify reactions with a user-defined rule
def my_classifier(reaction):
    reaction = reaction.as_reaction_to_classify()
    if reaction.leaving_kind == 'X' and reaction.entering_kind == 'L':
        return 'X-to-L'
    elif reaction.leaving_kind == 'L' and reaction.entering_kind == 'X':
        return 'L-to-X'
    raise IncompleteReactionClassifierError(reaction)

reaction_to_class = classify_reactions(reactions, my_classifier)

# Save results
save_assemblies(assemblies, 'assemblies.yaml')
save_reactions(reactions, 'reactions.csv')
save_classification_result(reaction_to_class, 'classification_result.csv')

Example

A worked example for an M4L4/M10L11 system is available as a Jupyter notebook:

examples/M4L4_reaction_classification/

Open In Colab

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nasap_net-1.3.0.tar.gz (46.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nasap_net-1.3.0-py3-none-any.whl (90.9 kB view details)

Uploaded Python 3

File details

Details for the file nasap_net-1.3.0.tar.gz.

File metadata

  • Download URL: nasap_net-1.3.0.tar.gz
  • Upload date:
  • Size: 46.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nasap_net-1.3.0.tar.gz
Algorithm Hash digest
SHA256 b00cb6fd854cc67dd0d43db7727dbbfdec28c4744bba56e3cc31f3e287ac7974
MD5 96edc14d8f138278e987c34bf5767656
BLAKE2b-256 51b546fbe056963486d08dd5c9fe240088f68acdb08229cee72c8b96fbbe731e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nasap_net-1.3.0.tar.gz:

Publisher: release.yml on Hiraoka-Group/nasap-net

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nasap_net-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: nasap_net-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 90.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nasap_net-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 eccf81555253d9d8b6cdf1cbd731e4a34e608b29f566ba02db91b7f1dce73d5f
MD5 81673fdb2866d60b085af8c6372ff667
BLAKE2b-256 c9feff629672f58c7b76bcd39ede2f51b39a80cb82242eb7d581c94a3d6e247e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nasap_net-1.3.0-py3-none-any.whl:

Publisher: release.yml on Hiraoka-Group/nasap-net

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page