Skip to content
Snippets Groups Projects
Commit 72868917 authored by Celine Noirot's avatar Celine Noirot
Browse files

Do not crash on gff3 empty line

parent f61ab76b
No related branches found
No related tags found
No related merge requests found
......@@ -173,6 +173,8 @@ class GFF3IO:
self._line += 1
if line.startswith('#') :
continue
if line == "" :
continue
try:
gff_record = GFF3Record.fromGff(line)
except:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment