Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,6 @@ The project is: _in progress_.
## Room for Improvement
Room for improvement:
- Better tests
- Try incorporating unipressed
- Improve overlap computations

To do:
- Support for more species
Expand Down
2 changes: 1 addition & 1 deletion src/sponge/modules/ppi_retriever/ppi_retriever.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def retrieve_ppi(
print ('Checking the conflicts in the UniProt database...')
mapper = ProteinIDMapper(self.protein_url)
uniprot_df = mapper.get_uniprot_mapping('Gene_Name', 'UniProtKB',
ids_to_check).set_index('from')
ids_to_check, taxonomy_id=9606).set_index('from')
p_to_q = {p: q for q,p in zip(diff_df['queryName'],
diff_df['preferredName'])}
# Keep the conflicts where there is a match or where one or both
Expand Down