Skip to main content

NeRFpy: A Python implementation and extension of Natural Extension Reference Frame.

Project description

NeRFpy

Python github ci codecov

NeRFpy: A Python implementation and extension of Natural Extension Reference Frame.

Install

Using pip to install:

# for release (stable) version
pip install nerfpy

# for the latest version
pip install git+https://github.com/smu-tao-group/nerfpy.git

Usage

For high level usage, use NERF class to interact with PDB (read, reconstruct and write). There are also utility functions for low level usage.

# interact with PDB file
from nerfpy import NERF

nerf = NERF()
nerf.read_pdb(PDB_PATH)
nerf.reconstruct()
nerf.save_pdb(NEW_PDB_PATH)

# use your own coordinates (n * 3)
from nerf.utils import (
    calc_r_from_coords,
    calc_alpha_from_coords,
    calc_psi_from_coords,
    reconstruct_from_internal_coords
)

r = calc_r_from_coords(COORDS)
alpha = calc_alpha_from_coords(COORDS)
psi = calc_psi_from_coords(COORDS)
reconstructed_coords = reconstruct_from_internal_coords(r, alpha, psi)

License

Apache-2.0 license

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

nerfpy-0.0.1.tar.gz (33.4 kB view hashes)

Uploaded Source

Built Distribution

nerfpy-0.0.1-py3-none-any.whl (37.7 kB view hashes)

Uploaded Python 3

Supported by

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