igvteam / igv-reports

Python application to generate self-contained pages embedding IGV visualizations, with no dependency on original input files.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrect table headers for BED file variants

DevangThakkar opened this issue · comments

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