How to show a row by its key in a hail table?

Given a hail table, how do I print a row of interest from its key? For example, how would I print the row with id 7 from the table in hail tutorial? Also, how would it work if the locus and alleles were the keys?

I’m familiar with showing the row of interest using filter, but it feels wrong and I am guessing there is a straight-forward to achieve this :slight_smile:

Hi @ManavalanG,
Unfortunately there’s no more direct way of doing this than you observed with

table.filter('idx'=7).row.show()

Warm regards,
Edmund