Changes between Initial Version and Version 1 of Ticket #1290
- Timestamp:
- Jan 22, 2021, 1:59:06 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1290
- Property Component not classified → net.sf.basedb.varsearch
- Property Milestone → Variant Search v1.0
- Property Owner changed from to
- Property Status new → accepted
-
Ticket #1290 – Description
initial v1 1 The variant calling pipeline in Reggie (see #1199) produces VCF files with lots of variants. In theory it is "easy" to search for variants with `grep` or `SnpSif `, but this takes a really long time (several hours) due to the large number of files in the system. Some kind of indexing is needed before searching is realistic.1 The variant calling pipeline in Reggie (see #1199) produces VCF files with lots of variants. In theory it is "easy" to search for variants with `grep` or `SnpSift`, but this takes a really long time (several hours) due to the large number of files in the system. Some kind of indexing is needed before searching is realistic. 2 2 3 3 I have made some initial tests with Apache Lucene (https://lucene.apache.org/) and indexed a few of the annotations in the annotated and filtered VCF files. The results are very promising. Searching for variants in a gene or at a specific location typically takes only a few milliseconds. The results can be returned as a list of raw bioassay id:s which means that it should be possible to include this functionality in the regular table listing.