Skip to content

Commit

Permalink
Update manager.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cthoyt committed Aug 13, 2019
1 parent 561827f commit 1d7f50d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bio2bel_adeptus/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def get_graph(use_tqdm: bool = False) -> BELGraph:
gene = Rna(
namespace='ncbigene',
name=entrez_name,
identifier=entrez_id,
identifier=str(entrez_id),
)

relation = POSITIVE_CORRELATION if direction == 'up' else NEGATIVE_CORRELATION
Expand All @@ -104,7 +104,7 @@ def get_graph(use_tqdm: bool = False) -> BELGraph:
citation='26261215',
evidence='ADEPTUS database',
annotations={
'bio2bel': 'adeptus',
'bio2bel': MODULE_NAME,
'ADEPTUS_PB_ROC': pb_roc,
'ADEPTUS_PN_ROC': pn_roc,
}
Expand Down

0 comments on commit 1d7f50d

Please sign in to comment.