populationgenomics / variant-curation-portal

Web application for curating loss of function variants
MIT License
1 stars 0 forks source link

Bulk upload support from new TSV file format #32

Closed daniaki closed 1 year ago

daniaki commented 1 year ago

Context

It would be nice to add support for creating variants from a file containing het/hom depth information. However, this file may contain rows with the same variant ID so care must be taken to collapse rows with the same ID:

  1. Merging het depths into an array of integers
  2. Merging hom depths into an array of integers
  3. Other fields?

Backend changes

Frontend changes