tcrdist3 icon indicating copy to clipboard operation
tcrdist3 copied to clipboard

`TCRrep._show_incomplete()` does not work

Open kamurani opened this issue 6 months ago • 1 comments

When running the TCRrep constructor, if issues are encountered with certain rows, the following message is printed:

To see entries with missing values use: tcrdist.repertoire.TCRrep._show_incomplete()
tr = TCRrep(cell_df = dff,
            organism = 'mouse',
            chains = ['alpha','beta'],
            db_file = 'alphabeta_gammadelta_db.tsv',
            compute_distances = False)
tr._show_incomplete()  # this gives AttributeError

import tcrdist 
tcrdist.repertoire.TCRrep._show_incomplete() # this also gives AttributeError

However, attempting to run this method yields AttributeError: type object 'TCRrep' has no attribute '_show_incomplete'

How is this method meant to be invoked?

kamurani avatar Aug 29 '24 02:08 kamurani