-
When running
The file can be saved manually, but since the internet is working fine, just would like to know if there could be another cause for this error? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
If you download the file manually, then make sure it is stored in the correct location: adapter = ModelAdapterManager.getDefault;
filepath = adapter.params.path;
fullfile(filepath,'data','uniprot.tsv') If this file exists, then I'll modify |
Beta Was this translation helpful? Give feedback.
makeEcModel
callsloadDatabases
, which in turn checks if the file already exists locally, and should only download it if it does not exist.loadDatabases
will throw the error that you showed if the download fails for whatever reason. This could have to do with your internet connection, but it could also be a slow response by the UniProt server.If you download the file manually, then make sure it is stored in the correct location:
If this file exists, then
loadDatabases
should not try to download it again next time.I'll modify
loadDatabases
to provide this information in the …