Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: new --singcache argument & set default singularity cache dir #143

Merged
merged 3 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
- New parameters in the config file to make certain rules optional: (#133, @kelly-sovacool)
- GO enrichment is controlled by `run_go_enrichment` (default: `false`)
- ROSE is controlled by `run_rose` (default: `false`)
- New `--singcache` argument to provide a singularity cache dir location. The singularity cache dir is automatically set inside `/data/$USER/` or `$WORKDIR/` if `--singcache` is not provided. (#143, @kelly-sovacool)

### Misc

Expand Down
18 changes: 18 additions & 0 deletions carlisle
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,8 @@ function run() {
if [ "$1" == "local" ]; then
preruncleanup

$EXPORT_SING_CACHE_DIR_CMD

snakemake -s $SNAKEFILE \
--directory $WORKDIR \
--printshellcmds \
Expand Down Expand Up @@ -305,6 +307,8 @@ function run() {

cd \$SLURM_SUBMIT_DIR

$EXPORT_SING_CACHE_DIR_CMD

snakemake -s $SNAKEFILE \
--directory $WORKDIR \
--use-singularity \
Expand Down Expand Up @@ -384,6 +388,9 @@ function main(){
-f|--force)
FORCEFLAG="ON"
;;
-c=*|--singcache=*)
SING_CACHE_DIR="${i#*=}"
;;
-v|--version)
get_version && exit 0
;;
Expand All @@ -398,6 +405,17 @@ function main(){
WORKDIR=$(readlink -m "$WORKDIR")
echo "Working Dir: $WORKDIR"

if [[ -z "$SING_CACHE_DIR" ]]; then
if [[ -d "/data/$USER" ]]; then
SING_CACHE_DIR="/data/$USER/.singularity"
else
SING_CACHE_DIR="${WORKDIR}/.singularity"
fi
echo "singularity cache dir (--singcache) is not set, using ${SING_CACHE_DIR}"
fi
mkdir -p $SING_CACHE_DIR
EXPORT_SING_CACHE_DIR_CMD="export SINGULARITY_CACHEDIR=\"${SING_CACHE_DIR}\""

case $RUNMODE in
init) init && exit 0;;
dryrun) dryrun && exit 0;;
Expand Down
12 changes: 11 additions & 1 deletion docs/user-guide/run.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@

## 3.1 Pipeline Overview

The Snakemake workflow has a multiple options:
The Snakemake workflow has a multiple options

### Required arguments

```
Usage: bash ./data/CCBR_Pipeliner/Pipelines/CARLISLE/carlisle -m/--runmode=<RUNMODE> -w/--workdir=<WORKDIR>

1. RUNMODE: [Type: String] Valid options:
*) init : initialize workdir
*) run : run with slurm
Expand All @@ -17,6 +20,13 @@ Usage: bash ./data/CCBR_Pipeliner/Pipelines/CARLISLE/carlisle -m/--runmode=<RUNM
2. WORKDIR: [Type: String]: Absolute or relative path to the output folder with write permissions.
```

### Optional arguments

--help|-h : print this help.
--version|-v : print the version of carlisle.
--force|-f : use the force flag for snakemake to force all rules to run.
--singcache|-c : singularity cache directory. Default is `/data/${USER}/.singularity` if available, or falls back to `${WORKDIR}/.singularity`. Use this flag to specify a different singularity cache directory.

## 3.2 Commands explained

The following explains each of the command options:
Expand Down