Skip to content

Commit

Permalink
Merge pull request #149 from CCBR/module-versions
Browse files Browse the repository at this point in the history
fix: less specific module versions
  • Loading branch information
kelly-sovacool authored Oct 10, 2024
2 parents a1bf3d2 + 59c5f08 commit 2e7691b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## CARLISLE development version

- Load the module for snakemake v7, but do not specify the minor and patch versions. (#149, @kelly-sovacool)

## CARLISLE 2.6.0

### Bug fixes
Expand Down
6 changes: 1 addition & 5 deletions carlisle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
#
# DISCLAIMER: This wrapper only works on BIOWULF

PYTHON_VERSION="python/3.9"
SNAKEMAKE_VERSION="snakemake/7.19.1"
SNAKEMAKE_VERSION="snakemake/7"
SINGULARITY_VERSION="singularity"

set -eo pipefail
Expand Down Expand Up @@ -156,7 +155,6 @@ function rescript(){
function runcheck(){
# Check "job-essential" files and load required modules
check_essential_files
module load $PYTHON_VERSION
module load $SNAKEMAKE_VERSION
}

Expand Down Expand Up @@ -211,7 +209,6 @@ function runlocal() {
}

function runtest() {
module load $PYTHON_VERSION
module load $SNAKEMAKE_VERSION
module load $SINGULARITY_VERSION
check_essential_files
Expand Down Expand Up @@ -301,7 +298,6 @@ function run() {
#SBATCH --time=96:00:00
#SBATCH --cpus-per-task=2
module load $PYTHON_VERSION
module load $SNAKEMAKE_VERSION
module load $SINGULARITY_VERSION
Expand Down

0 comments on commit 2e7691b

Please sign in to comment.