Skip to content
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

Discuss Miniscope input folder expected structure #356

Open
h-mayorquin opened this issue Sep 10, 2024 · 8 comments
Open

Discuss Miniscope input folder expected structure #356

h-mayorquin opened this issue Sep 10, 2024 · 8 comments

Comments

@h-mayorquin
Copy link
Collaborator

Currently in the gin example file we have this structure:

    C6-J588_Disc5/ (main folder)
    ├── 15_03_28/ (subfolder corresponding to the recording time)
    │   ├── Miniscope/ (subfolder containing the microscope video stream)
    │   │   ├── 0.avi (microscope video)
    │   │   ├── metaData.json (metadata for the microscope device)
    │   │   └── timeStamps.csv (timing of this video stream)
    │   ├── BehavCam_2/ (subfolder containing the behavioral video stream)
    │   │   ├── 0.avi (bevavioral video)
    │   │   ├── metaData.json (metadata for the behavioral camera)
    │   │   └── timeStamps.csv (timing of this video stream)
    │   └── metaData.json (metadata for the recording, such as the start time)
    ├── 15_06_28/
    │   ├── Miniscope/
    │   ├── BehavCam_2/
    │   └── metaData.json
    └── 15_12_28/

And in the test we pass to the extractor the folder that is at the top level:

cls.folder_path = Path(OPHYS_DATA_PATH / "imaging_datasets" / "Miniscope" / "C6-J588_Disc5")
cls.file_paths = [

However, this structure with a parent folder that contains multiple (and only) datasets of miniscope is not available in my current working project. There I have:

├── 10_11_24
│   ├── metaData.json
│   ├── Miniscope
│   │   ├── 0.avi
│   │   ├── 1.avi
│   │   ├── 2.avi
│   │   ├── 3.avi
│   │   ├── 4.avi
│   │   ├── 5.avi
│   │   ├── 6.avi
│   │   ├── 7.avi
│   │   ├── 8.avi
│   │   ├── headOrientation.csv
│   │   ├── metaData.json
│   │   ├── minian.mp4
│   │   └── timeStamps.csv
│   └── notes.csv
├── Ca_EEG2-1_FC_FreezingOutput.csv
├── Ca_EEG2-1_FC.raw
├── Ca_EEG2-1_FC.txt
└── Ca_EEG2-1_FC.wmv

It appears to me that the natural thing to pass to the extractor is the folder where the videos are. Why are we passing the parent folder? I tried to look for documentation of where this output is coming from without luck here:

https://github.com/Aharoni-Lab/Miniscope-DAQ-QT-Software

@weiglszonja @pauladkisson do you know? how do you think about this?

@weiglszonja
Copy link
Contributor

The reason for passing the parent folder was because the example that we have on gin consists of multiple subfolders with avi files that belong to the same recording session.

On the other hand if we provided one of the subfolders like Path(OPHYS_DATA_PATH / "imaging_datasets" / "Miniscope" / "C6-J588_Disc5" / "15_03_28" ) I would expect the extractor should still work, and consider it a bug if it doesn't.

@h-mayorquin are you suggesting this is the case with your example?

FYI @alessandratrapani, I believe you also have Miniscope data in your current conversion.

@h-mayorquin
Copy link
Collaborator Author

On the other hand if we provided one of the subfolders like Path(OPHYS_DATA_PATH / "imaging_datasets" / "Miniscope" / "C6-J588_Disc5" / "15_03_28" ) I would expect the extractor should still work, and consider it a bug if it doesn't.

Yes, that does not work for the data of Cai.

The reason for passing the parent folder was because the example that we have on gin consists of multiple subfolders with avi files that belong to the same recording session.

Yeah, I disagree with this. I think that it would be better if the extractor was more specific. The user can add two interfaces for each collection of raw data if so they desire. Otherwise, we don't have the option of not adding the data.

@pauladkisson
Copy link
Member

I think that it would be better if the extractor was more specific.

In particular, these extractors should be scoped per-session, but it looks like this one takes a folder path with multiple sessions (dates), so it probably needs to be changed.

@h-mayorquin
Copy link
Collaborator Author

h-mayorquin commented Sep 11, 2024

In particular, these extractors should be scoped per-session

What do you mean? You mean that it should load all the data corresponding to that session?

Interfaces in neuroconv should not work like that and an extractor making that assumption would make things difficult.

Is that a decision that you guys made or are you talking about some specific knowledge about this format?

@weiglszonja
Copy link
Contributor

weiglszonja commented Sep 11, 2024

In particular, these extractors should be scoped per-session, but it looks like this one takes a folder path with multiple sessions (dates), so it probably needs to be changed.

@pauladkisson the example from the Tye lab that we have on gin is still a single session; just saved to multiple folders. apologise if that wasn't clear.

@pauladkisson
Copy link
Member

he example from the Tye lab that we have on gin is still a single session; just saved to multiple folders. apologise if that wasn't clear.

My bad, for some reason 15_03_28 registered in my mind as a date rather than a time. If all of those subfolders are part of the same session then my comment makes much less sense.

@h-mayorquin
Copy link
Collaborator Author

Ok, I managed to found the specification in the Miniscope page and surprise... it does not correspond to either the structure of the gin data (coming from the Tye Lab) or my current project:

http://miniscope.org/index.php/Data_Acquisition_Software

So what gives? I will ask the experimenter in our next meeting if he did change the file structure to try to get to the bottom of this.

@h-mayorquin
Copy link
Collaborator Author

OK, there is also a versioning issue. I will push a fix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants