[python] Allow obs_query=None
/var_query=None
in ExperimentAxisQuery
#2473
Labels
obs_query=None
/var_query=None
in ExperimentAxisQuery
#2473
The default on
var_query
when it is unsupplied ishttps://github.com/single-cell-data/SOMA/blob/python-v1.0.10/python-spec/src/somacore/query/query.py#L92
-- it is expecting
axis.AxisQuery()
as the 'unsupplied' value, rather thanNone
Users can avoid setting
var_query=None
, or, setvar_query=tiledbsoma.AxisQuery()
But we should make it so that if users do pass
var_query=None
orobs_query=None
, we can map that toAxisQuery()
as the remaining code expects -- sayingx=None
is a common paradigm and we should let people say that.Plan (FYI @ryan-williams ):
obs_query
/var_query=None
syntax SOMA#194 on thesomacore
reposomacore
Repro script:
The text was updated successfully, but these errors were encountered: