Skip to content

Commit

Permalink
fixing import path
Browse files Browse the repository at this point in the history
  • Loading branch information
adkinsrs committed Dec 15, 2023
1 parent f87ce30 commit 6c0ead9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/gear/orthology.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# orthology.py - functions related to orthology mapping

import sys
import pandas as pd

from pathlib import Path
from .. import geardb
# append parent directory to path
sys.path.append(str(Path(__file__).resolve().parents[1]))

import geardb

organisms = geardb.OrganismCollection().get_all()

Expand Down

0 comments on commit 6c0ead9

Please sign in to comment.