Move data cleaning scripts to clean module

This commit is contained in:
Marty Oehme 2025-10-09 16:19:52 +02:00
parent 87be49f30f
commit 3b78a84782
Signed by: Marty
GPG key ID: 4E535BC19C61886E
7 changed files with 5 additions and 5 deletions

View file

@ -9,7 +9,7 @@ Any action can easily be started using [`just`](https://github.com/casey/just) w
## Dataset structure
- All inputs (i.e. building blocks from other sources) are located in `input/`.
- All custom code is located in `src/`.
- All custom code is located in `code/`.
- All final output data is located in `output/`
## Output data structure

0
code/clean/__init__.py Normal file
View file

View file

@ -5,16 +5,16 @@ clean: files kernels unique packages
test:
files:
python code/files.py input output
python code/clean/files.py input output
kernels:
python code/kernels.py input output
python code/clean/kernels.py input output
unique:
python code/unique.py input output
python code/clean/unique.py input output
packages:
python code/packages.py input output
python code/clean/packages.py input output
versioned:
#!/usr/bin/env bash