From 3b78a84782598af668d2a7e28d70c23f19a124e3 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 9 Oct 2025 16:19:52 +0200 Subject: [PATCH] Move data cleaning scripts to clean module --- README.md | 2 +- code/clean/__init__.py | 0 code/{ => clean}/files.py | 0 code/{ => clean}/kernels.py | 0 code/{ => clean}/packages.py | 0 code/{ => clean}/unique.py | 0 justfile | 8 ++++---- 7 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 code/clean/__init__.py rename code/{ => clean}/files.py (100%) rename code/{ => clean}/kernels.py (100%) rename code/{ => clean}/packages.py (100%) rename code/{ => clean}/unique.py (100%) diff --git a/README.md b/README.md index 2ef42d2..4991625 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/code/clean/__init__.py b/code/clean/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/code/files.py b/code/clean/files.py similarity index 100% rename from code/files.py rename to code/clean/files.py diff --git a/code/kernels.py b/code/clean/kernels.py similarity index 100% rename from code/kernels.py rename to code/clean/kernels.py diff --git a/code/packages.py b/code/clean/packages.py similarity index 100% rename from code/packages.py rename to code/clean/packages.py diff --git a/code/unique.py b/code/clean/unique.py similarity index 100% rename from code/unique.py rename to code/clean/unique.py diff --git a/justfile b/justfile index 77844db..905a976 100644 --- a/justfile +++ b/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