Skip to content

Commit acc6efd

Browse files
committed
0.10 docs
1 parent cd99156 commit acc6efd

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

README.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ customise the execution with various options:
117117

118118
* ``trace`` - A filename for a trace file to generate. This will be an TSV file containing runtime information about the pipeline execution.
119119

120+
* ``resume`` - Whether to resume an existing execution. Can be ``True`` or the UUID of an existing execution to resume from.
121+
120122

121123
Custom Runners
122124
~~~~~~~~~~~~~~
@@ -167,6 +169,8 @@ properties for:
167169

168170
* ``identifier`` - The unique ID of that run, generated by Nextflow.
169171

172+
* ``uuid`` - The unique UUID of the session, generated by Nextflow.
173+
170174
* ``started`` - When the pipeline ran (as a Python datetime).
171175

172176
* ``finished`` - When the pipeline completed (as a Python datetime).
@@ -221,6 +225,8 @@ following properties:
221225

222226
* ``bash`` - the bash file contents generated for the process execution.
223227

228+
* ``cached`` - whether the process execution was cached.
229+
224230
Process executions can have various files passed to them, and will create files
225231
during their execution too. These can be obtained as follows:
226232

@@ -238,6 +244,15 @@ during their execution too. These can be obtained as follows:
238244
Changelog
239245
---------
240246

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+
241256
Release 0.9.0
242257
~~~~~~~~~~~~~
243258

docs/source/changelog.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
---------
33

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+
413
Release 0.9.0
514
~~~~~~~~~~~~~
615

docs/source/overview.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ customise the execution with various options:
3737

3838
* ``trace`` - A filename for a trace file to generate. This will be an TSV file containing runtime information about the pipeline execution.
3939

40+
* ``resume`` - Whether to resume an existing execution. Can be ``True`` or the UUID of an existing execution to resume from.
41+
4042

4143
Custom Runners
4244
~~~~~~~~~~~~~~
@@ -87,6 +89,8 @@ properties for:
8789

8890
* ``identifier`` - The unique ID of that run, generated by Nextflow.
8991

92+
* ``uuid`` - The unique UUID of the session, generated by Nextflow.
93+
9094
* ``started`` - When the pipeline ran (as a Python datetime).
9195

9296
* ``finished`` - When the pipeline completed (as a Python datetime).
@@ -141,6 +145,8 @@ following properties:
141145

142146
* ``bash`` - the bash file contents generated for the process execution.
143147

148+
* ``cached`` - whether the process execution was cached.
149+
144150
Process executions can have various files passed to them, and will create files
145151
during their execution too. These can be obtained as follows:
146152

0 commit comments

Comments
 (0)