|
1 | 1 | # The length of the hash used to identify a parameter combination |
2 | 2 | hash_length: 7 |
3 | 3 |
|
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 |
7 | 26 |
|
8 | 27 | algorithms: |
9 | 28 | - name: pathlinker |
@@ -58,7 +77,7 @@ algorithms: |
58 | 77 | - 10 |
59 | 78 | run2: |
60 | 79 | local_search: |
61 | | - - 'No' |
| 80 | + - "No" |
62 | 81 | max_path_length: |
63 | 82 | - 2 |
64 | 83 | rand_restarts: |
@@ -112,8 +131,6 @@ reconstruction_settings: |
112 | 131 | reconstruction_dir: output/egfr |
113 | 132 | run: true |
114 | 133 | analysis: |
115 | | - graphspace: |
116 | | - include: false |
117 | 134 | cytoscape: |
118 | 135 | include: true |
119 | 136 | summary: |
|
0 commit comments