-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsample.mhtml
6465 lines (6170 loc) · 457 KB
/
sample.mhtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
From: <Saved by Blink>
Snapshot-Content-Location: https://reviewer.pullrequest.com/review/e6cb0db2-0b85-48f7-aa2d-4da416232fe4/reportgen
Subject: PullRequest | Reviewer
Date: Fri, 20 Jan 2023 16:50:58 -0000
MIME-Version: 1.0
Content-Type: multipart/related;
type="text/html";
boundary="----MultipartBoundary--r1p0UJxv6agSTKthdl2Cqc6Kiv47gjpBl9hWoHkN6h----"
------MultipartBoundary--r1p0UJxv6agSTKthdl2Cqc6Kiv47gjpBl9hWoHkN6h----
Content-Type: text/html
Content-ID: <[email protected]>
Content-Transfer-Encoding: quoted-printable
Content-Location: https://reviewer.pullrequest.com/review/e6cb0db2-0b85-48f7-aa2d-4da416232fe4/reportgen
<!DOCTYPE html><html lang=3D"en"><head><meta http-equiv=3D"Content-Type" co=
ntent=3D"text/html; charset=3DUTF-8"><link rel=3D"stylesheet" type=3D"text/=
css" href=3D"cid:[email protected]" /><l=
ink rel=3D"stylesheet" type=3D"text/css" href=3D"cid:css-b92c0397-a520-4b68=
[email protected]" /><link rel=3D"stylesheet" type=3D"text/css=
" href=3D"cid:[email protected]" /><link=
rel=3D"stylesheet" type=3D"text/css" href=3D"cid:css-f17b20b1-5fc6-4840-86=
[email protected]" /><link rel=3D"stylesheet" type=3D"text/css" h=
ref=3D"cid:[email protected]" /><link re=
l=3D"stylesheet" type=3D"text/css" href=3D"cid:css-98247f95-2b44-45f2-bce1-=
[email protected]" /><link rel=3D"stylesheet" type=3D"text/css" href=
=3D"cid:[email protected]" /><!--mui-inj=
ect-first--><meta name=3D"viewport" content=3D"width=3Ddevice-width,initial=
-scale=3D1,shrink-to-fit=3Dno"><meta name=3D"theme-color" content=3D"#00000=
0"><link rel=3D"manifest" href=3D"https://reviewer.pullrequest.com/manifest=
.json"><link rel=3D"shortcut icon" href=3D"https://reviewer.pullrequest.com=
/favicon.ico"><link href=3D"https://fonts.googleapis.com/css?family=3DMonts=
errat|Open+Sans:300,400,600&display=3Dswap" rel=3D"stylesheet"><title>P=
ullRequest | Reviewer</title><link href=3D"https://reviewer.pullrequest.com=
/static/css/main.92bd9e2e.css" rel=3D"stylesheet"></head><body style=3D"ove=
rflow-y: auto; -webkit-print-color-adjust: exact;"><div id=3D"root"><div da=
ta-test=3D"div-atom" class=3D"sc-gsDKAQ iVZOcL"><div><div data-test=3D"div-=
atom" class=3D"sc-gsDKAQ caUSsX"><div data-test=3D"div-atom" class=3D"sc-gs=
DKAQ jZaqvs" style=3D"break-before: page;"><div data-test=3D"code-path" cla=
ss=3D"sc-gsDKAQ jCkGOp"><h4 class=3D"sc-furwcr krnJxP text-atom" data-test=
=3D"h4-atom">plugins/nf-quilt/src/main/nextflow/quilt/QuiltObserver.groovy<=
/h4></div><div><div><div style=3D"width: 100%; height: 100%;"><div class=3D=
"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"div-atom"><=
div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=3D"div-at=
om">44</div><span class=3D"styles_spacer__zrrtx"></span><div data-test=3D"d=
iv-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_prerenderedC=
ode__g5TqW" style=3D"color: rgb(170, 13, 145); display: inline; padding: 0p=
x; margin: 0px; white-space: pre-wrap; word-break: break-word;">class</code=
><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0=
, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap;=
word-break: break-word;"> </code><code class=3D"styles_prerenderedCode__g5=
TqW" style=3D"color: rgb(92, 38, 153); display: inline; padding: 0px; margi=
n: 0px; white-space: pre-wrap; word-break: break-word;">QuiltObserver</code=
><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0=
, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap;=
word-break: break-word;"> </code><code class=3D"styles_prerenderedCode__g5=
TqW" style=3D"color: rgb(170, 13, 145); display: inline; padding: 0px; marg=
in: 0px; white-space: pre-wrap; word-break: break-word;">implements</code><=
code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, =
0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; w=
ord-break: break-word;"> </code><code class=3D"styles_prerenderedCode__g5Tq=
W" style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0=
px; white-space: pre-wrap; word-break: break-word;">TraceObserver</code><co=
de class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.=
87); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; wor=
d-break: break-word;"> </code><code class=3D"styles_prerenderedCode__g5TqW"=
style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin=
: 0px; white-space: pre-wrap; word-break: break-word;">{</code></div></div>=
</div></div></div><div><div style=3D"width: 100%; height: 100%;"><div class=
=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"div-atom=
"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=3D"div=
-atom">45</div><span class=3D"styles_spacer__zrrtx"></span><div data-test=
=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_prerend=
eredCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padd=
ing: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> =
</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(17=
0, 13, 145); display: inline; padding: 0px; margin: 0px; white-space: pre-w=
rap; word-break: break-word;">public</code><code class=3D"styles_prerendere=
dCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding=
: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> </code=
><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(170, 13,=
145); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; w=
ord-break: break-word;">static</code><code class=3D"styles_prerenderedCode_=
_g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px;=
margin: 0px; white-space: pre-wrap; word-break: break-word;"> </code><code=
class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(170, 13, 145);=
display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-br=
eak: break-word;">void</code><code class=3D"styles_prerenderedCode__g5TqW" =
style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin:=
0px; white-space: pre-wrap; word-break: break-word;"> </code><code class=
=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display:=
inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: brea=
k-word;">writeString</code><code class=3D"styles_prerenderedCode__g5TqW" st=
yle=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0=
px; white-space: pre-wrap; word-break: break-word;">(</code><code class=3D"=
styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inl=
ine; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-wo=
rd;">String</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"co=
lor: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white=
-space: pre-wrap; word-break: break-word;"> </code><code class=3D"styles_pr=
erenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; padd=
ing: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">text=
</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0=
, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre=
-wrap; word-break: break-word;">,</code><code class=3D"styles_prerenderedCo=
de__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0=
px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> </code><c=
ode class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136);=
display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-br=
eak: break-word;">QuiltPackage</code><code class=3D"styles_prerenderedCode_=
_g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px;=
margin: 0px; white-space: pre-wrap; word-break: break-word;"> </code><code=
class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); di=
splay: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break=
: break-word;">pkg</code><code class=3D"styles_prerenderedCode__g5TqW" styl=
e=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px=
; white-space: pre-wrap; word-break: break-word;">,</code><code class=3D"st=
yles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: =
inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break=
-word;"> </code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"colo=
r: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; white-space:=
pre-wrap; word-break: break-word;">String</code><code class=3D"styles_prer=
enderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; p=
adding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> =
</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0,=
0, 136); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap=
; word-break: break-word;">filename</code><code class=3D"styles_prerendered=
Code__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding:=
0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">)</code>=
<code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0,=
0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; =
word-break: break-word;"> </code><code class=3D"styles_prerenderedCode__g5T=
qW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; mar=
gin: 0px; white-space: pre-wrap; word-break: break-word;">{</code></div></d=
iv></div></div></div><div><div style=3D"width: 100%; height: 100%;"><div cl=
ass=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"div-a=
tom"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=3D"=
div-atom">46</div><span class=3D"styles_spacer__zrrtx"></span><div data-tes=
t=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_preren=
deredCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; pad=
ding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> =
</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: r=
gb(0, 0, 136); display: inline; padding: 0px; margin: 0px; white-space: pre=
-wrap; word-break: break-word;">String</code><code class=3D"styles_prerende=
redCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; paddi=
ng: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> </co=
de><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, =
136); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; wo=
rd-break: break-word;">dir</code><code class=3D"styles_prerenderedCode__g5T=
qW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; mar=
gin: 0px; white-space: pre-wrap; word-break: break-word;"> </code><code cla=
ss=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); d=
isplay: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-brea=
k: break-word;">=3D</code><code class=3D"styles_prerenderedCode__g5TqW" sty=
le=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0p=
x; white-space: pre-wrap; word-break: break-word;"> </code><code class=3D"s=
tyles_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inli=
ne; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-wor=
d;">pkg</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color:=
rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-spa=
ce: pre-wrap; word-break: break-word;">.</code><code class=3D"styles_preren=
deredCode__g5TqW" style=3D"color: rgb(92, 38, 153); display: inline; paddin=
g: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">packag=
eDest</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: r=
gba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space=
: pre-wrap; word-break: break-word;">().</code><code class=3D"styles_preren=
deredCode__g5TqW" style=3D"color: rgb(92, 38, 153); display: inline; paddin=
g: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">toStri=
ng</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba=
(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: p=
re-wrap; word-break: break-word;">()</code></div></div></div></div></div><d=
iv><div style=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY=
styles_codeLineContainer__qiprS" data-test=3D"div-atom"><div class=3D"sc-g=
sDKAQ bylYDD styles_lineColumn__3loWi" data-test=3D"div-atom">47</div><span=
class=3D"styles_spacer__zrrtx"></span><div data-test=3D"div-atom" class=3D=
"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_prerenderedCode__g5TqW" style=
=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px;=
white-space: pre-wrap; word-break: break-word;"> </code><code class=
=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(170, 13, 145); displ=
ay: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: b=
reak-word;">def</code><code class=3D"styles_prerenderedCode__g5TqW" style=
=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px;=
white-space: pre-wrap; word-break: break-word;"> </code><code class=3D"sty=
les_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline=
; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;=
">path</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: =
rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-spac=
e: pre-wrap; word-break: break-word;"> </code><code class=3D"styles_prerend=
eredCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padd=
ing: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">=3D<=
/code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0,=
0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-=
wrap; word-break: break-word;"> </code><code class=3D"styles_prerenderedCod=
e__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; ma=
rgin: 0px; white-space: pre-wrap; word-break: break-word;">Paths</code><cod=
e class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.8=
7); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word=
-break: break-word;">.</code><code class=3D"styles_prerenderedCode__g5TqW" =
style=3D"color: rgb(92, 38, 153); display: inline; padding: 0px; margin: 0p=
x; white-space: pre-wrap; word-break: break-word;">get</code><code class=3D=
"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); displa=
y: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: br=
eak-word;">(</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"c=
olor: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; white-spa=
ce: pre-wrap; word-break: break-word;">dir</code><code class=3D"styles_prer=
enderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; p=
adding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">,=
</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0=
, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre=
-wrap; word-break: break-word;"> </code><code class=3D"styles_prerenderedCo=
de__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; m=
argin: 0px; white-space: pre-wrap; word-break: break-word;">filename</code>=
<code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0,=
0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; =
word-break: break-word;">)</code></div></div></div></div></div><div><div st=
yle=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_co=
deLineContainer__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylY=
DD styles_lineColumn__3loWi" data-test=3D"div-atom">48</div><span class=3D"=
styles_spacer__zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ=
eZkJGz"><div><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color:=
rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-spa=
ce: pre-wrap; word-break: break-word;"> </code><code class=3D"styles=
_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inli=
ne; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-wor=
d;">//log.debug "QuiltObserver.writeString[$path]: $text"</code></div></div=
></div></div></div></div><div data-test=3D"div-atom" class=3D"sc-gsDKAQ eWA=
XPi"><div data-test=3D"div-atom" class=3D"sc-gsDKAQ kTKCSa"><div class=3D"s=
c-crHmcD fHGTZc" data-test=3D"flex-atom"><div class=3D"sc-bBHxTw hjGax MuiA=
vatar-root MuiAvatar-circular sc-giYglK jbfWGq" data-test=3D"avatar-atom"><=
img alt=3D"PR" src=3D"https://reviewer.pullrequest.com/static/media/pr-thum=
bnail.3df0bfe9e3b2ca092682.png" class=3D"sc-iwjdpV iAvrYI MuiAvatar-img"></=
div><div data-test=3D"div-atom" class=3D"sc-gsDKAQ jrzSuB"><div class=3D"sc=
-crHmcD hZVEdg" data-test=3D"flex-atom"></div><div class=3D"jss6"><p>I woul=
d recommend cleaning up commented out code in this and other files to impro=
ve readability.</p></div></div></div></div></div><div class=3D"jss5"></div>=
</div><div data-test=3D"div-atom" class=3D"sc-gsDKAQ jZaqvs" style=3D"break=
-before: page;"><div data-test=3D"code-path" class=3D"sc-gsDKAQ jCkGOp"><h4=
class=3D"sc-furwcr krnJxP text-atom" data-test=3D"h4-atom">plugins/nf-quil=
t/src/main/nextflow/quilt/QuiltObserver.groovy</h4></div><div><div><div sty=
le=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_cod=
eLineContainer__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYD=
D styles_lineColumn__3loWi" data-test=3D"div-atom">45</div><span class=3D"s=
tyles_spacer__zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ =
eZkJGz"><div><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: =
rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-spac=
e: pre-wrap; word-break: break-word;"> </code><code class=3D"styles_prer=
enderedCode__g5TqW" style=3D"color: rgb(170, 13, 145); display: inline; pad=
ding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">pub=
lic</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb=
a(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: =
pre-wrap; word-break: break-word;"> </code><code class=3D"styles_prerendere=
dCode__g5TqW" style=3D"color: rgb(170, 13, 145); display: inline; padding: =
0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">static</c=
ode><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0=
, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wr=
ap; word-break: break-word;"> </code><code class=3D"styles_prerenderedCode_=
_g5TqW" style=3D"color: rgb(170, 13, 145); display: inline; padding: 0px; m=
argin: 0px; white-space: pre-wrap; word-break: break-word;">void</code><cod=
e class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.8=
7); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word=
-break: break-word;"> </code><code class=3D"styles_prerenderedCode__g5TqW" =
style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px;=
white-space: pre-wrap; word-break: break-word;">writeString</code><code cl=
ass=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); =
display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-bre=
ak: break-word;">(</code><code class=3D"styles_prerenderedCode__g5TqW" styl=
e=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; whi=
te-space: pre-wrap; word-break: break-word;">String</code><code class=3D"st=
yles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: =
inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break=
-word;"> </code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"colo=
r: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; white-space:=
pre-wrap; word-break: break-word;">text</code><code class=3D"styles_preren=
deredCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; pad=
ding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">,</=
code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, =
0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-w=
rap; word-break: break-word;"> </code><code class=3D"styles_prerenderedCode=
__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; mar=
gin: 0px; white-space: pre-wrap; word-break: break-word;">QuiltPackage</cod=
e><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, =
0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap=
; word-break: break-word;"> </code><code class=3D"styles_prerenderedCode__g=
5TqW" style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; margin=
: 0px; white-space: pre-wrap; word-break: break-word;">pkg</code><code clas=
s=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); di=
splay: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break=
: break-word;">,</code><code class=3D"styles_prerenderedCode__g5TqW" style=
=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px;=
white-space: pre-wrap; word-break: break-word;"> </code><code class=3D"sty=
les_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline=
; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;=
">String</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color=
: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-sp=
ace: pre-wrap; word-break: break-word;"> </code><code class=3D"styles_prere=
nderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; padding=
: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">filenam=
e</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(=
0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pr=
e-wrap; word-break: break-word;">)</code><code class=3D"styles_prerenderedC=
ode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: =
0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> </code><=
code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, =
0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; w=
ord-break: break-word;">{</code></div></div></div></div></div><div><div sty=
le=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_cod=
eLineContainer__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYD=
D styles_lineColumn__3loWi" data-test=3D"div-atom">46</div><span class=3D"s=
tyles_spacer__zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ =
eZkJGz"><div><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: =
rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-spac=
e: pre-wrap; word-break: break-word;"> </code><code class=3D"styles_=
prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; pa=
dding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">St=
ring</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rg=
ba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space:=
pre-wrap; word-break: break-word;"> </code><code class=3D"styles_prerender=
edCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; padding: 0p=
x; margin: 0px; white-space: pre-wrap; word-break: break-word;">dir</code><=
code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, =
0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; w=
ord-break: break-word;"> </code><code class=3D"styles_prerenderedCode__g5Tq=
W" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; marg=
in: 0px; white-space: pre-wrap; word-break: break-word;">=3D</code><code cl=
ass=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); =
display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-bre=
ak: break-word;"> </code><code class=3D"styles_prerenderedCode__g5TqW" styl=
e=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; whi=
te-space: pre-wrap; word-break: break-word;">pkg</code><code class=3D"style=
s_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inl=
ine; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-wo=
rd;">.</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: =
rgb(92, 38, 153); display: inline; padding: 0px; margin: 0px; white-space: =
pre-wrap; word-break: break-word;">packageDest</code><code class=3D"styles_=
prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inlin=
e; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word=
;">().</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: =
rgb(92, 38, 153); display: inline; padding: 0px; margin: 0px; white-space: =
pre-wrap; word-break: break-word;">toString</code><code class=3D"styles_pre=
renderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; =
padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">=
()</code></div></div></div></div></div><div><div style=3D"width: 100%; heig=
ht: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" =
data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3l=
oWi" data-test=3D"div-atom">47</div><span class=3D"styles_spacer__zrrtx"></=
span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code clas=
s=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); di=
splay: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break=
: break-word;"> </code><code class=3D"styles_prerenderedCode__g5TqW"=
style=3D"color: rgb(170, 13, 145); display: inline; padding: 0px; margin: =
0px; white-space: pre-wrap; word-break: break-word;">def</code><code class=
=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); dis=
play: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break:=
break-word;"> </code><code class=3D"styles_prerenderedCode__g5TqW" style=
=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; whit=
e-space: pre-wrap; word-break: break-word;">path</code><code class=3D"style=
s_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inl=
ine; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-wo=
rd;"> </code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: =
rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-spac=
e: pre-wrap; word-break: break-word;">=3D</code><code class=3D"styles_prere=
nderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; pa=
dding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> <=
/code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, =
0, 136); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap;=
word-break: break-word;">Paths</code><code class=3D"styles_prerenderedCode=
__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px=
; margin: 0px; white-space: pre-wrap; word-break: break-word;">.</code><cod=
e class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(92, 38, 153);=
display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-br=
eak: break-word;">get</code><code class=3D"styles_prerenderedCode__g5TqW" s=
tyle=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: =
0px; white-space: pre-wrap; word-break: break-word;">(</code><code class=3D=
"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: in=
line; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-w=
ord;">dir</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"colo=
r: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-s=
pace: pre-wrap; word-break: break-word;">,</code><code class=3D"styles_prer=
enderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; p=
adding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> =
</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0,=
0, 136); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap=
; word-break: break-word;">filename</code><code class=3D"styles_prerendered=
Code__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding:=
0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">)</code>=
</div></div></div></div></div><div><div style=3D"width: 100%; height: 100%;=
"><div class=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" data-test=
=3D"div-atom"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data=
-test=3D"div-atom">48</div><span class=3D"styles_spacer__zrrtx"></span><div=
data-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styl=
es_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: in=
line; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-w=
ord;"> </code><code class=3D"styles_prerenderedCode__g5TqW" style=3D=
"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; wh=
ite-space: pre-wrap; word-break: break-word;">//log.debug "QuiltObserver.wr=
iteString[$path]: $text"</code></div></div></div></div></div><div><div styl=
e=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_code=
LineContainer__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYDD=
styles_lineColumn__3loWi" data-test=3D"div-atom">49</div><span class=3D"st=
yles_spacer__zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ e=
ZkJGz"><div><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: r=
gba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space=
: pre-wrap; word-break: break-word;"> </code><code class=3D"styles_p=
rerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; pad=
ding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">Fil=
es</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba=
(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: p=
re-wrap; word-break: break-word;">.</code><code class=3D"styles_prerendered=
Code__g5TqW" style=3D"color: rgb(92, 38, 153); display: inline; padding: 0p=
x; margin: 0px; white-space: pre-wrap; word-break: break-word;">write</code=
><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0=
, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap;=
word-break: break-word;">(</code><code class=3D"styles_prerenderedCode__g5=
TqW" style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; margin:=
0px; white-space: pre-wrap; word-break: break-word;">path</code><code clas=
s=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); di=
splay: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break=
: break-word;">,</code><code class=3D"styles_prerenderedCode__g5TqW" style=
=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px;=
white-space: pre-wrap; word-break: break-word;"> </code><code class=3D"sty=
les_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline=
; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;=
">text</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: =
rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-spac=
e: pre-wrap; word-break: break-word;">.</code><code class=3D"styles_prerend=
eredCode__g5TqW" style=3D"color: rgb(92, 38, 153); display: inline; padding=
: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">bytes</=
code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, =
0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-w=
rap; word-break: break-word;">)</code></div></div></div></div></div></div><=
div data-test=3D"div-atom" class=3D"sc-gsDKAQ eWAXPi"><div data-test=3D"div=
-atom" class=3D"sc-gsDKAQ kTKCSa"><div class=3D"sc-crHmcD fHGTZc" data-test=
=3D"flex-atom"><div class=3D"sc-bBHxTw hjGax MuiAvatar-root MuiAvatar-circu=
lar sc-giYglK jbfWGq" data-test=3D"avatar-atom"><img alt=3D"PR" src=3D"http=
s://reviewer.pullrequest.com/static/media/pr-thumbnail.3df0bfe9e3b2ca092682=
.png" class=3D"sc-iwjdpV iAvrYI MuiAvatar-img"></div><div data-test=3D"div-=
atom" class=3D"sc-gsDKAQ jrzSuB"><div class=3D"sc-crHmcD hZVEdg" data-test=
=3D"flex-atom"></div><div class=3D"jss6"><p>You might consider catching the=
exception(s) thrown by this for logging or error translation: <a href=3D"h=
ttps://docs.oracle.com/javase/7/docs/api/java/nio/file/Files.html#write(jav=
a.nio.file.Path,%20byte%5B%5D,%20java.nio.file.OpenOption" target=3D"_blank=
" rel=3D"noopener noreferrer">https://docs.oracle.com/javase/7/docs/api/jav=
a/nio/file/Files.html#write(java.nio.file.Path,%20byte[],%20java.nio.file.O=
penOption</a>...)</p></div></div></div></div></div><div class=3D"jss5"></di=
v></div><div data-test=3D"div-atom" class=3D"sc-gsDKAQ jZaqvs" style=3D"bre=
ak-before: page;"><div data-test=3D"code-path" class=3D"sc-gsDKAQ jCkGOp"><=
h4 class=3D"sc-furwcr krnJxP text-atom" data-test=3D"h4-atom">plugins/nf-qu=
ilt/src/main/nextflow/quilt/QuiltObserver.groovy</h4></div><div><div><div s=
tyle=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_c=
odeLineContainer__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ byl=
YDD styles_lineColumn__3loWi" data-test=3D"div-atom">48</div><span class=3D=
"styles_spacer__zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gsDKA=
Q eZkJGz"><div><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color=
: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-sp=
ace: pre-wrap; word-break: break-word;"> </code><code class=3D"style=
s_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inl=
ine; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-wo=
rd;">//log.debug "QuiltObserver.writeString[$path]: $text"</code></div></di=
v></div></div></div><div><div style=3D"width: 100%; height: 100%;"><div cla=
ss=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"div-at=
om"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=3D"d=
iv-atom">49</div><span class=3D"styles_spacer__zrrtx"></span><div data-test=
=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_prerend=
eredCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padd=
ing: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> =
</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rg=
b(0, 0, 136); display: inline; padding: 0px; margin: 0px; white-space: pre-=
wrap; word-break: break-word;">Files</code><code class=3D"styles_prerendere=
dCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding=
: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">.</code=
><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(92, 38, =
153); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; wo=
rd-break: break-word;">write</code><code class=3D"styles_prerenderedCode__g=
5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; m=
argin: 0px; white-space: pre-wrap; word-break: break-word;">(</code><code c=
lass=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); disp=
lay: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: =
break-word;">path</code><code class=3D"styles_prerenderedCode__g5TqW" style=
=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px;=
white-space: pre-wrap; word-break: break-word;">,</code><code class=3D"sty=
les_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: i=
nline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-=
word;"> </code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color=
: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; white-space: =
pre-wrap; word-break: break-word;">text</code><code class=3D"styles_prerend=
eredCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padd=
ing: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">.</c=
ode><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(92, 3=
8, 153); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap;=
word-break: break-word;">bytes</code><code class=3D"styles_prerenderedCode=
__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px=
; margin: 0px; white-space: pre-wrap; word-break: break-word;">)</code></di=
v></div></div></div></div><div><div style=3D"width: 100%; height: 100%;"><d=
iv class=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"=
div-atom"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-tes=
t=3D"div-atom">50</div><span class=3D"styles_spacer__zrrtx"></span><div dat=
a-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_p=
rerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline=
; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;=
"> </code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: =
rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-spac=
e: pre-wrap; word-break: break-word;">}</code></div></div></div></div></div=
><div><div style=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbg=
EDY styles_codeLineContainer__qiprS" data-test=3D"div-atom"><div class=3D"s=
c-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=3D"div-atom">51</div><s=
pan class=3D"styles_spacer__zrrtx"></span><div data-test=3D"div-atom" class=
=3D"sc-gsDKAQ eZkJGz"><div></div></div></div></div></div><div><div style=3D=
"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_codeLine=
Container__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYDD sty=
les_lineColumn__3loWi" data-test=3D"div-atom">52</div><span class=3D"styles=
_spacer__zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJG=
z"><div><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(=
0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pr=
e-wrap; word-break: break-word;"> </code><code class=3D"styles_prerender=
edCode__g5TqW" style=3D"color: rgb(170, 13, 145); display: inline; padding:=
0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">private<=
/code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0,=
0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-=
wrap; word-break: break-word;"> </code><code class=3D"styles_prerenderedCod=
e__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; ma=
rgin: 0px; white-space: pre-wrap; word-break: break-word;">Session</code><c=
ode class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0=
.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; wo=
rd-break: break-word;"> </code><code class=3D"styles_prerenderedCode__g5TqW=
" style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0p=
x; white-space: pre-wrap; word-break: break-word;">session</code></div></di=
v></div></div></div></div><div data-test=3D"div-atom" class=3D"sc-gsDKAQ eW=
AXPi"><div data-test=3D"div-atom" class=3D"sc-gsDKAQ kTKCSa"><div class=3D"=
sc-crHmcD fHGTZc" data-test=3D"flex-atom"><div class=3D"sc-bBHxTw hjGax Mui=
Avatar-root MuiAvatar-circular sc-giYglK jbfWGq" data-test=3D"avatar-atom">=
<img alt=3D"PR" src=3D"https://reviewer.pullrequest.com/static/media/pr-thu=
mbnail.3df0bfe9e3b2ca092682.png" class=3D"sc-iwjdpV iAvrYI MuiAvatar-img"><=
/div><div data-test=3D"div-atom" class=3D"sc-gsDKAQ jrzSuB"><div class=3D"s=
c-crHmcD hZVEdg" data-test=3D"flex-atom"></div><div class=3D"jss6"><p>You m=
ight consider adding more javadocs for fields and methods since the Nextflo=
w sources appear to be very documented. For example: <a href=3D"https://git=
hub.com/nextflow-io/nextflow/blob/master/plugins/nf-tower/src/main/io/seqer=
a/tower/plugin/TowerClient.groovy" target=3D"_blank" rel=3D"noopener norefe=
rrer">https://github.com/nextflow-io/nextflow/blob/master/plugins/nf-tower/=
src/main/io/seqera/tower/plugin/TowerClient.groovy</a></p></div></div></div=
></div></div><div class=3D"jss5"></div></div><div data-test=3D"div-atom" cl=
ass=3D"sc-gsDKAQ jZaqvs" style=3D"break-before: page;"><div data-test=3D"co=
de-path" class=3D"sc-gsDKAQ jCkGOp"><h4 class=3D"sc-furwcr krnJxP text-atom=
" data-test=3D"h4-atom">plugins/nf-quilt/src/main/nextflow/quilt/QuiltObser=
ver.groovy</h4></div><div><div><div style=3D"width: 100%; height: 100%;"><d=
iv class=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"=
div-atom"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-tes=
t=3D"div-atom">59</div><span class=3D"styles_spacer__zrrtx"></span><div dat=
a-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_p=
rerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline=
; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;=
"> </code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"col=
or: rgb(170, 13, 145); display: inline; padding: 0px; margin: 0px; white-sp=
ace: pre-wrap; word-break: break-word;">def</code><code class=3D"styles_pre=
renderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; =
padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">=
</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0=
, 0, 136); display: inline; padding: 0px; margin: 0px; white-space: pre-wra=
p; word-break: break-word;">sdf</code><code class=3D"styles_prerenderedCode=
__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px=
; margin: 0px; white-space: pre-wrap; word-break: break-word;"> </code><cod=
e class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.8=
7); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word=
-break: break-word;">=3D</code><code class=3D"styles_prerenderedCode__g5TqW=
" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margi=
n: 0px; white-space: pre-wrap; word-break: break-word;"> </code><code class=
=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(170, 13, 145); displ=
ay: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: b=
reak-word;">new</code><code class=3D"styles_prerenderedCode__g5TqW" style=
=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px;=
white-space: pre-wrap; word-break: break-word;"> </code><code class=3D"sty=
les_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline=
; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;=
">SimpleDateFormat</code><code class=3D"styles_prerenderedCode__g5TqW" styl=
e=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px=
; white-space: pre-wrap; word-break: break-word;">(</code><code class=3D"st=
yles_prerenderedCode__g5TqW" style=3D"color: rgb(196, 26, 22); display: inl=
ine; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-wo=
rd;">"yyyy-MM-dd HH:mm:ss"</code><code class=3D"styles_prerenderedCode__g5T=
qW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; mar=
gin: 0px; white-space: pre-wrap; word-break: break-word;">)</code></div></d=
iv></div></div></div><div><div style=3D"width: 100%; height: 100%;"><div cl=
ass=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"div-a=
tom"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=3D"=
div-atom">60</div><span class=3D"styles_spacer__zrrtx"></span><div data-tes=
t=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_preren=
deredCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; pad=
ding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> =
</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: r=
gb(170, 13, 145); display: inline; padding: 0px; margin: 0px; white-space: =
pre-wrap; word-break: break-word;">return</code><code class=3D"styles_prere=
nderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; pa=
dding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> <=
/code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, =
0, 136); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap;=
word-break: break-word;">sdf</code><code class=3D"styles_prerenderedCode__=
g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; =
margin: 0px; white-space: pre-wrap; word-break: break-word;">.</code><code =
class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(92, 38, 153); d=
isplay: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-brea=
k: break-word;">format</code><code class=3D"styles_prerenderedCode__g5TqW" =
style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin:=
0px; white-space: pre-wrap; word-break: break-word;">(</code><code class=
=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display:=
inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: brea=
k-word;">date</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"=
color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; whi=
te-space: pre-wrap; word-break: break-word;">)</code></div></div></div></di=
v></div><div><div style=3D"width: 100%; height: 100%;"><div class=3D"sc-gsD=
KAQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"div-atom"><div cla=
ss=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=3D"div-atom">61<=
/div><span class=3D"styles_spacer__zrrtx"></span><div data-test=3D"div-atom=
" class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_prerenderedCode__g5=
TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; ma=
rgin: 0px; white-space: pre-wrap; word-break: break-word;"> </code><code=
class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87=
); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-=
break: break-word;">}</code></div></div></div></div></div><div><div style=
=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_codeL=
ineContainer__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYDD =
styles_lineColumn__3loWi" data-test=3D"div-atom">62</div><span class=3D"sty=
les_spacer__zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ eZ=
kJGz"><div></div></div></div></div></div><div><div style=3D"width: 100%; he=
ight: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS=
" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__=
3loWi" data-test=3D"div-atom">63</div><span class=3D"styles_spacer__zrrtx">=
</span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code cl=
ass=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); =
display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-bre=
ak: break-word;"> </code><code class=3D"styles_prerenderedCode__g5TqW" s=
tyle=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; =
white-space: pre-wrap; word-break: break-word;">Set</code><code class=3D"st=
yles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: =
inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break=
-word;"><</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"c=
olor: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; white-spa=
ce: pre-wrap; word-break: break-word;">QuiltPackage</code><code class=3D"st=
yles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: =
inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break=
-word;">></code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"c=
olor: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; whit=
e-space: pre-wrap; word-break: break-word;"> </code><code class=3D"styles_p=
rerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; pad=
ding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">ens=
urePkgs</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color:=
rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-spa=
ce: pre-wrap; word-break: break-word;">()</code><code class=3D"styles_prere=
nderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; pa=
dding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> <=
/code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0,=
0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-=
wrap; word-break: break-word;">{</code></div></div></div></div></div></div>=
<div data-test=3D"div-atom" class=3D"sc-gsDKAQ eWAXPi"><div data-test=3D"di=
v-atom" class=3D"sc-gsDKAQ kTKCSa"><div class=3D"sc-crHmcD fHGTZc" data-tes=
t=3D"flex-atom"><div class=3D"sc-bBHxTw hjGax MuiAvatar-root MuiAvatar-circ=
ular sc-giYglK jbfWGq" data-test=3D"avatar-atom"><img alt=3D"PR" src=3D"htt=
ps://reviewer.pullrequest.com/static/media/pr-thumbnail.3df0bfe9e3b2ca09268=
2.png" class=3D"sc-iwjdpV iAvrYI MuiAvatar-img"></div><div data-test=3D"div=
-atom" class=3D"sc-gsDKAQ jrzSuB"><div class=3D"sc-crHmcD hZVEdg" data-test=
=3D"flex-atom"></div><div class=3D"jss6"><p>Alternatively, this could initi=
alized to the field value by default:</p>
<pre style=3D"display: block; overflow-x: auto; padding: 0.5em; color: blac=
k;"><code style=3D"word-break: break-all; white-space: pre-wrap;"><span><sp=
an style=3D"color: rgb(170, 13, 145);">private</span><span> </span><span st=
yle=3D"color: rgb(92, 38, 153);">Set</span><span><QuiltPackage> pkgs =
=3D </span><span style=3D"color: rgb(170, 13, 145);">new</span><span> HashS=
et<>()</span></span></code></pre></div></div></div></div></div><div c=
lass=3D"jss5"></div></div><div data-test=3D"div-atom" class=3D"sc-gsDKAQ jZ=
aqvs" style=3D"break-before: page;"><div data-test=3D"code-path" class=3D"s=
c-gsDKAQ jCkGOp"><h4 class=3D"sc-furwcr krnJxP text-atom" data-test=3D"h4-a=
tom">plugins/nf-quilt/src/main/nextflow/quilt/QuiltObserver.groovy</h4></di=
v><div><div><div style=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDK=
AQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"div-atom"><div clas=
s=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=3D"div-atom">83</=
div><span class=3D"styles_spacer__zrrtx"></span><div data-test=3D"div-atom"=
class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_prerenderedCode__g5T=
qW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; mar=
gin: 0px; white-space: pre-wrap; word-break: break-word;"> </cod=
e><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 1=
36); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; wor=
d-break: break-word;">QuiltPath</code><code class=3D"styles_prerenderedCode=
__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px=
; margin: 0px; white-space: pre-wrap; word-break: break-word;"> </code><cod=
e class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); d=
isplay: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-brea=
k: break-word;">qPath</code><code class=3D"styles_prerenderedCode__g5TqW" s=
tyle=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: =
0px; white-space: pre-wrap; word-break: break-word;"> </code><code class=3D=
"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); displa=
y: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: br=
eak-word;">=3D</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D=
"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; wh=
ite-space: pre-wrap; word-break: break-word;"> </code><code class=3D"styles=
_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inli=
ne; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-wor=
d;">(</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: r=
gb(0, 0, 136); display: inline; padding: 0px; margin: 0px; white-space: pre=
-wrap; word-break: break-word;">QuiltPath</code><code class=3D"styles_prere=
nderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; pa=
dding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">)<=
/code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, =
0, 136); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap;=
word-break: break-word;">path</code></div></div></div></div></div><div><di=
v style=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY style=
s_codeLineContainer__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ =
bylYDD styles_lineColumn__3loWi" data-test=3D"div-atom">84</div><span class=
=3D"styles_spacer__zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gs=
DKAQ eZkJGz"><div><code class=3D"styles_prerenderedCode__g5TqW" style=3D"co=
lor: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white=
-space: pre-wrap; word-break: break-word;"> </code><code class=
=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display:=
inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: brea=
k-word;">QuiltPackage</code><code class=3D"styles_prerenderedCode__g5TqW" s=
tyle=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: =
0px; white-space: pre-wrap; word-break: break-word;"> </code><code class=3D=
"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: in=
line; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-w=
ord;">pkg</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"colo=
r: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-s=
pace: pre-wrap; word-break: break-word;"> </code><code class=3D"styles_prer=
enderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; p=
adding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">=
=3D</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb=
a(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: =
pre-wrap; word-break: break-word;"> </code><code class=3D"styles_prerendere=
dCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px=
; margin: 0px; white-space: pre-wrap; word-break: break-word;">qPath</code>=
<code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0,=
0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; =
word-break: break-word;">.</code><code class=3D"styles_prerenderedCode__g5T=
qW" style=3D"color: rgb(92, 38, 153); display: inline; padding: 0px; margin=
: 0px; white-space: pre-wrap; word-break: break-word;">pkg</code><code clas=
s=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); di=
splay: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break=
: break-word;">()</code></div></div></div></div></div><div><div style=3D"wi=
dth: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_codeLineCon=
tainer__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYDD styles=
_lineColumn__3loWi" data-test=3D"div-atom">85</div><span class=3D"styles_sp=
acer__zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz">=
<div><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, =
0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-w=
rap; word-break: break-word;"> </code><code class=3D"styles_prer=
enderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; paddin=
g: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">ensure=
Pkgs</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rg=
ba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space:=
pre-wrap; word-break: break-word;">().</code><code class=3D"styles_prerend=
eredCode__g5TqW" style=3D"color: rgb(92, 38, 153); display: inline; padding=
: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">add</co=
de><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0,=
0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wra=
p; word-break: break-word;">(</code><code class=3D"styles_prerenderedCode__=
g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; margi=
n: 0px; white-space: pre-wrap; word-break: break-word;">pkg</code><code cla=
ss=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); d=
isplay: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-brea=
k: break-word;">)</code></div></div></div></div></div><div><div style=3D"wi=
dth: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_codeLineCon=
tainer__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYDD styles=
_lineColumn__3loWi" data-test=3D"div-atom">86</div><span class=3D"styles_sp=
acer__zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz">=
<div><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, =
0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-w=
rap; word-break: break-word;"> </code><code class=3D"styles_prer=
enderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; paddin=
g: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">log</c=
ode><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0=
, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wr=
ap; word-break: break-word;">.</code><code class=3D"styles_prerenderedCode_=
_g5TqW" style=3D"color: rgb(92, 38, 153); display: inline; padding: 0px; ma=
rgin: 0px; white-space: pre-wrap; word-break: break-word;">debug</code><cod=
e class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.8=
7); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word=
-break: break-word;"> </code><code class=3D"styles_prerenderedCode__g5TqW" =
style=3D"color: rgb(196, 26, 22); display: inline; padding: 0px; margin: 0p=
x; white-space: pre-wrap; word-break: break-word;">"onFilePublish.QuiltPath=
[$qPath]: pkgs=3D${pkgs}"</code></div></div></div></div></div><div><div sty=
le=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_cod=
eLineContainer__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYD=
D styles_lineColumn__3loWi" data-test=3D"div-atom">87</div><span class=3D"s=
tyles_spacer__zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ =
eZkJGz"><div><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: =
rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-spac=
e: pre-wrap; word-break: break-word;"> </code><code class=3D"styles_=
prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inlin=
e; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word=
;">}</code></div></div></div></div></div></div><div data-test=3D"div-atom" =
class=3D"sc-gsDKAQ eWAXPi"><div data-test=3D"div-atom" class=3D"sc-gsDKAQ k=
TKCSa"><div class=3D"sc-crHmcD fHGTZc" data-test=3D"flex-atom"><div class=
=3D"sc-bBHxTw hjGax MuiAvatar-root MuiAvatar-circular sc-giYglK jbfWGq" dat=
a-test=3D"avatar-atom"><img alt=3D"PR" src=3D"https://reviewer.pullrequest.=
com/static/media/pr-thumbnail.3df0bfe9e3b2ca092682.png" class=3D"sc-iwjdpV =
iAvrYI MuiAvatar-img"></div><div data-test=3D"div-atom" class=3D"sc-gsDKAQ =
jrzSuB"><div class=3D"sc-crHmcD hZVEdg" data-test=3D"flex-atom"></div><div =
class=3D"jss6"><p>Would there be an error to log here in an else brach?</p>=
</div></div></div></div></div><div class=3D"jss5"></div></div><div data-tes=
t=3D"div-atom" class=3D"sc-gsDKAQ jZaqvs" style=3D"break-before: page;"><di=
v data-test=3D"code-path" class=3D"sc-gsDKAQ jCkGOp"><h4 class=3D"sc-furwcr=
krnJxP text-atom" data-test=3D"h4-atom">plugins/nf-quilt/src/main/nextflow=
/quilt/QuiltObserver.groovy</h4></div><div><div><div style=3D"width: 100%; =
height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qip=
rS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn=
__3loWi" data-test=3D"div-atom">107</div><span class=3D"styles_spacer__zrrt=
x"></span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div></div=
></div></div></div></div><div><div style=3D"width: 100%; height: 100%;"><di=
v class=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"d=
iv-atom"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=
=3D"div-atom">108</div><span class=3D"styles_spacer__zrrtx"></span><div dat=
a-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_p=
rerenderedCode__g5TqW" style=3D"color: rgb(196, 26, 22); display: inline; p=
adding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">#=
# processes</code></div></div></div></div></div><div><div style=3D"width: 1=
00%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer=
__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYDD styles_lineC=
olumn__3loWi" data-test=3D"div-atom">109</div><span class=3D"styles_spacer_=
_zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div>=
<code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(196, 26, =
22); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; wor=
d-break: break-word;">${meta['workflow']['stats']['processes']}</code></div=
></div></div></div></div><div><div style=3D"width: 100%; height: 100%;"><di=
v class=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"d=
iv-atom"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=
=3D"div-atom">110</div><span class=3D"styles_spacer__zrrtx"></span><div dat=
a-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div></div></div></div></div=
></div><div><div style=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDK=
AQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"div-atom"><div clas=
s=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=3D"div-atom">111<=
/div><span class=3D"styles_spacer__zrrtx"></span><div data-test=3D"div-atom=
" class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_prerenderedCode__g5=
TqW" style=3D"color: rgb(196, 26, 22); display: inline; padding: 0px; margi=
n: 0px; white-space: pre-wrap; word-break: break-word;">"""</code></div></d=
iv></div></div></div></div><div data-test=3D"div-atom" class=3D"sc-gsDKAQ e=
WAXPi"><div data-test=3D"div-atom" class=3D"sc-gsDKAQ kTKCSa"><div class=3D=
"sc-crHmcD fHGTZc" data-test=3D"flex-atom"><div class=3D"sc-bBHxTw hjGax Mu=
iAvatar-root MuiAvatar-circular sc-giYglK jbfWGq" data-test=3D"avatar-atom"=
><img alt=3D"PR" src=3D"https://reviewer.pullrequest.com/static/media/pr-th=
umbnail.3df0bfe9e3b2ca092682.png" class=3D"sc-iwjdpV iAvrYI MuiAvatar-img">=
</div><div data-test=3D"div-atom" class=3D"sc-gsDKAQ jrzSuB"><div class=3D"=
sc-crHmcD hZVEdg" data-test=3D"flex-atom"></div><div class=3D"jss6"><p>Ther=
e's a method called <code>stripIndent()</code> so that this can be indented=
in the source but the indents will be removed from the string. For example=
: <a href=3D"https://github.com/nextflow-io/nextflow/blob/c0a25fc221ae63392=
e2893167acf014b5b056653/modules/nextflow/src/main/groovy/nextflow/script/Ba=
seScript.groovy#L164-L176" target=3D"_blank" rel=3D"noopener noreferrer">ht=
tps://github.com/nextflow-io/nextflow/blob/c0a25fc221ae63392e2893167acf014b=
5b056653/modules/nextflow/src/main/groovy/nextflow/script/BaseScript.groovy=
#L164-L176</a></p></div></div></div></div></div><div class=3D"jss5"></div><=
/div><div data-test=3D"div-atom" class=3D"sc-gsDKAQ jZaqvs" style=3D"break-=
before: page;"><div data-test=3D"code-path" class=3D"sc-gsDKAQ jCkGOp"><h4 =
class=3D"sc-furwcr krnJxP text-atom" data-test=3D"h4-atom">plugins/nf-quilt=
/src/main/nextflow/quilt/QuiltObserver.groovy</h4></div><div><div><div styl=
e=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_code=
LineContainer__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYDD=
styles_lineColumn__3loWi" data-test=3D"div-atom">122</div><span class=3D"s=
tyles_spacer__zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ =
eZkJGz"><div><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: =
rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-spac=
e: pre-wrap; word-break: break-word;"> </code><code class=3D"sty=
les_prerenderedCode__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline=
; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;=
">text</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: =
rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-spac=
e: pre-wrap; word-break: break-word;"> </code><code class=3D"styles_prerend=
eredCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padd=
ing: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">=3D<=
/code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0,=
0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-=
wrap; word-break: break-word;"> </code><code class=3D"styles_prerenderedCod=
e__g5TqW" style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; ma=
rgin: 0px; white-space: pre-wrap; word-break: break-word;">readme</code><co=
de class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.=
87); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; wor=
d-break: break-word;">(</code><code class=3D"styles_prerenderedCode__g5TqW"=
style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px=
; white-space: pre-wrap; word-break: break-word;">meta</code><code class=3D=
"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); displa=
y: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: br=
eak-word;">,</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"c=
olor: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; white-spa=
ce: pre-wrap; word-break: break-word;">msg</code><code class=3D"styles_prer=
enderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; p=
adding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">)=
</code></div></div></div></div></div><div><div style=3D"width: 100%; height=
: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" da=
ta-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loW=
i" data-test=3D"div-atom">123</div><span class=3D"styles_spacer__zrrtx"></s=
pan><div data-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code class=
=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); dis=
play: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break:=
break-word;"> </code><code class=3D"styles_prerenderedCode__g5T=
qW" style=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; margin: =
0px; white-space: pre-wrap; word-break: break-word;">jsonMeta</code><code c=
lass=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87);=
display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-br=
eak: break-word;"> </code><code class=3D"styles_prerenderedCode__g5TqW" sty=
le=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0p=
x; white-space: pre-wrap; word-break: break-word;">=3D</code><code class=3D=
"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); displa=
y: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: br=
eak-word;"> </code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"c=
olor: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; white-spa=
ce: pre-wrap; word-break: break-word;">JsonOutput</code><code class=3D"styl=
es_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: in=
line; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-w=
ord;">.</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color:=
rgb(92, 38, 153); display: inline; padding: 0px; margin: 0px; white-space:=
pre-wrap; word-break: break-word;">toJson</code><code class=3D"styles_prer=
enderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; p=
adding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">(=
</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(0,=
0, 136); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap=
; word-break: break-word;">meta</code><code class=3D"styles_prerenderedCode=
__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px=
; margin: 0px; white-space: pre-wrap; word-break: break-word;">[</code><cod=
e class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(196, 26, 22);=
display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-br=
eak: break-word;">'workflow'</code><code class=3D"styles_prerenderedCode__g=
5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; m=
argin: 0px; white-space: pre-wrap; word-break: break-word;">])</code></div>=
</div></div></div></div><div><div style=3D"width: 100%; height: 100%;"><div=
class=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"di=
v-atom"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=
=3D"div-atom">124</div><span class=3D"styles_spacer__zrrtx"></span><div dat=
a-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_p=
rerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline=
; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;=
"> </code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"col=
or: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-=
space: pre-wrap; word-break: break-word;">}</code></div></div></div></div><=
/div><div><div style=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ=
kbgEDY styles_codeLineContainer__qiprS" data-test=3D"div-atom"><div class=
=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=3D"div-atom">125</=
div><span class=3D"styles_spacer__zrrtx"></span><div data-test=3D"div-atom"=
class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_prerenderedCode__g5T=
qW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; mar=
gin: 0px; white-space: pre-wrap; word-break: break-word;"> </code><c=
ode class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(170, 13, 14=
5); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word=
-break: break-word;">catch</code><code class=3D"styles_prerenderedCode__g5T=
qW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px; mar=
gin: 0px; white-space: pre-wrap; word-break: break-word;"> </code><code cla=
ss=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); d=
isplay: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-brea=
k: break-word;">(</code><code class=3D"styles_prerenderedCode__g5TqW" style=
=3D"color: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; whit=
e-space: pre-wrap; word-break: break-word;">Exception</code><code class=3D"=
styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display=
: inline; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: bre=
ak-word;"> </code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"co=
lor: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; white-spac=
e: pre-wrap; word-break: break-word;">e</code><code class=3D"styles_prerend=
eredCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padd=
ing: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;">)</c=
ode><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgba(0, 0=
, 0, 0.87); display: inline; padding: 0px; margin: 0px; white-space: pre-wr=
ap; word-break: break-word;"> </code><code class=3D"styles_prerenderedCode_=
_g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding: 0px;=
margin: 0px; white-space: pre-wrap; word-break: break-word;">{</code></div=
></div></div></div></div><div><div style=3D"width: 100%; height: 100%;"><di=
v class=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qiprS" data-test=3D"d=
iv-atom"><div class=3D"sc-gsDKAQ bylYDD styles_lineColumn__3loWi" data-test=
=3D"div-atom">126</div><span class=3D"styles_spacer__zrrtx"></span><div dat=
a-test=3D"div-atom" class=3D"sc-gsDKAQ eZkJGz"><div><code class=3D"styles_p=
rerenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline=
; padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;=
"> </code><code class=3D"styles_prerenderedCode__g5TqW" style=3D=
"color: rgb(0, 0, 136); display: inline; padding: 0px; margin: 0px; white-s=
pace: pre-wrap; word-break: break-word;">log</code><code class=3D"styles_pr=
erenderedCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline;=
padding: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"=
>.</code><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(=
92, 38, 153); display: inline; padding: 0px; margin: 0px; white-space: pre-=
wrap; word-break: break-word;">error</code><code class=3D"styles_prerendere=
dCode__g5TqW" style=3D"color: rgba(0, 0, 0, 0.87); display: inline; padding=
: 0px; margin: 0px; white-space: pre-wrap; word-break: break-word;"> </code=
><code class=3D"styles_prerenderedCode__g5TqW" style=3D"color: rgb(196, 26,=
22); display: inline; padding: 0px; margin: 0px; white-space: pre-wrap; wo=
rd-break: break-word;">"publish: QuiltObserver not initialized[$e]"</code><=
/div></div></div></div></div></div><div data-test=3D"div-atom" class=3D"sc-=
gsDKAQ eWAXPi"><div data-test=3D"div-atom" class=3D"sc-gsDKAQ kTKCSa"><div =
class=3D"sc-crHmcD fHGTZc" data-test=3D"flex-atom"><div class=3D"sc-bBHxTw =
hjGax MuiAvatar-root MuiAvatar-circular sc-giYglK jbfWGq" data-test=3D"avat=
ar-atom"><img alt=3D"PR" src=3D"https://reviewer.pullrequest.com/static/med=
ia/pr-thumbnail.3df0bfe9e3b2ca092682.png" class=3D"sc-iwjdpV iAvrYI MuiAvat=
ar-img"></div><div data-test=3D"div-atom" class=3D"sc-gsDKAQ jrzSuB"><div c=
lass=3D"sc-crHmcD hZVEdg" data-test=3D"flex-atom"></div><div class=3D"jss6"=
><p>You might consider rethrowing this exception here because if the data i=
s not initialized correct the following code will likely produce exceptions=
or bad data.</p></div></div></div></div></div><div class=3D"jss5"></div></=
div><div data-test=3D"div-atom" class=3D"sc-gsDKAQ jZaqvs" style=3D"break-b=
efore: page;"><div data-test=3D"code-path" class=3D"sc-gsDKAQ jCkGOp"><h4 c=
lass=3D"sc-furwcr krnJxP text-atom" data-test=3D"h4-atom">plugins/nf-quilt/=
src/main/nextflow/quilt/QuiltObserver.groovy</h4></div><div><div><div style=
=3D"width: 100%; height: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_codeL=
ineContainer__qiprS" data-test=3D"div-atom"><div class=3D"sc-gsDKAQ bylYDD =
styles_lineColumn__3loWi" data-test=3D"div-atom">146</div><span class=3D"st=
yles_spacer__zrrtx"></span><div data-test=3D"div-atom" class=3D"sc-gsDKAQ e=
ZkJGz"><div></div></div></div></div></div><div><div style=3D"width: 100%; h=
eight: 100%;"><div class=3D"sc-gsDKAQ kbgEDY styles_codeLineContainer__qipr=