forked from Reed-CompBio/spras
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Reed-CompBio#172 from jhiemstrawisc/run-spras-exec…
…utor Enable spras in CHTC with new executor and profile
- Loading branch information
Showing
7 changed files
with
127 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -141,3 +141,6 @@ TempMat.mat | |
|
||
# OSX-specific stuff | ||
**/.DS_Store | ||
|
||
# SPRAS singularity container | ||
spras.sif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Default configuration for the SPRAS/HTCondor executor profile. Each of these values | ||
# can also be passed via command line flags, e.g. `--jobs 30 --executor htcondor`. | ||
|
||
# 'jobs' specifies the maximum number of HTCondor jobs that can be in the queue at once. | ||
jobs: 30 | ||
executor: htcondor | ||
configfile: example_config.yaml | ||
# Indicate to the plugin that jobs running on various EPs do not share a filesystem with | ||
# each other, or with the AP. | ||
shared-fs-usage: none | ||
|
||
# Default resources will apply to all workflow steps. If a single workflow step fails due | ||
# to insufficient resources, it can be re-run with modified values. Snakemake will handle | ||
# picking up where it left off, and won't re-run steps that have already completed. | ||
default-resources: | ||
job_wrapper: "spras.sh" | ||
# If running in CHTC, this only works with apptainer images | ||
container_image: "spras.sif" | ||
universe: "container" | ||
# The value for request_disk should be large enough to accommodate the runtime container | ||
# image, any additional PRM container images, and your input data. | ||
request_disk: "16GB" | ||
request_memory: "8GB" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters