Skip to content

Commit

Permalink
Minor codestyle optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
joeflack4 committed Apr 29, 2024
1 parent a279938 commit a0ea865
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion omim2obo/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,8 @@ def omim2obo(use_cache: bool = False):
# - https://github.com/monarch-initiative/omim/issues/78
rows = []
for row in [
x['morbidmap.txt_original_row'] for x in issues['morbid_map']['issue:nonNumericPhenotypeId'].values()]:
x['morbidmap.txt_original_row'] for x in issues['morbid_map']['issue:nonNumericPhenotypeId'].values()
]:
new_row = {}
new_row['Phenotype'], new_row['Gene Symbols'], new_row['MIM Number'], new_row['Cyto Location'] = \
row.split('\t')
Expand Down

0 comments on commit a0ea865

Please sign in to comment.