@@ -37,7 +37,7 @@ lineage.store.location = '<PATH_TO_STORAGE>'
37
37
```
38
38
39
39
:::{tip}
40
- For global configuration, add these settings to ` ~ /.nextflow/config` .
40
+ For global configuration, add these settings to ` $HOME /.nextflow/config` .
41
41
:::
42
42
43
43
See the {ref}` config-lineage ` configuration scope for details.
@@ -71,6 +71,7 @@ Use the `view` subcommand to view the lineage record for the workflow run:
71
71
``` console
72
72
$ nextflow lineage view lid://16b31030474f2e96c55f4940bca3ab64
73
73
{
74
+ "version": "lineage/v1beta1",
74
75
"type": "WorkflowRun",
75
76
"workflow": {
76
77
"scriptFiles": [
@@ -116,6 +117,7 @@ Now, use the workflow LID and relative path to view the lineage record for an ou
116
117
``` console
117
118
$ nextflow lineage view lid://16b31030474f2e96c55f4940bca3ab64/multiqc_report.html
118
119
{
120
+ "version": "lineage/v1beta1",
119
121
"type": "FileOutput",
120
122
"path": "/results/multiqc_report.html",
121
123
"checksum": {
@@ -142,6 +144,7 @@ Any LID in a lineage record can be viewed, allowing you to traverse the lineage
142
144
``` console
143
145
$ nextflow lineage view lid://862df53160e07cd823c0c3960545e747/multiqc_report.html
144
146
{
147
+ "version": "lineage/v1beta1",
145
148
"type": "FileOutput",
146
149
"path": "/work/86/2df53160e07cd823c0c3960545e747/multiqc_report.html",
147
150
"checksum": {
@@ -166,6 +169,7 @@ View the lineage record for the task that produced this file:
166
169
``` console
167
170
$ nextflow lineage view lid://862df53160e07cd823c0c3960545e747
168
171
{
172
+ "version": "lineage/v1beta1",
169
173
"type": "TaskRun",
170
174
"sessionId": "065bdc6b-89b4-42ee-92c1-2a5af37f2c50",
171
175
"name": "MULTIQC",
0 commit comments