Move data cleaning scripts to clean module
This commit is contained in:
parent
87be49f30f
commit
3b78a84782
7 changed files with 5 additions and 5 deletions
|
|
@ -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
0
code/clean/__init__.py
Normal file
8
justfile
8
justfile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue