Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions ontobio/assoc_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self):
initializes based on an ontology name
"""

def create(self, ontology=None,subject_category=None,object_category=None,evidence=None,taxon=None,relation=None, file=None, fmt=None):
def create(self, ontology=None,subject_category=None,object_category=None,evidence=None,taxon=None,relation=None, file=None, fmt=None, solr_url=None):
"""
creates an AssociationSet

Expand Down Expand Up @@ -61,7 +61,8 @@ def create(self, ontology=None,subject_category=None,object_category=None,eviden
assocs = bulk_fetch_cached(subject_category=subject_category,
object_category=object_category,
evidence=evidence,
taxon=taxon)
taxon=taxon,
url=solr_url)

logging.info("Creating map for {} subjects".format(len(assocs)))

Expand Down