Skip to content

Commit

Permalink
eom extends PostgreSQLSource
Browse files Browse the repository at this point in the history
  • Loading branch information
kshefchek committed Feb 7, 2016
1 parent 2d169b2 commit a33f629
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dipper/sources/EOM.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import logging
import csv

from dipper.sources.Source import Source
from dipper.sources.PostgreSQLSource import PostgreSQLSource
from dipper.models.Dataset import Dataset
from dipper import config
from dipper import curie_map
Expand All @@ -15,7 +15,7 @@
logger = logging.getLogger(__name__)


class EOM(Source):
class EOM(PostgreSQLSource):
"""
Elements of Morphology is a resource from NHGRI that has definitions of morphological abnormalities,
together with image depictions. We pull those relationships, as well as our local mapping of equivalences
Expand Down Expand Up @@ -46,7 +46,7 @@ class EOM(Source):
}

def __init__(self):
Source.__init__(self, 'eom')
super().__init__('eom')
self.namespaces.update(curie_map.get())

# update the dataset object with details about this resource
Expand Down

0 comments on commit a33f629

Please sign in to comment.