-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
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
Error loading data #95
Comments
Hi, There's some potential remedies:
There's two more ideas (providing a Docker container and including the files in the windows installer) that would require some more work on our end. let me know if this helps.. best, |
Copying the *.fasta and *.csv files worked to get past that issue. I was able to load the example dataset at least. However, when I tried to load a dataset from Fragpipe (DIA data), I get a "KeyError: 57.0214". See below:
|
Most likely this entry https://github.com/MannLabs/alphamap/blob/main/alphamap/importing.py#L479 should be hit, but isn't. You could try to pre-process your data: best, |
Editing the file to change the cys mod to 57.0215 worked. Thanks for the help. |
I am trying to explore alphamap for analyzing my dataset from various search sources but I keep running into an error loading the data set. The program seems to be hanging up at the loading of the fasta file for the organism selected. Even the example data set is not loading. I am using the windows one-click installer.
The error in the dos box is:
Using frozen version. Setting SSL context to unverified.
WARNING:param.Alert00063: Setting non-parameter attribute styles={'background': 'white'} using a mechanism intended only for parameters
******* AlphaMap 0.2.0 *******
Launching server at http://localhost:64533
404 GET /favicon.ico (::1) 0.00ms
Downloading https://raw.githubusercontent.com/MannLabs/alphamap/refs/heads/main/alphamap/data/human.fasta to C:\Program Files (x86)\AlphaMap_internal\alphamap..\alphamap\data\human.fasta..
Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOLoop object at 0x000001F6A3610970>>, <Task finished name='Task-135' coro=<_needs_document_lock.._needs_document_lock_wrapper() done, defined at bokeh\server\session.py:51> exception=PermissionError(13, 'Permission denied')>)
Traceback (most recent call last):
File "tornado\ioloop.py", line 750, in _run_callback
File "tornado\ioloop.py", line 774, in _discard_future_result
File "bokeh\server\session.py", line 67, in _needs_document_lock_wrapper
File "bokeh\server\session.py", line 195, in with_document_locked
File "bokeh\document\document.py", line 1183, in wrapper
File "bokeh\document\document.py", line 1169, in _with_self_as_curdoc
File "bokeh\document\document.py", line 1182, in invoke
File "bokeh\document\document.py", line 972, in remove_then_invoke
File "panel\reactive.py", line 204, in _change_event
File "panel\reactive.py", line 187, in _process_events
File "param\parameterized.py", line 1451, in set_param
File "param\parameterized.py", line 1578, in _batch_call_watchers
File "panel\param.py", line 739, in _replace_pane
File "panel\param.py", line 663, in eval
File "param\parameterized.py", line 337, in _depends
File "alphamap\gui.py", line 1480, in upload_data
upload_organism_info()
File "alphamap\gui.py", line 1166, in upload_organism_info
full_fasta = import_fasta(select_organism.value)
File "alphamap\organisms_data.py", line 80, in import_fasta
file_path = _download_file(DATA_PATH, fasta_file_name)
File "alphamap\organisms_data.py", line 118, in _download_file
open(file_path, 'wb') as out_file:
PermissionError: [Errno 13] Permission denied: 'C:\Program Files (x86)\AlphaMap\_internal\alphamap\..\alphamap\data\human.fasta'
When I go looking for the fasta file in the data structure, I can not find the files at all.
The text was updated successfully, but these errors were encountered: