Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1008 Bytes

File metadata and controls

29 lines (23 loc) · 1008 Bytes

Project NX-421

Files Structure for Data and Output

project-root/
│
├── data/
│   └── ...                       # The struct is same as the one downloaded from Drive
│
├── output/
│   └── ...                       # All generated outputs, results, and figures are saved here
│
├── work/
│   └── ...                       # Optional: Used for temporary or intermediate processing files
│
├── ... (source code, docs, etc.)

data/

  • This directory is intended for read-only data that is used as input for analyses.
  • The struct is same as the one downloaded from Drive

output/

  • All new files, results, or figures generated by running the code should be saved here.
  • Keeps your data and results organized and prevents accidental overwriting of source data.

Note: These folders are included in .gitignore and will not be tracked by version control, in order to keep large binary files and outputs out of the repository.