igvteam / igv-reports

Python application to generate self-contained pages embedding IGV visualizations, with no dependency on original input files.
MIT License
350 stars 52 forks source link

Incorrect table headers for BED file variants #64

Closed DevangThakkar closed 2 years ago

DevangThakkar commented 2 years ago

The headers when loading data in a BED format are slightly incorrect, see relevant code here.

headers = ["unique_id", "Start", "End", "Name"] needs to be headers = ["unique_id", "Chrom", "Start", "End", "Name"]

See image below for an example : image