Skip to content

Note

Click here to download the full example code

Custom score matrices#

This tutorial shows how to train a custom score matrix for NBLAST.

The core of the NBLAST algorithm is a function which converts point matches (defined by a distance and the dot product of the tangent vectors) into a score expressing how likely they are to have come from the same cell type. This function is typically a 2D lookup table, referred to as the "score matrix", generated by "training" it on sets of neurons known to be either matching or non-matching.

NAVis provides (and uses by default) the score matrix used in the original publication (Costa et al., 2016) which is based on FlyCircuit, a light-level database of Drosophila neurons. Let's quickly visualize this:

import navis
import seaborn as sns
import matplotlib.pyplot as plt

smat = navis.nbl.smat.smat_fcwb().to_dataframe().T
ax = sns.heatmap(smat, cbar_kws=dict(label="raw score"))
ax.set_xlabel("distance [um]")
ax.set_ylabel("dot product")
plt.tight_layout()

plot 03 nblast smat

This scoring matrix works suprisingly well in many cases! However, how appropriate it is for your data depends on a number of factors:

  • How big your neurons are (commonly addressed by scaling the distance axis of the built-in score matrix)
  • How you have pre-processed your neurons (pruning dendrites, resampling etc.)
  • Your actual task (matching left-right pairs, finding lineages etc.)
  • How distinct you expect your matches and non-matches to be (e.g. how large a body volume you're drawing neurons from)

Utilities in navis.nbl.smat allow you to train your own score matrix.

Let's first have a look at the relevant classes:

from navis.nbl.smat import Lookup2d, Digitizer, LookupDistDotBuilder

First, we need some training data. Let's augment our set of example neurons by randomly mutating them:

import numpy as np

# Use a replicable random number generator
RNG = np.random.default_rng(2021)


def augment_neuron(
    nrn: navis.TreeNeuron, scale_sigma=0.1, translation_sigma=50, jitter_sigma=10
):
    """Mutate a neuron by translating, scaling and jittering its nodes."""
    nrn = nrn.copy(deepcopy=True)
    nrn.name += "_aug"
    dims = list("xyz")
    coords = nrn.nodes[dims].to_numpy()

    # translate whole neuron
    coords += RNG.normal(scale=translation_sigma, size=coords.shape[-1])
    # jitter individual coordinates
    coords += RNG.normal(scale=jitter_sigma, size=coords.shape)
    # rescale
    mean = np.mean(coords, axis=0)
    coords -= mean
    coords *= RNG.normal(loc=1.0, scale=scale_sigma)
    coords += mean

    nrn.nodes[dims] = coords
    return nrn


original = list(navis.example_neurons())
jittered = [augment_neuron(n) for n in original]

dotprops = [navis.make_dotprops(n, k=5, resample=False) for n in original + jittered]
matching_pairs = [[idx, idx + len(original)] for idx in range(len(original))]

The score matrix builder needs some neurons as a list of navis.Dotprops objects, and then to know which neurons should match with each other as indices into that list. It's assumed that matches are relatively rare among the total set of possible pairings, so non-matching pairs are drawn randomly (although a non-matching list can be given explicitly).

Then it needs to know where to draw the boundaries between bins in the output lookup table. These can be given explicitly as a list of 2 Digitizers, or can be inferred from the data: bins will be drawn to evenly partition the matching neuron scores.

The resulting Lookup2d can be imported/exported as a pandas.DataFrame for ease of viewing and storing.

builder = LookupDistDotBuilder(
    dotprops, matching_pairs, use_alpha=True, seed=2021
).with_bin_counts([8, 5])
smat = builder.build()
as_table = smat.to_dataframe()
as_table

Out:

Drawing non-matching pairs:   0%|          | 0/46442 [00:00<?, ?it/s]



Comparing matching pairs:   0%|          | 0/10 [00:00<?, ?it/s]



Comparing non-matching pairs:   0%|          | 0/11 [00:00<?, ?it/s]
[0.0,0.14620110690593718) [0.14620110690593718,0.298941045999527) [0.298941045999527,0.48067988157272357) [0.48067988157272357,0.7352141737937927) [0.7352141737937927,0.9988406300544739)
[2.014085054397583,57.849366188049316) 1.071521 0.962062 0.889086 0.928131 1.135020
[57.849366188049316,81.31283569335938) 0.879772 0.847659 0.878059 0.831803 0.926530
[81.31283569335938,104.08576202392578) 0.622404 0.626709 0.592930 0.636826 1.182405
[104.08576202392578,128.14104461669922) 0.538608 0.494753 0.412895 0.521149 1.428743
[128.14104461669922,155.36119651794434) 0.147198 0.223463 0.139783 0.472255 1.815169
[155.36119651794434,202.6728515625) -0.529167 -0.365049 -0.428977 -0.206057 1.615743
[202.6728515625,395.9569091796875) -1.499912 -1.320891 -1.316638 -1.178487 -0.164314
[395.9569091796875,4709.61474609375) -1.382498 -1.230513 -1.164390 -0.959355 0.095531

Now that we can have this score matrix, we can use it for a problem which can be solved by NBLAST: we've mixed up a bag of neurons which look very similar to some of our examples, and need to know which they match with.

original_dps = dotprops[: len(original)]
new_dps = [
    navis.make_dotprops(augment_neuron(n), k=5, resample=False) for n in original
]
RNG.shuffle(new_dps)

result = navis.nblast(
    original_dps,
    new_dps,
    use_alpha=True,
    scores="mean",
    normalized=True,
    smat=smat,
    n_cores=1,
)
result.index = [dp.name for dp in original_dps]
result.columns = [dp.name for dp in new_dps]
result

Out:

Preparing:   0%|          | 0/1 [00:00<?, ?it/s]


NBlasting:   0%|          | 0/5 [00:00<?, ?it/s]
DA1_lPN_R_aug DA1_lPN_R_aug DA1_lPN_R_aug DA1_lPN_R_aug DA1_lPN_R_aug
DA1_lPN_R -0.237900 0.740553 -0.247653 -0.536301 -0.196978
DA1_lPN_R -0.287879 -0.248290 -0.288717 -0.266280 -0.350840
DA1_lPN_R -0.136732 -0.216223 -0.328166 -0.529397 0.424477
DA1_lPN_R -0.171776 -0.234457 0.485958 -0.530730 -0.326475
DA1_lPN_R 0.121249 -0.059504 -0.084433 -0.450605 -0.023573

You can see that while there aren't any particularly good scores (this is a very small amount of training data, and one would normally preprocess the neurons), in each case the original's best match is its augmented partner.

Total running time of the script: ( 0 minutes 0.836 seconds)

Download Python source code: plot_03_nblast_smat.py

Download Jupyter notebook: plot_03_nblast_smat.ipynb

Gallery generated by mkdocs-gallery