You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This variable holds the path to your sample sheet, where each line corresponds to a folding job. For this pipeline we use the following format specification:
@@ -134,7 +206,7 @@ After following the Installation and Configuration steps, you are now ready to r
134
206
snakemake \
135
207
--use-singularity \
136
208
--singularity-args "-B /scratch:/scratch \
137
-
-B /g/kosinski:/g/kosinski \
209
+
--bind /my/disk:/my/disk \
138
210
--nv " \
139
211
--jobs 200 \
140
212
--restart-times 5 \
@@ -151,7 +223,7 @@ Here's a breakdown of what each argument does:
151
223
-`--use-singularity`: Enables the use of Singularity containers. This allows for reproducibility and isolation of the pipeline environment.
152
224
153
225
-`--singularity-args`: Specifies arguments passed directly to Singularity. In the provided example:
154
-
-`-B /scratch:/scratch` and `-B /g/kosinski:/g/kosinski`: These are bind mount points. They make directories from your host system accessible within the Singularity container. `--nv` ensures the container can make use of the hosts GPUs.
226
+
-`--bind /scratch:/scratch` and `--bind /my/disk:/my/disk`: These are bind mount points. They make directories from your host system accessible within the Singularity container. `--nv` ensures the container can make use of the hosts GPUs.
155
227
156
228
-`--profile name_of_your_profile`: Specifies the Snakemake profile to use (e.g., the SLURM profile you set up for cluster execution).
0 commit comments