File tree Expand file tree Collapse file tree 3 files changed +29
-5
lines changed Expand file tree Collapse file tree 3 files changed +29
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ nextflow.py
12
12
.. |pypi | image :: https://img.shields.io/pypi/pyversions/nextflowpy.svg
13
13
:target: https://pypi.org/project/nextflowpy/
14
14
15
- .. |nextfow | image :: https://img.shields.io/badge/Nextflow-24 .10%20|23.10%20|22 .10%20-orange
15
+ .. |nextfow | image :: https://img.shields.io/badge/Nextflow-22 .10%20|23.10%20|24 .10%20-orange
16
16
:target: https://www.nextflow.io/
17
17
18
18
.. |license | image :: https://img.shields.io/pypi/l/nextflowpy.svg?color=blue
@@ -203,9 +203,11 @@ following properties:
203
203
204
204
* ``stderr `` - the stderr of the process execution.
205
205
206
- * ``started `` - When the process execution ran (as a Python datetime).
206
+ * ``submitted `` - When the process execution was submitted (as a Python datetime).
207
207
208
- * ``started `` - When the process execution completed (as a Python datetime).
208
+ * ``started `` - When the process execution started (as a Python datetime).
209
+
210
+ * ``finished `` - When the process execution completed (as a Python datetime).
209
211
210
212
* ``duration `` - how long the process execution took in seconds.
211
213
@@ -234,6 +236,16 @@ during their execution too. These can be obtained as follows:
234
236
Changelog
235
237
---------
236
238
239
+ Release 0.9.0
240
+ ~~~~~~~~~~~~~
241
+
242
+ `8th February, 2025 `
243
+
244
+ * Process submission time now distinguished from start time.
245
+ * Added support for staging inputs by copy.
246
+ * Added utilities for predicting all process names for a pipeline.
247
+
248
+
237
249
Release 0.8.3
238
250
~~~~~~~~~~~~~
239
251
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
---------
3
3
4
+ Release 0.9.0
5
+ ~~~~~~~~~~~~~
6
+
7
+ `8th February, 2025 `
8
+
9
+ * Process submission time now distinguished from start time.
10
+ * Added support for staging inputs by copy.
11
+ * Added utilities for predicting all process names for a pipeline.
12
+
13
+
4
14
Release 0.8.3
5
15
~~~~~~~~~~~~~
6
16
Original file line number Diff line number Diff line change @@ -125,9 +125,11 @@ following properties:
125
125
126
126
* ``stderr `` - the stderr of the process execution.
127
127
128
- * ``started `` - When the process execution ran (as a Python datetime).
128
+ * ``submitted `` - When the process execution was submitted (as a Python datetime).
129
129
130
- * ``started `` - When the process execution completed (as a Python datetime).
130
+ * ``started `` - When the process execution started (as a Python datetime).
131
+
132
+ * ``finished `` - When the process execution completed (as a Python datetime).
131
133
132
134
* ``duration `` - how long the process execution took in seconds.
133
135
You can’t perform that action at this time.
0 commit comments