BimberLab / DiscvrLabKeyModules

A collection of public LabKey modules developed by the Bimber Lab
4 stars 4 forks source link

Full text search: searching on samples #190

Closed bbimber closed 1 year ago

bbimber commented 1 year ago

The DISCVRseq tool will index a field called variableSamples. This should be considered an array of the sample names that are variable at that position (though I dont know how lucene technically treats it). This is a really important user-facing search type. For these examples, let's assume we have these two rows:

Row1: variableSamples=sample1,sample2,sample30 Row2: variableSamples=sample2,sample3,sample10

Example queries are:

The client-side code needs a special field type for sample.

Reach goal:

bbimber commented 1 year ago

Should also be case insensitive and have testing on that