Source code for tidytcells.junction
"""
Functions to clean and standardize junction (CDR3) data.
"""
from ._main import standardize
[docs]def standardise(*args, **kwargs):
"""
Alias for :py:func:`tidytcells.junction.standardize`.
"""
return standardize(*args, **kwargs)