Skip to content

Commit

Permalink
fix: lowercase SIFs dir
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed Dec 2, 2024
1 parent c338de2 commit 1525b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ccbr_tools/pipeline/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_singularity_cachedir(output_dir=None, cache_dir=None):
def get_sif_cache_dir(hpc=None):
sif_dir = None
if hpc == "biowulf":
sif_dir = "/data/CCBR_Pipeliner/SIFS"
sif_dir = "/data/CCBR_Pipeliner/SIFs"

Check warning on line 25 in src/ccbr_tools/pipeline/cache.py

View check run for this annotation

Codecov / codecov/patch

src/ccbr_tools/pipeline/cache.py#L25

Added line #L25 was not covered by tests
elif hpc == "frce":
sif_dir = "/mnt/projects/CCBR-Pipelines/SIFs"
return sif_dir
Expand Down

0 comments on commit 1525b1c

Please sign in to comment.