Skip to content

Latest commit

 

History

History
81 lines (61 loc) · 5.04 KB

CHANGELOG.md

File metadata and controls

81 lines (61 loc) · 5.04 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Added

  • atom_name attribute, which is a numerical representation of the atom name (C, CA, C5 etc)
    • Dicussed in #118
    • Allows for more precise selections for new styling and animation nodes
  • Reimplemented amino acid 'wiggle' node: using the atom_name attribute
    • 3x faster with the improved atom_name attribute and refactor of the underlying nodes
  • Reimplemented the amino acid to curve node
  • Ribbon Style Nucleic: A ribbon representation for nucleic acids to complement the ribbon represenation of the proteins from alpha carbons. Enabled now thanks to the atom_name attribute.
  • Capturing the Index field in the selection node before the selection occurs, and added an Index field input to the MOL_animate_frames node to enable selection to occur before animating between frames, if the Pre-Sel Index field is used in the Index field of the MOL_animate_frames node
  • Added cutoff field for limiting the interpolation of atoms between frames based on a distance cutoff
  • Added bonds through MDAnalysis import when a trajectory supports it #129
  • Added is_solvent(), is_nucleic() and is_peptide() attributes when importing via MDAnalysis
  • Added frame-specific attribute occupancy which is added to each frame of the trajectory when imported via MDAnalysis. #128

Fixed

  • Changed naming of MOL_style_atoms to MOL_style_atoms_cycles and MOL_style_ribbon to MOL_style_ribbon_protein

[2.1.0]

Added

  • CHANGELOG.md for tracking changes to the project
  • Issue templates for GitHub issues
  • Proper support for Fields for ribbon width, enabling 'licorice' representation amoung others
  • Tooltips documentation for each of the custom node groups that can be added in Geometry Nodes
  • More selection nodes for distance, XYZ slice and whole residues.
  • Custom selections using a string when importing via MDAnalysis #123
  • Added option to disable interpolation of atom positions between frames
  • Added node for animating any field between frames of a trajectory (no fields currently added on import, but used in the new Aniamte Frames backend)
  • UVs are now available for the ribbon mesh style, idea from ErikMarklund and implemented by quellenform

Fixed

  • Error when defaulting to connect_via_distance() when importing with 'Find Bonds' enabled
  • Adding of a color node which was mis-labelled and couldn't be added
  • Non-.gro topology files were failling to add vdw_radii attribute #124
  • Remove use of np.int which is now deprecated and was causing errors when linking python on M1 Mac
  • Attributes now available on ribbon mesh which are sampled from backbone
  • Changed starting material to be appended instead of created, which should avoid duplication of material.

[2.0.2] - 2022-12-13

Fixed

  • Error on reporting the success of improting a molecule

[2.0.1] - 2022-12-13

Changed

  • Remove usage of Atomium and switched to Biotite for most internal structural file parsing

  • Removed reliance upon Serpens to build the addon. Can now be developed by anybody without the requirements of additional Blender addons.

    • Aspects of the addon can now have changes tracked properly by git, rather than inside a binary .blend Serpens file.
    • Now also allows easier and clearer contributions from others who wish to contribute
    • Custom node trees still remain opaque to git unfortunately
  • Attributes are now created and stored on the molecular model itself, removing the need for properties models that store the data XYZ positions. Makes the import process clearer, more robust and more easily expandable.

  • Bond information is available by default as edges of the mesh along with bond types

  • Improve MDAnalysis installation and usage internally

  • Expose operators and functions to Blender Python console to enable user scripting with the addon

import MolecularNodes as mn

# to fetch structures from the protein data bank
struc_list = ['4ozs', '1xi4', '6n2y']
for pdb in struc_list:
    mn.load.molecule_rcsb(pdb, starting_style = 1)

# to open a local structure file
mn.load.molecule_local('file_path_here.pdb', 'SomeMoleculeName', starting_style = 2)