From a81e0a24c0d3fd1335fd89ef7fa2225f9c0b55f6 Mon Sep 17 00:00:00 2001 From: Roque Lopez Date: Mon, 6 Jan 2025 10:49:21 -0500 Subject: [PATCH] refactor: Rename file --- bdikit/resource/{gdc_data.json => gdc_schema.json} | 0 bdikit/standards/gdc.py | 2 +- scripts/format_gdc.py | 4 ++-- scripts/{gdc_schema.json => gdc_raw_schema.json} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename bdikit/resource/{gdc_data.json => gdc_schema.json} (100%) rename scripts/{gdc_schema.json => gdc_raw_schema.json} (100%) diff --git a/bdikit/resource/gdc_data.json b/bdikit/resource/gdc_schema.json similarity index 100% rename from bdikit/resource/gdc_data.json rename to bdikit/resource/gdc_schema.json diff --git a/bdikit/standards/gdc.py b/bdikit/standards/gdc.py index ddf83553..8ba2ee49 100644 --- a/bdikit/standards/gdc.py +++ b/bdikit/standards/gdc.py @@ -5,7 +5,7 @@ from bdikit.standards.base import BaseStandard -GDC_SCHEMA_PATH = join(dirname(__file__), "../resource/gdc_data.json") +GDC_SCHEMA_PATH = join(dirname(__file__), "../resource/gdc_schema.json") class GDC(BaseStandard): diff --git a/scripts/format_gdc.py b/scripts/format_gdc.py index bac3c03b..5dbe9962 100644 --- a/scripts/format_gdc.py +++ b/scripts/format_gdc.py @@ -2,8 +2,8 @@ from os.path import join, dirname -RAW_GDC_PATH = join(dirname(__file__), "./gdc_schema.json") -FORMATTED_GDC_PATH = join(dirname(__file__), "../bdikit/resource/gdc_data.json") +RAW_GDC_PATH = join(dirname(__file__), "./gdc_raw_schema.json") +FORMATTED_GDC_PATH = join(dirname(__file__), "../bdikit/resource/gdc_schema.json") metadata = {} diff --git a/scripts/gdc_schema.json b/scripts/gdc_raw_schema.json similarity index 100% rename from scripts/gdc_schema.json rename to scripts/gdc_raw_schema.json