Open hthomas-czi opened 8 months ago
This would be similar to cellxgene_census.get_anndata and reduce the amount of code users have to write.
cellxgene_census.get_anndata
Current
human = census["census_data"]["homo_sapiens"] query = human.axis_query( measurement_name = "RNA", obs_query = tiledbsoma.AxisQuery( value_filter = "tissue == 'brain' and sex == 'male'" ) )
Proposal
query = cellxgene_census.axis_query( census = census, measurement_name = "RNA", organism = "Homo sapiens", obs_value_filter = "tissue == 'brain' and sex == 'male'" )
Let's ask TileDB team their thoughts on this. @ebezzi @prathapsridharan
This would be similar to
cellxgene_census.get_anndata
and reduce the amount of code users have to write.Current
Proposal