Output structure - galizia-lab/pyview GitHub Wiki
Output directory structure overview
Movies, traces and tapestry outputs generated by VIEW are organized in the following structure:
"Output" Folder
|
├── tapestries
| |
| ├── ......
| └── ......
|
├── ProcessedDataExported
| |
│ ├── MAT
| | ├── .....
| | └── .....
| |
│ ├── .....
|
├── animal1
| |
│ ├── movies
| | ├── .....
| | └── .....
| |
│ └── traces
| ├── .....
| └── .....
|
|
├── animal2
| |
│ ├── movies
| | ├── .....
| | └── .....
| |
│ └── traces
| ├── .....
| └── .....
|
| ....................
| ....................
Detailed structure with file description
"Output" Folder
|
├── tapestries
| ├── tapestry1 (folder containing the overviews as image files)
│ ├── tapestry1.html (the tapestry)
│ ├── create_tapestry.py (back up created while creating tapestry)
│ ├── started_at_2019-11-25-16-30-48n4at7t_i.log (log of the tapestry creation process)
│ ├── tapestry_default.yml (back up created while creating tapestry)
│ ├── usage_till.yml (back up created while creating tapestry)
| |
│ ├── tapestry2 (folder containing the overviews as image files)
│ ├── tapestry2.html (the tapestry)
| ├── .....
| └── .....
|
|
├── ProcessedDataExported
| ├── MAT
| │ ├── export_processed_data_as_mat_files.py (back up of the script used for exporting)
| │ ├── started_at_2019-11-26-16-56-37c81weand.log (log during exporting)
| │ └── usage_till.yml (back up of the YML used during exporting)
| |
│ └── ...
|
|
├── animal 1
| ├── movies
| │ ├── export_movies.py (back up created while generating movie)
| │ ├── started_at_2019-11-26-16-56-37c81weand.log (log of the movie generation process)
| │ └── usage_till.yml (back up created while generating movie)
| │ ├── measurement1.tif (or .mp4)
| │ ├── measurement2.tif
| | ├── .....
| | └── .....
| |
│ └── traces
│ ├── export_traces.py (back up created while exporting traces)
│ ├── started_at_2019-11-26-16-42-03k069pdx7.log (log of the trace export process)
│ ├── usage_till.yml (back up created while exporting traces)
│ ├── measurement1.gloDatamix.csv
│ ├── measurement2.gloDatamix.csv
| ├── .....
| └── .....
|
|
├── animal 1
| ....................
| ....................