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