-
Notifications
You must be signed in to change notification settings - Fork 4
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
Metadata not readable #3
Comments
I have no experience with docker on windows but at first sight this does not look right:
Aren't you supposed to mount your files to a local location inside the docker?
Then from ethoscopy you should be able to access the file in
|
@ggilestro Yes, when I initiated the container I followed the instructions on: https://bookstack.lab.gilest.ro/books/ethoscopy/page/getting-started for windows.
I have modified it because the port 8080 did not work at first.
When I open up the container to look at the files I can see my Desktop items mounted into the container: And when I look a the Bind Mount I can see my desktop mounted as well In the Jupyter Notebook I execute the same commands after loading After trying
I still get the same error message. |
You're correctly mounting
|
@ggilestro The new path seemed to solved the metadata issue. However, I still cannot create the meta code, since I am not using an ftp server to transfer my .db files from the node to a separate computer for analysis, I do not have an ftp account.
The remote option just has the same path as local (not sure if that is correct) because the .db files are on my local computer. I get this error
If I run the next code without including remote I get this message
|
@Lblackhurst29 can you please update the documentation page ( https://bookstack.lab.gilest.ro/books/ethoscopy/page/loading-the-data ) to include the syntax to be used when loading the files directly from the machine that holds the dbs? The doc only point to the remote option. Thanks. |
Hi @defra1, this was actually an oversight from when I changed things from R and so there was no way to create a linked metadata file without an FTP server, which was silly. Given at this point even if you have it saved to a FTP sever you will have downloaded it to your local machine of have it mounted it isn't needed at all. So i've re-written that part of the code (hopefully making it quicker too) to remove the remote_dir variable, it just searches you local path for the db files. One note, for the path just give the details for the directory that contains all the data, not an individual folder. So it should be '/mnt/home/franc/Ethoscope_results/ethoscope_data/ethoscope_data_2/results/' for you. The function searches all the sub directories, so it has the potential to break. If you could use the newest version - 1.2.24 - and see if that works you. It looks to working within our systems (all linux), however I don't have a windows machine to test it on. But I re-wrote it with windows in mind. Just call etho.link_meta_index(meta_loc, local) now The docs should also be updated to reflect the changes. |
@Lblackhurst29 Thank you for upgrading the documentation. When I open up a new notebook with the python3 kernal and type in
There is probably a simple solution to this, I have upgraded pip, and restarted the kernal, but none of this has worked to get the newer version. Would you have any other suggestions? Perhaps this is a windows issue? I do not have access to a linux computer unfortunately. |
@Lblackhurst29 Forget the last comment, I was able to find the latest version and install it and now I don't have any errors with the meta command. |
Hi, I am trying out ethoscopy to analyse my ethoscope data on my windows 11 Pro.
When I load my metadata.csv file (which I have been able to use with the Rethomics analysis software in R), it says that it is not readable.
I am using docker desktop for windows.
See the code below:
etho.__version__
'1.2.9'
import ethoscopy as etho import pandas as pd
meta_loc = '/c/Users/franc/Desktop/Ethoscope_results/ethoscope_data/ethoscope_data 2/metadata.csv'
remote = '/c/Users/franc/Desktop/Ethoscope_results/ethoscope_data/ethoscope_data 2/results/00190f0080e54d9c906f304a8222fa8c/ETHOSCOPE_001/2022-08-23_03-33-59/'
the data is saved on my computer after being downloaded from the node
local = '/c/Users/franc/Desktop/Ethoscope_results/ethoscope_data/ethoscope_data 2/results/00190f0080e54d9c906f304a8222fa8c/ETHOSCOPE_001/2022-08-23_03-33-59/'
meta = etho.link_meta_index(meta_loc, remote, local)
This is the format of my metadata.csv file:
<style> </style>It is saved as a UTF-8(Comma delimited) (*.csv). Thank you
The text was updated successfully, but these errors were encountered: