Skip to content

Commit cd538e1

Browse files
committed
Sync EGFR config file with general changes
1 parent 1dea550 commit cd538e1

File tree

1 file changed

+23
-6
lines changed

1 file changed

+23
-6
lines changed

config/egfr.yaml

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,28 @@
11
# The length of the hash used to identify a parameter combination
22
hash_length: 7
33

4-
# If true, use Singularity instead of Docker
5-
# Singularity support is only available on Unix
6-
singularity: false
4+
# Specify the container framework used by each PRM wrapper. Valid options include:
5+
# - docker (default if not specified)
6+
# - singularity -- Also known as apptainer, useful in HPC/HTC environments where docker isn't allowed
7+
# - dsub -- experimental with limited support, used for running on Google Cloud
8+
container_framework: docker
9+
10+
# Only used if container_framework is set to singularity, this will unpack the singularity containers
11+
# to the local filesystem. This is useful when PRM containers need to run inside another container,
12+
# such as would be the case in an HTCondor/OSPool environment.
13+
# NOTE: This unpacks singularity containers to the local filesystem, which will take up space in a way
14+
# that persists after the workflow is complete. To clean up the unpacked containers, the user must
15+
# manually delete them.
16+
unpack_singularity: false
17+
18+
# Allow the user to configure which container registry containers should be pulled from
19+
# Note that this assumes container names are consistent across registries, and that the
20+
# registry being passed doesn't require authentication for pull actions
21+
container_registry:
22+
base_url: docker.io
23+
# The owner or project of the registry
24+
# For example, "reedcompbio" if the image is available as docker.io/reedcompbio/allpairs
25+
owner: reedcompbio
726

827
algorithms:
928
- name: pathlinker
@@ -58,7 +77,7 @@ algorithms:
5877
- 10
5978
run2:
6079
local_search:
61-
- 'No'
80+
- "No"
6281
max_path_length:
6382
- 2
6483
rand_restarts:
@@ -112,8 +131,6 @@ reconstruction_settings:
112131
reconstruction_dir: output/egfr
113132
run: true
114133
analysis:
115-
graphspace:
116-
include: false
117134
cytoscape:
118135
include: true
119136
summary:

0 commit comments

Comments
 (0)