Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
cmungall committed May 2, 2017
1 parent 7bc4b76 commit f09029c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions notebooks/Phenotype_Enrichment.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,14 @@
" print(\"{:8.3g} {} {:40s}\".format(r['p'],r['c'],str(r['n'])))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Given that the initial gene set is for retinitis pigmentosa genes, it's not surprising that enriched phenotype\n",
"terms are related to retinal degeneration"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down
2 changes: 1 addition & 1 deletion ontobio/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.5'
__version__ = '0.1.6'
5 changes: 3 additions & 2 deletions ontobio/golr/golr_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,9 @@ def exec(self, **kwargs):

# map go-golr fields to standard
for d in results.docs:
d['id'] = d['entity']
d['label'] = d['entity_label']
if 'entity' in d:
d['id'] = d['entity']
d['label'] = d['entity_label']
payload = {
'facet_counts': translate_facet_field(fcs),
'pagination': {},
Expand Down

0 comments on commit f09029c

Please sign in to comment.