Skip to content

Releases: CamaraLab/CAJAL

v1.0.0

17 Jun 20:25
Compare
Choose a tag to compare

Version 1.0.0 of CAJAL incorporates

  • the weighted nearest neighbors algorithm for the integration of Gromov-Wasserstein distance matrices with other modalities
  • a ternary plotting functionality that allows the user to visualize the relative variability of data from each modality, and identify variance in one modality that is not well explained by variance in the other two
  • integration with the Navis software package for visualizing neurons, allowing users to see a heat map of deformation costs illustrating the parts of the neuron which contribute the most to the overall Gromov-Wasserstein distance

CAJAL v0.3.0

21 Jul 16:24
Compare
Choose a tag to compare

This release is primarily concerned with extending the functionality of CAJAL with an eye towards analysis of larger datasets and larger objects.

  • Rewrote the gradient descent algorithm for computing Gromov-Wasserstein in Cython and made small changes to the algorithm to improve performance, perhaps a 20% speed improvement.
  • Implemented a lower bound for Gromov-Wasserstein from Memoli's original paper, called SLB. We can use this to filter out cell pairs which are sufficiently far apart that they cannot be within each other's nearest neighbor list. This technique is general and does not require a notion of major/minor axis, it is compatible with geodesic distance. It is multiple orders of magnitude faster than GW. This reduces the number of cell pairs to compute by about 70%, if the GW distance only needs to be known precisely for the nearest neighbors.
  • Implemented an approximation to GW, called quantized GW, which involves replacing the cell by a subset of its points and using this as an approximation to the original space. The approximation is acceptable and offers a substantial reduction in computation time; approximating a 100pt space by a 30pt space gives an 87% reduction in computation time.
  • Implemented a combined analysis tool which uses SLB to filter the cell pairs down to a short list of potential nearest neighbors and then applies quantized GW to the remaining pairs. This combined tool should make it practical to scale to very large datasets such as the MICrONs dataset.
  • CAJAL is now compatible with Python 3.9, 3.10, 3.11.
  • Improved error handling
  • Fixed a performance issue in underlying linear algebra library where overzealous multithreading slowed performance.
    For illustrations and usage tutorials, please see our documentation at cajal.readthedocs.io.

CAJAL

24 Mar 20:19
Compare
Choose a tag to compare
CAJAL Pre-release
Pre-release

This release implements all the core functionalities of the package.

The main contributors to this release were @patrick-nicodemus and @pcamara.