Skip to content

Commit

Permalink
refactor: default tmp dir and shared resources dir are None
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed Aug 5, 2024
1 parent c9e9984 commit 36c52e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renee/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ def launch_gui(sub_args, debug=True):
dry_run=True,
sif_cache=get_sif_cache_dir(),
singularity_cache=os.environ["SINGULARITY_CACHEDIR"],
tmp_dir=get_tmp_dir("", output_dir),
shared_resources=get_shared_resources_dir("", output_dir),
tmp_dir=get_tmp_dir(None, output_dir),
shared_resources=get_shared_resources_dir(None, output_dir),
star_2_pass_basic=False,
small_rna=False,
create_nidap_folder=False,
Expand Down

0 comments on commit 36c52e0

Please sign in to comment.