Skip to content

Commit

Permalink
Update uniprot.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SamCox822 authored Aug 12, 2024
1 parent 202d982 commit 06f09f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mdagent/tools/base_tools/preprocess_tools/uniprot.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def get_sequence_info(self, query: str, primary_accession: str) -> dict:
- 'crc64': The CRC64 hash of the protein sequence (probably not useful)
- 'md5': The MD5 hash of the protein sequence (probably not useful)
"""
seq_info = self.data = self.get_data(query, desired_field="sequence")
seq_info = self.get_data(query, desired_field="sequence")
if not seq_info:
return {}
seq_info_specific = self._match_primary_accession(seq_info, primary_accession)[
Expand Down

0 comments on commit 06f09f7

Please sign in to comment.