You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should always be an exact match and not a fuzzy one. Here we should rather use a regex to select the requested rows. As cell entries can be separated by , like in the DROP_GROUP column, we could use something like:
When using 2 DROP_GROUP's where one is a substring of the other, the
utils.subsetBy
function will return false results.drop/drop/utils.py
Lines 68 to 86 in 8df2d1e
It should always be an exact match and not a fuzzy one. Here we should rather use a regex to select the requested rows. As cell entries can be separated by
,
like in theDROP_GROUP
column, we could use something like:For single string search:
For multi string search:
@mumichae @nickhsmith do you know exactly where this function is used? Only in the SampleAnnotation class?
The text was updated successfully, but these errors were encountered: