Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions maxatac/analyses/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down