diff --git a/scripts/README.md b/scripts/README.md new file mode 100644 index 0000000..ab5e913 --- /dev/null +++ b/scripts/README.md @@ -0,0 +1,7 @@ +# Miscellaneous Scripts + +This folder contains miscellaneous scripts that are not directly involved in running the bdi-kit library. These scripts serve as utilities for preprocessing or post-processing data required by bdi-kit. + +Below are the subfolders and their purposes: + +- `format_schema`: Contains scripts for formatting various schemas into the bdi-kit format. These scripts generate the resources used by bdi-kit. \ No newline at end of file diff --git a/scripts/format_gdc.py b/scripts/format_schema/format_gdc.py similarity index 93% rename from scripts/format_gdc.py rename to scripts/format_schema/format_gdc.py index 5dbe996..fbad068 100644 --- a/scripts/format_gdc.py +++ b/scripts/format_schema/format_gdc.py @@ -3,7 +3,7 @@ RAW_GDC_PATH = join(dirname(__file__), "./gdc_raw_schema.json") -FORMATTED_GDC_PATH = join(dirname(__file__), "../bdikit/resource/gdc_schema.json") +FORMATTED_GDC_PATH = join(dirname(__file__), "../../bdikit/resource/gdc_schema.json") metadata = {} diff --git a/scripts/gdc_raw_schema.json b/scripts/format_schema/gdc_raw_schema.json similarity index 100% rename from scripts/gdc_raw_schema.json rename to scripts/format_schema/gdc_raw_schema.json