Skip to content

Commit

Permalink
don't make index
Browse files Browse the repository at this point in the history
  • Loading branch information
Haibao Tang committed Jun 8, 2024
1 parent 467f41a commit 0cfda75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jcvi/formats/gff.py
Original file line number Diff line number Diff line change
Expand Up @@ -2829,9 +2829,9 @@ def note(args):
if type:
type = type.split(",")

g = make_index(gffile)
exoncounts = {}
if opts.exoncount:
g = make_index(gffile)
for feat in g.features_of_type("mRNA"):
nexons = 0
for c in g.children(feat.id, 1):
Expand All @@ -2851,7 +2851,7 @@ def note(args):
if AED is not None and float(g.attributes["_AED"][0]) > AED:
continue
keyval = [g.accn] + [
",".join(g.attributes[x]) for x in attrib if x in g.attributes
",".join(g.attributes.get(x, ["nan"])) for x in attrib
]
if exoncounts:
nexons = exoncounts.get(g.accn, 0)
Expand Down

0 comments on commit 0cfda75

Please sign in to comment.