Skip to content

Commit 033a883

Browse files
committed
support Braker GFF3 parsing per bug #1109
1 parent f3cd7ac commit 033a883

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

funannotate/library.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5326,7 +5326,7 @@ def gff2dict(file, fasta, Genes, debug=False, gap_filter=False):
53265326
for i in range(0, len(v["ids"])):
53275327
if k not in Genes: # capture if gene was removed
53285328
continue
5329-
if v["type"] in ["mRNA", "tRNA", "ncRNA", "rRNA"]:
5329+
if v["type"] in ["mRNA", "tRNA", "ncRNA", "rRNA", "transcript"]:
53305330
if v["strand"] == "+":
53315331
sortedExons = sorted(v["mRNA"][i], key=lambda tup: tup[0])
53325332
else:

0 commit comments

Comments
 (0)