FINNGEN / autoreporting

MIT License
0 stars 1 forks source link

Inputs without a header in tabix fail #180

Closed Lipastomies closed 1 year ago

Lipastomies commented 3 years ago

Tabix requires a header to be specified with a special character (default '#'). One can create a tabix-indexed file without it by skipping the header row with e.g -S1, but then there will be no header row. Autoreporting unfortunately uses pysam.TabixFile.header-member variable, which is empty for those files... So things crash.

Mitigations:

Lipastomies commented 1 year ago

Fixed