Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nlwashington committed Feb 10, 2016
2 parents 9c32905 + bf4514f commit 997fab2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dipper/sources/FlyBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import gzip
import io

from dipper.sources.Source import Source
from dipper.sources.PostgreSQLSource import PostgreSQLSource
from dipper.models.assoc.Association import Assoc
from dipper.models.Dataset import Dataset
from dipper.models.assoc.G2PAssoc import G2PAssoc
Expand All @@ -20,7 +20,7 @@
logger = logging.getLogger(__name__)


class FlyBase(Source):
class FlyBase(PostgreSQLSource):
"""
This is the [Drosophila Genetics](http://www.flybase.org/) resource,
from which we process genotype and phenotype data about fruitfly.
Expand Down Expand Up @@ -85,7 +85,7 @@ class FlyBase(Source):
}

def __init__(self):
Source.__init__(self, 'flybase')
super().__init__('flybase')
logger.setLevel(logging.INFO)
self.version_num = None # to be used to store the version number to be acquired later

Expand Down Expand Up @@ -1739,4 +1739,4 @@ def getTestSuite(self):

test_suite = unittest.TestLoader().loadTestsFromTestCase(FlyBaseTestCase)

return test_suite
return test_suite

0 comments on commit 997fab2

Please sign in to comment.