BrooksLabUCSC / flair

Full-Length Alternative Isoform analysis of RNA
Other
201 stars 69 forks source link

Flair quantify error message bug #318

Closed Chemical118 closed 5 months ago

Chemical118 commented 6 months ago

This line

sys.stderr.write(f'Expected 4 columns in tab-delimited manifest.tsv, got len(cols). Exiting.\n')

should be change like this.

sys.stderr.write(f'Expected 4 columns in tab-delimited manifest.tsv, got {len(cols)}. Exiting.\n')
Jeltje commented 5 months ago

Thanks!