diff --git a/setup.py b/setup.py index e1e44ac..7ee4422 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="tdta", - version="0.0.4.dev5", + version="0.1.0.dev1", description="The aim of this project is to provide taxonomy development tools custom actions.", long_description=README, long_description_content_type="text/markdown", diff --git a/src/tdta/anndata_export.py b/src/tdta/anndata_export.py index 76729fc..b8dddf2 100644 --- a/src/tdta/anndata_export.py +++ b/src/tdta/anndata_export.py @@ -16,7 +16,7 @@ def export_anndata(sqlite_db: str, json_file: str, output_file: str, dataset_cac :param output_file: output anndata path :param dataset_cache_folder: anndata cache folder path """ - project_config = read_project_config(Path(output_file).parent.absolute()) + project_config = read_project_config(Path(json_file).parent.absolute()) if "matrix_file_id" in project_config: export_cas_data(sqlite_db, json_file, dataset_cache_folder) matrix_file_id = str(project_config["matrix_file_id"]).strip()