Countoscope / countoscope

Python codes for the Countoscope
https://countoscope.github.io/
MIT License
1 stars 0 forks source link

Handling of 3D data #4

Open adamrobcarter opened 2 months ago

adamrobcarter commented 2 months ago

This is related to the section of the code that parses our "x, y, t" data

This line:

https://github.com/Countoscope/countoscope/blob/a2b1ae7ae355250c98c05f063bc3e3a6fbf2a3c3/countoscope/tools.py#L30

is gonna cause problems, because we also use a format that is rows of "x, y, t, ID" (where ID is a unique integer for each particle in the dataset). I don't think we're using rows of "x, y, z, t" at any point at the moment, so maybe we don't need this 3D detection. Maybe we should formalise our format

simongravelle commented 2 months ago

We should definitely decide on what formats we are allowing.

In practice, it does not matter so much, as the converter is outside the code anyway. So we could have as many converters as we have file formats.

simongravelle commented 2 months ago

Ideally, we will need to have all the possible type of trajectory files within the "datasets" repository, so that we have a good overview of what we need to be able to import.