File tree 3 files changed +30
-0
lines changed 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,8 @@ customise the execution with various options:
117
117
118
118
* ``trace `` - A filename for a trace file to generate. This will be an TSV file containing runtime information about the pipeline execution.
119
119
120
+ * ``resume `` - Whether to resume an existing execution. Can be ``True `` or the UUID of an existing execution to resume from.
121
+
120
122
121
123
Custom Runners
122
124
~~~~~~~~~~~~~~
@@ -167,6 +169,8 @@ properties for:
167
169
168
170
* ``identifier `` - The unique ID of that run, generated by Nextflow.
169
171
172
+ * ``uuid `` - The unique UUID of the session, generated by Nextflow.
173
+
170
174
* ``started `` - When the pipeline ran (as a Python datetime).
171
175
172
176
* ``finished `` - When the pipeline completed (as a Python datetime).
@@ -221,6 +225,8 @@ following properties:
221
225
222
226
* ``bash `` - the bash file contents generated for the process execution.
223
227
228
+ * ``cached `` - whether the process execution was cached.
229
+
224
230
Process executions can have various files passed to them, and will create files
225
231
during their execution too. These can be obtained as follows:
226
232
@@ -238,6 +244,15 @@ during their execution too. These can be obtained as follows:
238
244
Changelog
239
245
---------
240
246
247
+ Release 0.10.0
248
+ ~~~~~~~~~~~~~~
249
+
250
+ `20th March, 2025 `
251
+
252
+ * Added support for execution resuming.
253
+ * You can now specify separate paths for the log file and work directory.
254
+
255
+
241
256
Release 0.9.0
242
257
~~~~~~~~~~~~~
243
258
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
---------
3
3
4
+ Release 0.10.0
5
+ ~~~~~~~~~~~~~~
6
+
7
+ `20th March, 2025 `
8
+
9
+ * Added support for execution resuming.
10
+ * You can now specify separate paths for the log file and work directory.
11
+
12
+
4
13
Release 0.9.0
5
14
~~~~~~~~~~~~~
6
15
Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ customise the execution with various options:
37
37
38
38
* ``trace `` - A filename for a trace file to generate. This will be an TSV file containing runtime information about the pipeline execution.
39
39
40
+ * ``resume `` - Whether to resume an existing execution. Can be ``True `` or the UUID of an existing execution to resume from.
41
+
40
42
41
43
Custom Runners
42
44
~~~~~~~~~~~~~~
@@ -87,6 +89,8 @@ properties for:
87
89
88
90
* ``identifier `` - The unique ID of that run, generated by Nextflow.
89
91
92
+ * ``uuid `` - The unique UUID of the session, generated by Nextflow.
93
+
90
94
* ``started `` - When the pipeline ran (as a Python datetime).
91
95
92
96
* ``finished `` - When the pipeline completed (as a Python datetime).
@@ -141,6 +145,8 @@ following properties:
141
145
142
146
* ``bash `` - the bash file contents generated for the process execution.
143
147
148
+ * ``cached `` - whether the process execution was cached.
149
+
144
150
Process executions can have various files passed to them, and will create files
145
151
during their execution too. These can be obtained as follows:
146
152
You can’t perform that action at this time.
0 commit comments