topostats.tracing.dnacurvature#

Module for calculating curvature statistics.

Attributes#

Classes#

Module Contents#

topostats.tracing.dnacurvature.LOGGER#
class topostats.tracing.dnacurvature.Curvature(molecule_coordinates: numpy.ndarray, circular: bool)[source]#
molecule_coordinates#
circular#
n_points#
first_derivative = None#
second_derivative = None#
local_curvature = None#
calculate_derivatives(edge_order: int = 1) None[source]#

Find the curvature for an individual molecule.

Parameters:
  • molecule_coordinates (np.ndarray) – Coordinates of the simplified splined trace of a molecule. These are returned by dnaTracing.

  • circular (bool) – Whether the molecule has been determined as being circular or not.

  • edge_order (int) – Gradient is passed to numpy.gradient and Gradient is calculated using N-th order accurate differences at boundaries. Also used to expand the array by the necessary number of co-ordinates at either end to form a loop for the calculations.

_calculate_local_curvature() float[source]#

Calculate the local curvature between points.