Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hkir-dev committed Dec 11, 2023
1 parent 98159b0 commit 71d1d91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/tdta/anndata_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 71d1d91

Please sign in to comment.