File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -176,6 +176,18 @@ In case of issues, check out the following:
176176* [ Issues] ( https://github.com/MannLabs/alphadia/issues ) : Try a few different search terms to find out if a similar problem has been encountered before
177177* [ Discussions] ( https://github.com/MannLabs/alphadia/discussions ) : Check if your problem or feature requests has been discussed before.
178178
179+ ### Problem: Error when downloading the peptdeep pretrained models
180+ If on startup you receive an error like
181+ ` FileNotFoundError: [Errno 2] No such file or directory: '<some_directory>/peptdeep/pretrained_models' ` ,
182+ it could be due to missing write permissions on ` <some_directory> ` .
183+
184+ #### Solution
185+ For now, you need to create this directory yourself and manually download the file
186+ ```
187+ mkdir -p <some_directory>/peptdeep/pretrained_models && cd <some_directory>/peptdeep/pretrained_models
188+ wget https://github.com/MannLabs/alphapeptdeep/releases/download/pre-trained-models/pretrained_models.zip
189+ ```
190+
179191---
180192## Citations
181193
Original file line number Diff line number Diff line change 1212import matplotlib .pyplot as plt
1313import pandas as pd
1414
15- from tests .e2e_tests .prepare_test_data import OUTPUT_DIR_NAME , get_test_case
15+ try :
16+ from tests .e2e_tests .prepare_test_data import OUTPUT_DIR_NAME , get_test_case
17+ except ModuleNotFoundError :
18+ from prepare_test_data import OUTPUT_DIR_NAME , get_test_case
1619
1720try :
1821 import neptune
You can’t perform that action at this time.
0 commit comments