We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The new Downloader could accept a _file parameter to use a file object instead of a file path. Alternatively, we could use the following pattern:
import tempfile uniprot_id = 'P17612' with tempfile.NamedTemporaryFile(delete=False) as temp: Annotation.download( identifier=uniprot_id, filename=temp.name) P17612_annotation = Annotation.read(filename=temp.name)
Which is also not working right now. I will investigate.
The text was updated successfully, but these errors were encountered:
tbrittoborges
No branches or pull requests
The new Downloader could accept a _file parameter to use a file object instead of a file path. Alternatively, we could use the following pattern:
Which is also not working right now. I will investigate.
The text was updated successfully, but these errors were encountered: