Skip to content

Releases: CNS-OIST/STEPS

STEPS 5.0.2

28 Jun 16:23
b9ae592
Compare
Choose a tag to compare

Python API

  1. The minimum python version was bumped from 3.6 to 3.8.

Bugfixes

  1. Fixed compilation issue when PETSc is not installed.
  2. Fixed installation issue in Conda environments.

Internal code base

  1. Use Boost instead of GSL for computing qtable for vesicle surface diffusion.
  2. Remove GSL as a minimum prerequisite.

stepsblender python package

  1. Fixed issues caused by changes in Blender 4.1 python API.

STEPS 5.0.1

18 Mar 09:07
1f2eb81
Compare
Choose a tag to compare

New Features

  1. Introduce a new solver named TetVesicle that simulates vesicles, lipid rafts and related phenomena such as endocytosis, exocytosis and active transport on virtual actin filaments.
    The solver is built on top of the TetOpSplit routines for parallel simulation of SSA reaction and diffusion events.
  2. Add a new stepsblender python module that allows visualisation of STEPS simulation data recorded with XDMFHandler using the Blender 3D computer graphics software (https://www.blender.org/).
  3. Checkpointing added or updated for solvers TetVesicle, TetOpSplit, Tetexact, TetODE, Wmdirect, Wmrk4, Wmrssa.
  4. Added support for network-free simulation of multi-state complexes with Wmdirect.

Python API

  1. Added a new CustomResults result selector to save arbitrary data to STEPS HDF5 files.
  2. Added a .description property to ResultSelectors.
  3. Added a .patchTriNeighbs property to TriReferences to get neighboring triangles in the same patch.

Build and Packaging

  1. Installation process now automatically installs missing python dependencies.

Internal code base

  1. All stochastic solvers are now reproducible.
  2. Numerous fixes, optimizations and modernizations.

STEPS 4.1.1

13 Apr 05:45
fdb6d9e
Compare
Choose a tag to compare

Build and Packaging

  1. Fix older cmake files causing installation issues
  2. Fix -DSTEPS_USE_DIST_MESH=False cmake flag not preventing Omega_h installation

No functional change from 4.1.0, so the update is optional.

STEPS 4.1.0

06 Apr 08:48
46d502d
Compare
Choose a tag to compare

License update

  1. Project license changed to GPL3.0.

Python API

  1. Added automatic saving to HDF5 files (HDF5Handler) and XDMF files (XDMFHandler). Data saved
    with XDMFHandler can be visualized with scientific visualization software like Paraview.

Internal code base

  1. Performance improvement: Identify the tetrahedra with molecule changes via diffusion
    (changes caused by reaction are updated by the ssa operator) and update the associated propensities.

STEPS 4.0.0

01 Apr 09:28
3069226
Compare
Choose a tag to compare

Python API

Introduce a new parallel stochastic reaction-diffusion solver and a deterministic
membrane potential solver named DistTetOpSplit. The solver is based on a
distributed mesh named DistMesh.

Build and Packaging

  1. STEPS requires a C++ compiler compatible with C++ 17.
  2. New CMake variables to enable profiling of the simulation:
    STEPS_USE_LIWKID_PROFLING, STEPS_USE_CALIPER_PROFILING, and STEPS_USE_NATIVE_PROFILING
    see [doc/dev/README.md] for more details on how to use it.
  3. Add support to Apple M1
  4. Add support to compilers GCC 11, LLVM 13, and Apple Clang 13

STEPS 3.6.0

19 Feb 11:12
3df8ea4
Compare
Choose a tag to compare

Python API

  1. Added a new python API (see documentation)
    Scripts written for older STEPS version should still work without any modifications.
    The new python API can be used by adding the following line at the top of a STEPS script:

    import steps.interface
  2. Dropped support for python 2.7. The minimum python version is now 3.6.

Build and Packaging

  1. Added support for OpenMP and AppleClang compiler
  2. Improved CMake structure to allow for faster compilation

Internal code base

  1. Code fixes for segment-tetrahedron intersection

STEPS 3.5.0

29 Jan 08:29
6319ad0
Compare
Choose a tag to compare

Changes

Python API

  1. values for unknown tetrahedron and triangle identifiers changed from
    -1 to steps.geom.UNKNOWN_TET and steps.geom.UNKNOWN_TRI
    respectively.
    You may use these 2 constants instead of -1.

    A Python 3 Flake8 extension is available to help you migrate your code.

    $ pip3 install flake8 flake8-oist-steps
    $ cat test.py
    import steps.utilities.meshio as meshio
    
    mesh = meshio.loadMesh('axon_cube_L1000um_D866m_1135tets')[0]
    idx = mesh.findTetByPoint([0, 0, 0])
    if idx == -1:
        print('boundary')
    $ flake8 test.py
    ./test.py:5:4: E421 consider using steps.geom.UNKNOWN_TET constant instead of -1.
    

    You may use the following snippet in your scripts header to have backward
    compatible code:

    try:
        from steps.geom import UNKNOWN_TET, UNKNOWN_TRI
    except ImportError:
        UNKNOWN_TET = -1
        UNKNOWN_TRI = -1
  2. A new constant steps.geom.INDEX_DTYPE provides the proper NumPy datatype according
    to whether STEPS has been built with 32 bits or 64 bits identifiers.

Build and Packaging

  1. New USE_64_BITS_INDICES CMake option to use 64bits unsigned integers
    for identifiers instead of 32bits.
  2. New CMake variables to use either system libraries or bundle code.
    • USE_BUNDLE_EASYLOGGINGP
    • USE_BUNDLE_RANDOM123
    • USE_BUNDLE_SUNDIALS
  3. Improve spack support
  4. Improve support of GCC 7 and higher
  5. Improve support of AppleClang compiler

Internal code base

  1. Disable OpenMP instructions in TetOpSplit solver
  2. Modernize code base by using most of C++11
  3. Increase code safety by using strong types to distinguish
    identifiers from tetrahedrons, triangles, and vertices

STEPS 3.4.1

20 Nov 03:41
d689e29
Compare
Choose a tag to compare

Version 3.4.1 (2018-11)

  1. Critical bug fix for TetOpSplit solver.

STEPS 3.4.0

09 Nov 05:54
0274082
Compare
Choose a tag to compare

Version 3.4.0 (2018-11)

  1. Optimisation of non-spatial deterministic solver Wmrk4. Vast improvement in performance for large models.
  2. Various bug fixes and unit tests.

STEPS 3.3.0

27 Apr 07:35
da9289d
Compare
Choose a tag to compare

Version 3.3.0 (2018-04)

  1. Implemented Rejection-based SSA (Thanh V, Zunino R, Priami C (n.d.) On the rejection-based algorithm for simulation and analysis of large-scale reaction networks. The Journal of Chemical Physics 142:244106) as a faster alternative to Wmdirect
  2. Assertion and Exception logging overhaul
  3. Remove SWIG interface
  4. Matlab Simbiology support utility