From ea3d2355334c6aa88e838d6ab0f1e658f1be831e Mon Sep 17 00:00:00 2001 From: "Akshata N. Rudrapatna" <139808049+ANRudrapatna@users.noreply.github.com> Date: Mon, 8 Sep 2025 02:15:13 -0400 Subject: [PATCH] Update data.py These edits (1) prevent conflicts with other versions of maxATAC and (2) reflect the name of the installed repository. --- maxatac/analyses/data.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/maxatac/analyses/data.py b/maxatac/analyses/data.py index 813af3c..36dd657 100644 --- a/maxatac/analyses/data.py +++ b/maxatac/analyses/data.py @@ -15,11 +15,11 @@ def run_data(args): # Path to the directory where the project data should be installed. Default: ~/opt base_dir = get_dir(args.output) - # Path to the maxATAC directory in the install directory. Default: ~/opt/maxatac - maxatac_dir = get_dir(os.path.join(base_dir, "maxatac")) + # Path to the maxATAC directory in the install directory. Default: ~/opt/quant-maxatac + maxatac_dir = get_dir(os.path.join(base_dir, "quant-maxatac")) - # Path the repo directory and the final directory. Default: ~/opt/maxatac/maxATAC_data - maxatac_repo_dir = os.path.join(maxatac_dir, "maxATAC_data") + # Path the repo directory and the final directory. Default: ~/opt/maxatac/quant-maxATAC_data + maxatac_repo_dir = os.path.join(maxatac_dir, "quant-maxATAC_data") # Path final directory (it is renamed for simplicity). Default: ~/opt/maxatac/data maxatac_final_dir = os.path.join(maxatac_dir, "data")