forked from nextflow-io/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.json
1745 lines (1745 loc) · 90.1 KB
/
plugins.json
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
[
{
"id": "nf-amazon",
"releases": [
{
"version": "1.0.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.0.0/nf-amazon-1.0.0.zip",
"date": "2021-01-04T21:00:14.872+01:00",
"sha512sum": "5abe4cbc643ca0333cba545846494b17488d19d17049bf9d4d9ac9ec108352b54f147abb15c48581b44fdd09097e3607aed77e2eae91c07da32c2cd71f4f852f",
"requires": "21.01.0-edge"
},
{
"version": "1.0.1",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.0.1/nf-amazon-1.0.1.zip",
"date": "2021-01-15T11:44:57.809+01:00",
"sha512sum": "5d785eb451dceaf789d34b35e03cf3cafe78adff43f0473030a73e9a3986622cde23d617aba92072a909cc6e9a8693f922cb1331188b696cc50529a5c963c918",
"requires": ">=21.01.0-edge"
},
{
"version": "1.0.2",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.0.2/nf-amazon-1.0.2.zip",
"date": "2021-03-05T11:49:52.424+01:00",
"sha512sum": "83309bb6d6ea9409336f3c3dc093d474092d194f844c4ee35058590ea16c3f6c947c30ae5cfc60bf441a91a6199e0e4d1b0b5a1273fc27bcb708b76037cb630c",
"requires": ">=21.03.0-edge"
},
{
"version": "1.0.3",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.0.3/nf-amazon-1.0.3.zip",
"date": "2021-03-17T21:43:28.768+01:00",
"sha512sum": "cae88a271b3aadd86eae5accddd9f392ff0c49c2e165e24dab9a0ef2036595ed5be875f7faeea672565ebfc83bea50f4dccb44e2e9b52f3bef2b7d91521b01f5",
"requires": ">=21.03.0-edge"
},
{
"version": "1.0.4",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.0.4/nf-amazon-1.0.4.zip",
"date": "2021-04-08T11:13:24.435+02:00",
"sha512sum": "c52056616601cbe4d1e70a39bb562fce59a62196bf2be7058f0e5f572131d7c9ec981e8986eb9dede6f3cfed241d500a931c324070ee72dacb9abfb98fd8f70e",
"requires": ">=21.03.0-edge"
},
{
"version": "1.0.5",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.0.5/nf-amazon-1.0.5.zip",
"date": "2021-05-02T18:14:25.057+02:00",
"sha512sum": "1639e17a82ef25fb704d6a5f6e9c12b1c571415cd7d5dc217e5784965f60ac2fdf2b72600140bdda7c9ea24777c774ba249a1e50cbfbabd9a0725b127c10f101",
"requires": ">=21.03.0-edge"
},
{
"version": "1.0.6",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.0.6/nf-amazon-1.0.6.zip",
"date": "2021-05-12T17:16:48.294+02:00",
"sha512sum": "c2db1744a9d72d0e3e1e35fee6e164ae5fdf8ad8508e2544cf8761183a57a15bd8b4503400dcbca51acc81db3a0a853887db83c2638713175a9fd3ba2e790a3a",
"requires": ">=21.03.0-edge"
},
{
"version": "1.0.7",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.0.7/nf-amazon-1.0.7.zip",
"date": "2021-05-13T09:56:36.939+02:00",
"sha512sum": "e5d1a06cb6ae092b9746b2ad3d4c508fa47ac49e487708e16f6acd31fa322fdb415c26491cf006a2b53e9d2a2c278fbf897bd026ed5f92eb09aac478f8d77808",
"requires": ">=21.03.0-edge"
},
{
"version": "1.0.8",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.0.8/nf-amazon-1.0.8.zip",
"date": "2021-05-24T15:56:56.195+02:00",
"sha512sum": "b1563f6e16e4410904ae14c119145bc9896510e318f3d70b47222613590a95f3e112c73a64319522b95c2f5f5a939d26baa931219c027026f5c5c43c60d594ad",
"requires": ">=21.03.0-edge"
},
{
"version": "1.1.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.1.0/nf-amazon-1.1.0.zip",
"date": "2021-07-03T22:06:12.769+02:00",
"sha512sum": "89140346c14cf7fdd47fe651bb5ddf7ff6aba249e39385aef30b17beffb47c7cd7e75175d26e9c67bdf6e8ee285480fe5d173ae9f5e96e4766d10452fe5f0f7d",
"requires": ">=21.06.0-edge"
},
{
"version": "1.2.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.2.0/nf-amazon-1.2.0.zip",
"date": "2021-08-06T13:06:21.118+02:00",
"sha512sum": "c596da915306b9d9b6d4845cc36e15c40c42fc93ea133e07d0d804cfa72bcf88883db102cb59d914b9a3d216b488b62ec424c374eb49d1f460194e8f0eed7904",
"requires": ">=21.07.0-edge"
},
{
"version": "1.2.1",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.2.1/nf-amazon-1.2.1.zip",
"date": "2021-10-12T21:35:22.704+02:00",
"sha512sum": "a47ff7c3c82944602b15e299fb0361e45e9356096ae905acee48623373eaa21696c9ed233db012492e5315f8060f819eb799c71c9dc4bd77e06e9485acf3a6bb",
"requires": ">=21.07.0-edge"
},
{
"version": "1.2.2",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.2.2/nf-amazon-1.2.2.zip",
"date": "2021-10-19T12:23:08.673+02:00",
"sha512sum": "1314088b4881d0ba98e8cf669be9fb0a63c74271cafd5122b761ce015872bf240ebb53cd00fed65d62e260ff2a77381db4bb6b2dc25afb2226c6cf66afd41874",
"requires": ">=21.07.0-edge"
},
{
"version": "1.3.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.3.0/nf-amazon-1.3.0.zip",
"date": "2021-10-28T12:06:16.278+02:00",
"sha512sum": "5674b2b44408efcd160994a38e96f0cb48135b46352cbc314baec86c00ef2a592101621ad9422f632e3bf0a7263588770391e1bc32320c896005070514e3fdc7",
"requires": ">=21.07.0-edge"
},
{
"version": "1.3.1",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.3.1/nf-amazon-1.3.1.zip",
"date": "2021-11-11T19:18:29.42+01:00",
"sha512sum": "c04f011bb464c446ad641e25adf0f8a324420bcf3d8e83fe59cb29d63d75cdd72b068d3a5c9ae67872d14cca418f0ebec5f401735f32a6c02774ba76cabcaefb",
"requires": ">=21.07.0-edge"
},
{
"version": "1.3.2",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.3.2/nf-amazon-1.3.2.zip",
"date": "2021-11-18T10:41:23.312+01:00",
"sha512sum": "4d4cee8bdf08dc6596dbca13ca356f9d13cebc9c8a6af63307f74c983fc9d054c12e0bb1a866a0728b567ffef356bb9b41721adbbc90904397512d653ca2da2a",
"requires": ">=21.07.0-edge"
},
{
"version": "1.3.3",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.3.3/nf-amazon-1.3.3.zip",
"date": "2021-11-22T12:42:29.763+01:00",
"sha512sum": "97173d30cb4ebb5b97a543e5b40b0a4f9b2042e67fd536ac1f0b616d52e0d03d1b37948c60cb5d6adc8408e0ec3a8f4e1f1274dbe95b11d3f9cbc0a458c4539b",
"requires": ">=21.07.0-edge"
},
{
"version": "1.3.4",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.3.4/nf-amazon-1.3.4.zip",
"date": "2021-11-29T15:51:35.704+01:00",
"sha512sum": "de5f5c3ecd564128ee9b2721f0b762072babd57a21eab16cf03f6e39d201bdb7844e53ce5c61949997296cd2f653af3f2cb6308990bb69947e793e74e2c80e0e",
"requires": ">=21.07.0-edge"
},
{
"version": "1.4.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.4.0/nf-amazon-1.4.0.zip",
"date": "2021-12-22T06:14:10.286+01:00",
"sha512sum": "dc6c9125c8bf22d770b787272e3ca09942b018c238310ed2cd68fe129c28e0b4eb9d30b255a57e63a867f547a1b069275abb1e684d2ffdf9f4c5ba7b9257e58e",
"requires": ">=21.12.0-edge"
},
{
"version": "1.5.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.5.0/nf-amazon-1.5.0.zip",
"date": "2022-01-21T17:03:38.693133+01:00",
"sha512sum": "9b4543de063215bdf5f714be0a6080613f8b80eef49f0cebe0b172e266ae22694386cedb57156497a3dbccd853cbae21e8d3125958be964a82b4094e4abbdc69",
"requires": ">=21.12.0-edge"
},
{
"version": "1.5.1",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.5.1/nf-amazon-1.5.1.zip",
"date": "2022-02-19T13:39:54.695428+01:00",
"sha512sum": "8fd5b679ef864b84e964b39358b9546fe91afebd5ef85072699a36264f0332a2f4e9b803f66c5a58ed2f85690001750a370fb304044be3f5ad7f98322ba2b5c2",
"requires": ">=21.12.0-edge"
},
{
"version": "1.5.2",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.5.2/nf-amazon-1.5.2.zip",
"date": "2022-02-25T00:43:16.547077+01:00",
"sha512sum": "85a2f6141febfc3142205585838899042ed3e8aa90a92db7a162a2f083e74b2d4ce5aa380ae985e4d7d40eac2984102f7048477cf3967bf8de2e724603f23ce5",
"requires": ">=21.12.0-edge"
},
{
"version": "1.6.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.6.0/nf-amazon-1.6.0.zip",
"date": "2022-03-27T22:06:33.296348+02:00",
"sha512sum": "6d4c9bd3a81061db34b5caadd687b745c3c809345503d88cf6cdfdee6d51922008e856d499a916714ae8c792957ddb009151282c95d4026ecbab1c5951838f98",
"requires": ">=22.03.0-edge"
},
{
"version": "1.7.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.7.0/nf-amazon-1.7.0.zip",
"date": "2022-04-02T12:29:30.606713+02:00",
"sha512sum": "3ace7a0e20f71a6065c2debafa0e4f5a82129875c09da33c05634cd7c95477982da4acf0c2453a45b3b8c7bdece9118fa1950e088d81cf3a537bb4e6d9646794",
"requires": ">=22.03.0-edge"
},
{
"version": "1.7.1",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.7.1/nf-amazon-1.7.1.zip",
"date": "2022-04-23T20:21:39.444966+02:00",
"sha512sum": "36739292454506d04c5bb78cdf3738194c5da8340bc5cb7363c19bea6d89b0be8010dafe2a0e31ecc4087948bd2e2f072e9da104e0608c3abf5da2025a05e96e",
"requires": ">=22.03.0-edge"
},
{
"version": "1.7.2",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.7.2/nf-amazon-1.7.2.zip",
"date": "2022-05-15T14:11:31.057634+02:00",
"sha512sum": "bf673e4e95b180f08240e559f11aa841d5589834fea29c31d47be7a99b51a85d5170224f5de654334b43b195f3227a8a3da3f6423637260c0f9e934990226ea7",
"requires": ">=22.03.0-edge"
},
{
"version": "1.8.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.8.0/nf-amazon-1.8.0.zip",
"date": "2022-05-25T19:54:56.104156+02:00",
"sha512sum": "b37902c1dd5da3ec3aa5de9e8aee63a5206b5aed17d57e5295ab41c9d6da0dbd5ab80da840f17b9e727ab3be2f012973a525366239a5d81f278d3df5bf9bfb1d",
"requires": ">=22.03.0-edge"
},
{
"version": "1.8.1",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.8.1/nf-amazon-1.8.1.zip",
"date": "2022-07-13T13:12:16.048952+02:00",
"sha512sum": "9bc42c6640ec814a5940796f7319d26e7f66aa418021c4ed49a5b8ecddc95cb466cca4902aa937cd6631134e77432286f689aad2d59c590a15f7f46ca6e42861",
"requires": ">=22.03.0-edge"
},
{
"version": "1.9.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.9.0/nf-amazon-1.9.0.zip",
"date": "2022-08-01T18:54:01.270462+02:00",
"sha512sum": "3e3314c8cee47a2b926792c17fd9072d9bb8863806d1247c75d58c8e8707127d286267116d5d39743049ddb547f9dc93c7b57e2f1a1517bcce69b833b2660394",
"requires": ">=22.08.0-edge"
},
{
"version": "1.10.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.10.0/nf-amazon-1.10.0.zip",
"date": "2022-08-11T12:55:01.979658+02:00",
"sha512sum": "4868148d776753e1d627626820cf215a796cb7ab9b2c96449c2933f59284eb5f0a6d8d9ba0fd3e06041a6c3bf06995eee8ec50011704790b44ad3fc34ba25e49",
"requires": ">=22.08.0-edge"
},
{
"version": "1.10.1",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.10.1/nf-amazon-1.10.1.zip",
"date": "2022-09-01T22:33:18.464729+02:00",
"sha512sum": "8dc618f1277a28532f2377dcf1982b55142b0300c76986bced4df142434468f19696e4aeffd59279c910c46de118f94c52ef6313ff3545dd214f5aa14eef112a",
"requires": ">=22.09.0-edge"
},
{
"version": "1.10.2",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.10.2/nf-amazon-1.10.2.zip",
"date": "2022-09-07T22:05:27.008562+02:00",
"sha512sum": "88b589391c994178dab86de574ef07a12ebee15fe93eaf0d6496eca807504be82f53f401b6f182c9dcb86b97499c80a865ef8e720cb167ca0929db46536f2a91",
"requires": ">=22.09.2-edge"
},
{
"version": "1.10.3",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.10.3/nf-amazon-1.10.3.zip",
"date": "2022-09-10T18:07:14.617631+02:00",
"sha512sum": "3684e374be4a7ba59a3fec22d90956251b2b79a8f000b5afd07add6b6dbe28378698b14901c9d03b037ae6fe48de20870fb5575404874861059507bb943e9490",
"requires": ">=22.09.2-edge"
},
{
"version": "1.10.4",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.10.4/nf-amazon-1.10.4.zip",
"date": "2022-09-19T23:14:29.685285+02:00",
"sha512sum": "1ef95fa2f48b28d620084a7bd09676a4b6f24c83ad4f1c85fa18a43cd837b4c527daabbcf69662bae4278a57b95a264093522738e8d53dc702b7d38fe1676755",
"requires": ">=22.09.2-edge"
},
{
"version": "1.10.5",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.10.5/nf-amazon-1.10.5.zip",
"date": "2022-09-20T23:19:32.778123+02:00",
"sha512sum": "030cfbd3de88ce4b42ed560bde1d89cdbc69cc7f4444efbf3474779aa3eba9d81a3f8aa81dbd5401499b76ce0e103c990d02928884f72b058ae7f5dfaa991ae6",
"requires": ">=22.09.2-edge"
},
{
"version": "1.10.6",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.10.6/nf-amazon-1.10.6.zip",
"date": "2022-09-26T17:28:02.451954+02:00",
"sha512sum": "13de9d68b8dca15f9a6c137d0ee39bac2980e1e4a90a4797ddb3a6946827dce39976ff014aa7d763e1d294e33ef6470540cb7291a555256b3d33ba61de2acd2a",
"requires": ">=22.09.2-edge"
},
{
"version": "1.10.7",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.10.7/nf-amazon-1.10.7.zip",
"date": "2022-09-28T12:18:14.051774+02:00",
"sha512sum": "7994e56f0a7512523227317307de9116d4880b6cf9443913593bf90d3171611f976287b1287934adf1e7511f42b5d1d6f0c8cab0e2cd67820c35b796b2f157f8",
"requires": ">=22.09.2-edge"
},
{
"version": "1.11.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.11.0/nf-amazon-1.11.0.zip",
"date": "2022-10-03T16:41:05.775102+02:00",
"sha512sum": "963cacffddbc17f8b9ecf4aa386c785080540bb55dd3e7e9d83dc772b45fb416c3bd7efc16bc5908430b71a3a48c96d4614a944be3e99c666121b6a3d1c9dedd",
"requires": ">=22.09.2-edge"
},
{
"version": "1.12.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.12.0/nf-amazon-1.12.0.zip",
"date": "2022-11-21T13:55:08.529169+01:00",
"sha512sum": "6e4f437781aabc6ec4d656589392cb72b0913602fa8fe8f633e602fe11810321b80edc66f1747d8e9bb7efb2e832d4e328b16ef5a468d65fe0cf15a95c91f03b",
"requires": ">=22.09.2-edge"
},
{
"version": "1.11.1",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.11.1/nf-amazon-1.11.1.zip",
"date": "2022-11-21T22:43:49.898895+01:00",
"sha512sum": "15f9c33a0be1d76b9489f09af915aa29550b9fdd42a763fa58dbcfa4c7a48204c8cdf70903c4f2caf7868a2228e9b6a197fecbd34f101b8cfab167697e113402",
"requires": ">=22.10.3"
},
{
"version": "1.11.2",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.11.2/nf-amazon-1.11.2.zip",
"date": "2022-12-09T12:12:55.877638+01:00",
"sha512sum": "90e9eed00e0b346a16ac69c72424a3efc0d08a95d899129f3ba07437f9b92ab6b2cf6fa018213c8a0d173bda87f78d5c51f544c0a31a9e2e7abf266474399195",
"requires": ">=22.10.3"
},
{
"version": "1.13.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.13.0/nf-amazon-1.13.0.zip",
"date": "2022-12-13T22:59:02.518547+01:00",
"sha512sum": "bbe64d06f50577a9b5024b699081001cc690effeaf70338eb352f09e5346a9dd9e5cfc1eaf8f7d728df341450f118e95da9ef1796926b8b0285e727f95073066",
"requires": ">=22.09.2-edge"
},
{
"version": "1.11.3",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.11.3/nf-amazon-1.11.3.zip",
"date": "2023-01-14T14:48:55.624471+01:00",
"sha512sum": "a71ca56c7ade7f80ee43a55f94f4dcc507ff2b13b99b55900d5a21b8dbde97bd3ba13b93052b75027aff826a264f8160940947dfe8c7cc644ccea46405d2b123",
"requires": ">=22.10.3"
},
{
"version": "1.14.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.14.0/nf-amazon-1.14.0.zip",
"date": "2023-01-14T18:44:38.787145+01:00",
"sha512sum": "551c147009f2edb147e6737ee600251276f75d424e95610e1f95608113a8330dd5a2db2ddc3f0bbff41109675fced8b379f12a1015bd353d8ae7fb30a2f43fc9",
"requires": ">=23.01.0-edge"
},
{
"version": "1.11.4",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.11.4/nf-amazon-1.11.4.zip",
"date": "2023-02-18T20:23:01.668753+01:00",
"sha512sum": "59366858aeb5c890a2bb9dbe4fc66f69a4219bb1c1b766a1469d829bac5ccf1b266f950d677bcabfdf8a007178ed4fef5d25145ddb510f1f0f616ea9a5387d8d",
"requires": ">=22.10.3"
},
{
"version": "1.15.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.15.0/nf-amazon-1.15.0.zip",
"date": "2023-02-21T19:21:48.699163+01:00",
"sha512sum": "33d55a648f3eaa70e8227cfc3d308b3e33ab46629176db7ff11fc6098d835837ddb7792b09707787f27958188926a56df1cae6891865a4bb3ebb437b5cb0ece3",
"requires": ">=23.02.0-edge"
},
{
"version": "1.16.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.16.0/nf-amazon-1.16.0.zip",
"date": "2023-03-19T19:20:11.314521+01:00",
"sha512sum": "08f04a5a1daac6e61fa614f4eab94d6b7d45a737dc641442c1c7bd1d68854df384d13a1f0e98e3b11d11f5be487f796eb3b73cc4a41e7b84ca9064fa5ebfd76a",
"requires": ">=23.02.0-edge"
},
{
"version": "1.16.1",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.16.1/nf-amazon-1.16.1.zip",
"date": "2023-04-01T23:35:11.556695+02:00",
"sha512sum": "c1a2f13fda9297ce29aa96e150ec3cf49e2865239b27a1b2c098b68acbc08f764bf922b68140e1d29a101b7e8fd27571e3a3f2d16ba230c5b35cd2aec4d1dc68",
"requires": ">=23.02.0-edge"
},
{
"version": "1.11.5",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.11.5/nf-amazon-1.11.5.zip",
"date": "2023-04-13T16:32:14.300741+02:00",
"sha512sum": "416c619268df0229112e465b6181594ae35cdbfaa43b011e1670c876992631d0a86f9d7f754770ca082da953d5c11d91508daf13f85dbf1ccd2825c7a27b85a7",
"requires": ">=22.10.3"
},
{
"version": "1.16.2",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/1.16.2/nf-amazon-1.16.2.zip",
"date": "2023-04-15T08:16:37.428124+02:00",
"sha512sum": "05bfe01718c5ad29b2fb8a1e11dd40d05ce461d5ab83603866d75f952271149e2ee5da2cacbca524bea1d1769072b61201b010a1167becee206c5edba6bf0f9d",
"requires": ">=23.02.0-edge"
},
{
"version": "2.0.0",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/2.0.0/nf-amazon-2.0.0.zip",
"date": "2023-05-15T05:54:47.82062+02:00",
"sha512sum": "372a98f87cfd00b3bd1559a3e41ec1de73df063225cd98e0cc1d6ce6c600b7258820a86a9e5258ee740da8a621ebc4b3d762d2daa97a91be5bc758bfb421b015",
"requires": ">=23.05.0-edge"
},
{
"version": "2.0.1",
"url": "https://github.com/nextflow-io/nf-amazon/releases/download/2.0.1/nf-amazon-2.0.1.zip",
"date": "2023-06-14T22:44:05.30856+02:00",
"sha512sum": "3aa4ce67579652b97fd28d005b2e3bf8524848cf363ebbaab202f956108b529e49af9f53313ea9b8b1165837d2ebf8ac6e8584b7e7a0db324f44a5b920546ef5",
"requires": ">=23.05.0-edge"
}
]
},
{
"id": "nf-console",
"releases": [
{
"version": "1.0.0",
"url": "https://github.com/nextflow-io/nf-console/releases/download/1.0.0/nf-console-1.0.0.zip",
"date": "2021-01-04T21:00:14.872+01:00",
"sha512sum": "4e681a539a0a902c1d93bce04cb2a5e49ed286581bc1ea0202044d040566f583aa0efabe0865d351eb284e4962020bc23d62075f52b04a06ab655b53e8aeea34",
"requires": "21.01.0-edge"
},
{
"version": "1.0.1",
"url": "https://github.com/nextflow-io/nf-console/releases/download/1.0.1/nf-console-1.0.1.zip",
"date": "2021-01-15T11:44:57.809+01:00",
"sha512sum": "041c1173286bd34e94f0c4e581d08108e3d99d4342ea6979495f661f356a62e4c8c426b83ab3e24503a0547fec66f5658d7c3431ffee96b9be08f4aab43ac544",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.2",
"url": "https://github.com/nextflow-io/nf-console/releases/download/1.0.2/nf-console-1.0.2.zip",
"date": "2021-03-05T11:52:41.495+01:00",
"sha512sum": "c2f28cf41a05af39004c520d339d6a8464975c783642228b2705396db58951106298fecd5832c34f163c13632be28a9ebbc86e7681c61a34970d771d34f27e4f",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.3",
"url": "https://github.com/nextflow-io/nf-console/releases/download/1.0.3/nf-console-1.0.3.zip",
"date": "2021-05-28T16:16:58.111+02:00",
"sha512sum": "2ef5562add3084d00f9e0bf421c8e374eb7694b93c658d8d3045b6ad18ec0bb05bfb16eaad7e085892cf6be4ac3fdb825039d2964745fad46dd25da129a0a03a",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.4",
"url": "https://github.com/nextflow-io/nf-console/releases/download/1.0.4/nf-console-1.0.4.zip",
"date": "2022-09-19T23:15:11.703001+02:00",
"sha512sum": "e94c70c87eda9110893ba91a89b5a6be43203f338412b4d40cf756fb64d3a82e53e748ea9d3772189985009b77dbce8dd0cb48fd0628bffe6bfb5b4bda8ff5c8",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.5",
"url": "https://github.com/nextflow-io/nf-console/releases/download/1.0.5/nf-console-1.0.5.zip",
"date": "2023-01-14T18:46:02.016967+01:00",
"sha512sum": "4541879d8eeb414251f5744ed974a8afcaf4b036fb528152cb732856fdbd039d555d8af8f703f18892b7797e6cef679720780e290f22d14644580009ea62651e",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.6",
"url": "https://github.com/nextflow-io/nf-console/releases/download/1.0.6/nf-console-1.0.6.zip",
"date": "2023-05-15T05:56:52.21062+02:00",
"sha512sum": "b9173447b6015067702e17b264252141d983db87b8c3290ae23a9e990a5f8d3f6d9301bfc475337601a8db3bd2c6336febf80a59f545b1051f5c11541bd7e1e9",
"requires": ">=23.04.0"
}
]
},
{
"id": "nf-google",
"releases": [
{
"version": "1.0.0",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.0.0/nf-google-1.0.0.zip",
"date": "2021-01-04T21:00:14.872+01:00",
"sha512sum": "535d8d0145745532569cf88e04a8a81e9b56e6d570b2ee19aeb0d3c5ff0c39b45f73cb24e77bbe4b63ca3d10dceab66c681c89e29f37c9d165d06b107049fa20",
"requires": "21.01.0-edge"
},
{
"version": "1.0.1",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.0.1/nf-google-1.0.1.zip",
"date": "2021-01-15T11:44:57.809+01:00",
"sha512sum": "bb105b7c4d8b273dba8df720cb8b47faf4722c5620e449075b44bffa930602d46862ca4f9f147eb92b7245094e58c11c9aa8b51d09dadbb3ad643c6a096cc34c",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.2",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.0.2/nf-google-1.0.2.zip",
"date": "2021-02-16T18:26:38.163+01:00",
"sha512sum": "52e28ebbf389398d80928dfe2b295b3b1292c5c3cd1a60f87db6e2b7947f0d02738117f53243f1c3642a5f28e2f7054e0e93d9408b61b3edc31046fd4c421c7a",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.3",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.0.3/nf-google-1.0.3.zip",
"date": "2021-03-05T11:52:41.495+01:00",
"sha512sum": "62e44cbf1df52cc2acd36541d966c8bedfd796ffb1c3b804423961bb9ed5a3fb77dc9c739332c1e449bebf0eca463c4a89360c8ac3f83792fb2270d396ee1421",
"requires": ">=21.03.0-edge"
},
{
"version": "1.0.4",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.0.4/nf-google-1.0.4.zip",
"date": "2021-05-28T16:24:11.094+02:00",
"sha512sum": "5a46c6acfc15fe53e9581013f65b0ff80c3dde88b180d61285b33196b790d5ebfe8d63663ec8439564248ba2ead3931726b9a7ac88b93efa854b35088d97b90c",
"requires": ">=21.03.0-edge"
},
{
"version": "1.1.0",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.1.0/nf-google-1.1.0.zip",
"date": "2021-07-03T22:06:12.769+02:00",
"sha512sum": "7d6776a3668f146e70e51cf36a9a5f493f7c3db1106502a4e66d1f4634a1997c6de0ee9dacd754d0ab155100c8a4ac418d4993dfd7b7e76dffb49ab1dc2977b9",
"requires": ">=21.06.0-edge"
},
{
"version": "1.1.1",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.1.1/nf-google-1.1.1.zip",
"date": "2021-10-12T21:54:29.898+02:00",
"sha512sum": "cf8f0c3a960f3451e212de0b4e6923fb38ea95c93cf8bd1fbe7a27a55f76c97417578cbc7372a7d384429c8c3ea3480ffe1c8a48f15cd080361ae4ce972dfe3c",
"requires": ">=21.06.0-edge"
},
{
"version": "1.1.2",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.1.2/nf-google-1.1.2.zip",
"date": "2021-10-28T17:13:45.628+02:00",
"sha512sum": "216b1ad1ccab0c5f31d75d716f61a315923bdfc5bf2eead27c4a839dfc653bfffc560672cbcdffe4897762f484f0c58f6a81f1817260f64f74ebbc706097de7b",
"requires": ">=21.06.0-edge"
},
{
"version": "1.1.3",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.1.3/nf-google-1.1.3.zip",
"date": "2021-11-22T12:42:45.343+01:00",
"sha512sum": "aa7910c6a29af11b084f2b9292a2bce7d78c3df827f124c93def79c30847f67dd7b80068dcc93425d512bb40c19ba802c48e1921bfec03a196df09cd3861ba9a",
"requires": ">=21.06.0-edge"
},
{
"version": "1.1.4",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.1.4/nf-google-1.1.4.zip",
"date": "2021-12-22T06:13:51.994+01:00",
"sha512sum": "a0f5872e17e9c9e5836767b7883594efe0fe17832ceda9e11a725c2a7ae87b6d54c823d5d672f665388c9591b48a0474b760ae2116422f2a347f9027c4bb9c32",
"requires": ">=21.12.0-edge"
},
{
"version": "1.2.0",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.2.0/nf-google-1.2.0.zip",
"date": "2022-05-25T19:56:48.940617+02:00",
"sha512sum": "a4fc2028d56576c69d7c7768a12aa9c8a9902001c4e23dec1a3cd052d1a7d81ea0275ea377efab8c725e73107e2ede6e8499f2057b79662702d55621ace7783a",
"requires": ">=21.12.0-edge"
},
{
"version": "1.2.1",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.2.1/nf-google-1.2.1.zip",
"date": "2022-06-06T13:31:22.647293+02:00",
"sha512sum": "d00bbeb9bf6c0af92d8c7fc7512ee3dd685f8aea7c4cc20aa34481e0f5e2c356d01be940449f8796fef3e23067e69c0bcf4ad279dcaffebb8a8e90e1c52928ae",
"requires": ">=21.12.0-edge"
},
{
"version": "1.3.0",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.3.0/nf-google-1.3.0.zip",
"date": "2022-07-13T13:22:57.658779+02:00",
"sha512sum": "b63d33bb20c8011fa61ae8e1deec1efb4a240f3cd9e75b5ad35cea95fa64d1f73136f0f59890701c6d3042afd1c957d25d3a270aa6030e514163bfd773889800",
"requires": ">=22.07.1-edge"
},
{
"version": "1.4.0",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.4.0/nf-google-1.4.0.zip",
"date": "2022-08-01T18:54:30.79225+02:00",
"sha512sum": "3314c5a42f00b01841f6ce2e4655117b9ace520e8f89408f020b6f2e78dcfb6789c8f4706e2d9318406dadf0ebb3367bdb00a9ae22683bf26e54e9dcea55abb7",
"requires": ">=22.08.0-edge"
},
{
"version": "1.4.1",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.4.1/nf-google-1.4.1.zip",
"date": "2022-08-11T11:21:50.953026Z",
"sha512sum": "ce9eab85f2abbd0c0cef628bacd315bd400cfd353d7882d61bbda25f16b105c3adc1f5e13af8e70e3f68c1ccda87e7571b788ad00086bf0053d170ae7ea63f95",
"requires": ">=22.08.0-edge"
},
{
"version": "1.4.2",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.4.2/nf-google-1.4.2.zip",
"date": "2022-09-01T22:33:40.254873+02:00",
"sha512sum": "6fa734d7791b4fee2e5127eb28838ed89fe3c337534879eaf01f61d81703ae51d9759eb0777a7f8cb238fda3a7da5b0dcb0a57eb747f11e745f78bd71382564e",
"requires": ">=22.09.0-edge"
},
{
"version": "1.4.3",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.4.3/nf-google-1.4.3.zip",
"date": "2022-09-19T23:15:38.578826+02:00",
"sha512sum": "31bc055d4c5e0363b1dc93027a29dc1b6a02edf9a936b78358e3e966d53daf7a2346c9dbd61c89b7c4019a869babc20f74c876c53b56628086b719c2dacfdbcd",
"requires": ">=22.09.0-edge"
},
{
"version": "1.4.4",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.4.4/nf-google-1.4.4.zip",
"date": "2022-09-26T17:28:16.948784+02:00",
"sha512sum": "9df0ff529dfe65a1cce394d9d6c7bfbbf28ac1d45945dfb6506d05f1542381e25fbdce58d6fa0731ed2a8d94f6551a4c145d3d08f70acd05916e1e63acd2922c",
"requires": ">=22.09.0-edge"
},
{
"version": "1.4.5",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.4.5/nf-google-1.4.5.zip",
"date": "2022-11-13T20:09:53.954404+01:00",
"sha512sum": "c0e318381db988b93b68987e801072ca6772c3344a1045bbfe7720c5371ff54b41aaf24b3ddd7886385851e8dd6ba5b5a0e0355cc1264d01b3bed3c076b9b168",
"requires": ">=22.09.0-edge"
},
{
"version": "1.5.0",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.5.0/nf-google-1.5.0.zip",
"date": "2022-12-13T22:59:23.878233+01:00",
"sha512sum": "f3e86d712405d7d7b17a08913c37bc2cb994dc3e0b0a085f00da4ac8263c9d04ca95fb9d74ae70b8d24fa9a68954084a1b6956f6fc02cc5f2731449dde43ac97",
"requires": ">=22.09.0-edge"
},
{
"version": "1.6.0",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.6.0/nf-google-1.6.0.zip",
"date": "2023-01-14T18:45:46.274467+01:00",
"sha512sum": "d87cebad6ca6605288510c808d16e37054ed5bf1d2c4bb975fc8680daa0357c172aac56ba584e6b71096485aa0ece7e06624664894bcbd9e66a6d8dba5ff5934",
"requires": ">=23.01.0-edge"
},
{
"version": "1.7.0",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.7.0/nf-google-1.7.0.zip",
"date": "2023-02-21T19:22:14.190118+01:00",
"sha512sum": "a8ff422071dfd5a07835e793046e1c2ccf78bbc5f35d99226be7772c332ee6ac2642ec32e5bf702b61f6abd856cb4bd2ed8eab65c27bdf863e4a1333c147bd6e",
"requires": ">=23.02.0-edge"
},
{
"version": "1.7.1",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.7.1/nf-google-1.7.1.zip",
"date": "2023-03-19T19:19:45.927471+01:00",
"sha512sum": "9a57bbaaf33bea6f9f4a62a12a2ef938b35f6d14579e19b6232ea3defaffd8a7a31040920826a4defa7dcb9b50c1ebde750c914ea1448d656a1a34de9b6dedd4",
"requires": ">=23.02.0-edge"
},
{
"version": "1.7.2",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.7.2/nf-google-1.7.2.zip",
"date": "2023-04-01T23:34:45.210465+02:00",
"sha512sum": "f7268fdf6ab3c127d240acc5c687fad385a6372dfa06f3136d650b0d4faf4b21c2d33dd576f961cab8359568fbb36f3904927583a80a2a7644752e5f19c094e7",
"requires": ">=23.02.0-edge"
},
{
"version": "1.4.6",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.4.6/nf-google-1.4.6.zip",
"date": "2023-04-13T18:17:46.579537+02:00",
"sha512sum": "0ca3583a9d655c392a4e5dcf565c033efe94b43b4580fc166ae1e087eb0e4e44869ec6375667f455d65bccf6924025a7562258859bedb4c16b42a7ac9c6fbbf3",
"requires": ">=22.09.0-edge"
},
{
"version": "1.7.3",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.7.3/nf-google-1.7.3.zip",
"date": "2023-04-15T08:31:54.222111+02:00",
"sha512sum": "23a39dece6ea5203ab269d630402572a32a801fd0bcff91bdd979376c7aab6597c3dbcf735ecca812af398599a6573121af6681cc3abfcdf3841dbe8a5077544",
"requires": ">=23.02.0-edge"
},
{
"version": "1.7.4",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.7.4/nf-google-1.7.4.zip",
"date": "2023-05-15T05:57:26.709438+02:00",
"sha512sum": "91c16a79b09815d377e29d6da22880e6f61f5f9a51e6867ee4db12c50841a88e40a899022f8199aa49c9d2eec672347c70de1ffaaec391531db0497796814a59",
"requires": ">=23.02.0-edge"
},
{
"version": "1.8.0",
"url": "https://github.com/nextflow-io/nf-google/releases/download/1.8.0/nf-google-1.8.0.zip",
"date": "2023-06-14T22:45:33.349689+02:00",
"sha512sum": "4da08833ec1a9ae99c60becd868bed118a04cdb7be205ac3a8ad034e69f07c403ad0e40db709f3cab60008df55ed0085433f2134735b46f31b203d078d78f92c",
"requires": ">=23.02.0-edge"
}
]
},
{
"id": "nf-ignite",
"releases": [
{
"version": "1.2.0",
"url": "https://github.com/nextflow-io/nf-ignite/releases/download/1.2.0/nf-ignite-1.2.0.zip",
"date": "2021-01-04T21:00:14.872+01:00",
"sha512sum": "bdd85adff953c3c4bb1278cf011f236f192032909d86bf0f7da5f2af6ace98f305f4ceb458588b0e94b66e138d51eac94e35a40ad26852d2d7a99360a56ea9b1",
"requires": "21.01.0-edge"
},
{
"version": "1.2.1",
"url": "https://github.com/nextflow-io/nf-ignite/releases/download/1.2.1/nf-ignite-1.2.1.zip",
"date": "2021-01-15T11:44:57.809+01:00",
"sha512sum": "1b4cab2f0147870b9d054b99630cb40a005c4d294d4bb1e1da4b794caa262abc0730000bf74a24f994dc88603d46c259e02bf751676a8de3811343e41381e616",
"requires": ">=21.01.1-edge"
},
{
"version": "1.2.2",
"url": "https://github.com/nextflow-io/nf-ignite/releases/download/1.2.2/nf-ignite-1.2.2.zip",
"date": "2021-03-05T11:52:41.495+01:00",
"sha512sum": "f8a40d3c6d1812f18e6bfbf9d906f67e2e4bbcfebadf2d1a53e64a0fce15d74d5bb6bfc1a35aa11c26e896961f820849107d3ac16146081ebaed3bb75e80c7ed",
"requires": ">=21.01.1-edge"
},
{
"version": "1.2.3",
"url": "https://github.com/nextflow-io/nf-ignite/releases/download/1.2.3/nf-ignite-1.2.3.zip",
"date": "2021-05-28T16:24:11.094+02:00",
"sha512sum": "a533dd638efee5d63353dc7b22f31eb08809fc1cd711d4c5eed9d01be2ef0be0db5fd7c134447cab43ad93cd2e1295c0c4a40d6dafaa100f7ce466a04fc9e414",
"requires": ">=21.01.1-edge"
}
]
},
{
"id": "nf-tower",
"releases": [
{
"version": "1.0.0",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.0.0/nf-tower-1.0.0.zip",
"date": "2021-01-04T21:00:14.872+01:00",
"sha512sum": "47e578fe55541e2902259977f922f5c48ae45c081957138362b018ce08dd578f52bb2135370f52785301219d6457428e4e4204df57326724b7a640cc337e2691",
"requires": "21.01.0-edge"
},
{
"version": "1.0.1",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.0.1/nf-tower-1.0.1.zip",
"date": "2021-01-15T11:44:57.809+01:00",
"sha512sum": "3d9103b73b8a26f7debf6d657df97953230f7c86f71f2ac62fc2ae839519a1e1b73837c317ea19053a99045514744e1496548f890440a97354ee74d02e9c92fd",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.2",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.0.2/nf-tower-1.0.2.zip",
"date": "2021-03-05T11:52:41.495+01:00",
"sha512sum": "e73d9dbad6e7693920a85acd91d2d5fc52ce47039c825a10825145e79d5d1fb7e638ff8258e6e53e327a37fdb010584774cba13bd731414e0bdf361256eca7de",
"requires": ">=21.01.1-edge"
},
{
"version": "1.1.0",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.1.0/nf-tower-1.1.0.zip",
"date": "2021-03-24T10:24:43.263+01:00",
"sha512sum": "ea53fa07020a310476f7e6aa1674f645af8e4db2df19ffa7c2d9293506528eccecc49d5cb42e7a908803eaee81eab1f80886800d52c1201d7c09ad7373e687be",
"requires": ">=21.01.1-edge"
},
{
"version": "1.1.1",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.1.1/nf-tower-1.1.1.zip",
"date": "2021-05-28T16:24:11.094+02:00",
"sha512sum": "cebb76bd4b2d1021950098daba57ebf1a670a99583ae02ec9c393467ef0583970c9ae0407cdb6e72709905e63fc5a091f86d158fcfe1e6c80815516ee3e518b1",
"requires": ">=21.01.1-edge"
},
{
"version": "1.2.0",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.2.0/nf-tower-1.2.0.zip",
"date": "2021-08-06T13:17:27.579+02:00",
"sha512sum": "4ca16c029f380ee0aa253d663f61f740ecd726f0988bd3130091f2f73237d6b9bce59768c49736f3af39a556a456ef13fb7b668ab5456260ac1ede1b6df8c5d3",
"requires": ">=21.01.1-edge"
},
{
"version": "1.3.0",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.3.0/nf-tower-1.3.0.zip",
"date": "2021-10-28T17:13:28.089+02:00",
"sha512sum": "34d21a11aff124045d24ee2b063e86cbbc22a9e715fdf863b2b3c399f593d4ac731745126e8f8453ab6343b8ac5c9507cd96abec9861c150dc11243cba9745cc",
"requires": ">=21.09.1-edge"
},
{
"version": "1.4.0",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.4.0/nf-tower-1.4.0.zip",
"date": "2022-02-07T12:17:49.445966+01:00",
"sha512sum": "21f873216f5f0d76a5f7d692c4399419939a98a2d6a740756ee6eb41d5e5c38e750d0facab17547191a9e3fb2100a5b6f7d0a3d28b77367101f9382e93fc6348",
"requires": ">=22.01.0-edge"
},
{
"version": "1.5.0",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.0/nf-tower-1.5.0.zip",
"date": "2022-08-01T18:54:49.887648+02:00",
"sha512sum": "7129c95eb1be42c190af721bde65dee95c0b5bf8c43a6ad863eb9c2b3ff258f88ba5f98e39afca3ab13b629e530cd031c853594a3cc9f6c66269b459bd60f7a6",
"requires": ">=22.08.0-edge"
},
{
"version": "1.5.1",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.1/nf-tower-1.5.1.zip",
"date": "2022-08-11T11:22:43.752235Z",
"sha512sum": "377061c0cab81c4c8fb6e1c06078f31983b15a1d5e82157f1662283b6e628db20ed4e0a54dd8dd5a69fb9c237f171b333e533d6df98cf8ea6747c7cd8382a0e2",
"requires": ">=22.08.0-edge"
},
{
"version": "1.5.2",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.2/nf-tower-1.5.2.zip",
"date": "2022-09-01T22:34:02.06694+02:00",
"sha512sum": "81a18b9a6bff6566cc27ad1355df02caeb83bbea4126cfcf22f2445e51e46c3d0d93d0c6f19202eb644333eada2b7c3bede1d8a17bff3e3a8225ac7b39cd2c1b",
"requires": ">=22.08.0-edge"
},
{
"version": "1.5.3",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.3/nf-tower-1.5.3.zip",
"date": "2022-09-19T23:15:56.680213+02:00",
"sha512sum": "a91b6606d5787a7cf52af9b32a3626406f83fe482ba9c61a104f5c197df21b91d68a3ae88e5e796368bda2b46f6ea57e14db2e9f7ae28310321fc0e46862623b",
"requires": ">=22.08.0-edge"
},
{
"version": "1.5.4",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.4/nf-tower-1.5.4.zip",
"date": "2022-09-20T23:50:52.018322+02:00",
"sha512sum": "883263b802f2b52da7037f91d5cf3c13a3f2804e3331221316c765bfee7c2a81358643ce1e7b530380046248551769cb50dfdbcc06aee1f6af1c90d12d538edc",
"requires": ">=22.08.0-edge"
},
{
"version": "1.5.5",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.5/nf-tower-1.5.5.zip",
"date": "2022-10-03T16:41:47.250209+02:00",
"sha512sum": "0242eaf596afa71c391ae3903ad57d190fd339549b426d352f98900bf73bf71befe487631ccab8ced06aa966ae6bc825c70cab7a40fca73c5f6093a114ff275b",
"requires": ">=22.08.0-edge"
},
{
"version": "1.5.6",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.6/nf-tower-1.5.6.zip",
"date": "2022-11-13T20:10:12.103901+01:00",
"sha512sum": "f7f41884e5cd4b4d5ee13178e0542bd38fb3ce31bb185775787645ef199394e1aff4a5a0a415edb7d68ed0ac3b04ab4a77cddbb1778d72fc36d82e53e09cf7e8",
"requires": ">=22.10.2"
},
{
"version": "1.5.7",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.7/nf-tower-1.5.7.zip",
"date": "2022-11-29T17:31:38.502625+01:00",
"sha512sum": "664223b7b0dc04b1027e1a4733a9e21eee0d63d626d773f39adbb31e57b41953c7033e854a84c1d8ab40cc65a49c7071422f9151e9e4b4c2af43cd7c49594e86",
"requires": ">=22.11.0-edge"
},
{
"version": "1.5.8",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.8/nf-tower-1.5.8.zip",
"date": "2022-12-13T23:00:08.78198+01:00",
"sha512sum": "8489b31c62d79a354694a98c1390520b8b08e19be374d9a3751f726e4a34a2344d20b2d4143a5e1f088950ddde79babdceb93db896ff12e3869fa2625b34e1dd",
"requires": ">=22.11.0-edge"
},
{
"version": "1.5.9",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.9/nf-tower-1.5.9.zip",
"date": "2023-01-14T18:45:37.386739+01:00",
"sha512sum": "71e6b27cfe602bf0c7f30171d05dd59094eaeb64ac8f350876d703aca481923a810df57b8dfac6abb77cdb6096ebed5d6f0549b9f8945d6ccec668b3029f83c2",
"requires": ">=22.11.0-edge"
},
{
"version": "1.5.10",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.10/nf-tower-1.5.10.zip",
"date": "2023-02-21T19:22:32.086062+01:00",
"sha512sum": "e31bf01b89fbf803767ac88174b6d6b5f6c7ea94913058e5f67588e41af6885f78634f8e8293a90e89047f6ed31d86790b19c296e8a3d8dc14445a0534bf8bba",
"requires": ">=22.11.0-edge"
},
{
"version": "1.5.11",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.11/nf-tower-1.5.11.zip",
"date": "2023-04-01T23:34:13.803917+02:00",
"sha512sum": "2a584cb6a3d41952d7a2cf4e66cd4aef4f632bd79bae7fcb868a7a639a0ddb3389c0b7d50f8e80a8a9b1da55822f83e0a34101dc8bb583efa560189a63de24ff",
"requires": ">=22.11.0-edge"
},
{
"version": "1.5.7-patch0",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.7-patch0/nf-tower-1.5.7-patch0.zip",
"date": "2023-04-13T17:14:41.309811+02:00",
"sha512sum": "c039d1426e9e1181c677028715308bda76d86e9db701eeb383fe40bcd5eb55087ca0bf96b5e5742f34771d4e7e3d8f8ccca29da33b9cd64ffe9501501a5fec0b",
"requires": ">=22.10.2"
},
{
"version": "1.5.12",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.12/nf-tower-1.5.12.zip",
"date": "2023-04-15T08:34:41.642091+02:00",
"sha512sum": "ab79b1306d7e5926d6ce4006bef3fce384ac58a155eb78c031c50a9234e1ae9300c13a46032a63b527a9d14aab3bb70d97b65217d2fdbaadf46baa8500182f7a",
"requires": ">=22.11.0-edge"
},
{
"version": "1.5.13",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.13/nf-tower-1.5.13.zip",
"date": "2023-05-15T05:57:37.083295+02:00",
"sha512sum": "8f104bdd6f8646fe0cbeaf1f7282622aee07710ae92cc7a90e402c19dc399e968e22d98afd63fed5eef5dade6a6c86f79c38a5e658213fb1871e2b34760c65f8",
"requires": ">=23.05.0-edge"
},
{
"version": "1.5.14",
"url": "https://github.com/nextflow-io/nf-tower/releases/download/1.5.14/nf-tower-1.5.14.zip",
"date": "2023-06-14T22:46:14.266143+02:00",
"sha512sum": "f694ba78a59d964cff844c6a194eebf1a4ba88cb1cad72313c9b625666799b450e57078ca76b1d1eb6d81afb5843f9843fbb9bcb42fde411343f0e8c90c2a9e9",
"requires": ">=23.05.0-edge"
}
]
},
{
"id": "nf-ga4gh",
"releases": [
{
"version": "1.0.0",
"url": "https://github.com/nextflow-io/nf-ga4gh/releases/download/1.0.0/nf-ga4gh-1.0.0.zip",
"date": "2021-01-04T21:00:14.872+01:00",
"sha512sum": "52d27495c2e6e0340e836d3af652a545d5a20946fb6de81ce2a96d16e8017d0f586a89cc695cec14adb443240b7e8034e2b513da933bf311cb3b1ade02fa97ce",
"requires": "21.01.0-edge"
},
{
"version": "1.0.1",
"url": "https://github.com/nextflow-io/nf-ga4gh/releases/download/1.0.1/nf-ga4gh-1.0.1.zip",
"date": "2021-01-15T11:44:57.809+01:00",
"sha512sum": "bed25567bd08dd72e1701b46d311d7678d029bd3a8d8cd55edbea57c6ab7b65a3313dc9391d4597553fe35a1e27ca594b3ae1970dc5cf17a82b246bd2c488474",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.2",
"url": "https://github.com/nextflow-io/nf-ga4gh/releases/download/1.0.2/nf-ga4gh-1.0.2.zip",
"date": "2021-03-05T11:52:41.495+01:00",
"sha512sum": "3a70128194a52afb789ea461309affe15c0419beb865b7f7c6b03ee57b8f5a73a85a14b6f3da8db1bd178cbb3c424cb25a4bcc515980bfcd1869effd2a0c740e",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.3",
"url": "https://github.com/nextflow-io/nf-ga4gh/releases/download/1.0.3/nf-ga4gh-1.0.3.zip",
"date": "2021-05-28T16:24:11.094+02:00",
"sha512sum": "7d936f2759e6e0d4aece738d6d60d3220aec83aff418108b848733129e91f0d5c62ad6c8f5772b9e309080065927521e01a1e3d122244357d4a3cc1eb2f6260c",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.4",
"url": "https://github.com/nextflow-io/nf-ga4gh/releases/download/1.0.4/nf-ga4gh-1.0.4.zip",
"date": "2022-09-19T23:15:27.234615+02:00",
"sha512sum": "b95a29e1da4ea5af8af4fedbb353e1fcff12c67cdd677ac5fb939c973b278539078bb274301686900f30970c07718a9065ac64421bedd5dda21084efc9a58bea",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.5",
"url": "https://github.com/nextflow-io/nf-ga4gh/releases/download/1.0.5/nf-ga4gh-1.0.5.zip",
"date": "2023-04-13T16:32:43.583715+02:00",
"sha512sum": "595043954b4e951af73ab4afb16126eab9c18b49000f6cb0a1c26e222a04df41d4c9ddba582fad3823bf098401ff7abd7ffafbd516296b0aadfb93b240c03671",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.6",
"url": "https://github.com/nextflow-io/nf-ga4gh/releases/download/1.0.6/nf-ga4gh-1.0.6.zip",
"date": "2023-05-15T05:57:19.466794+02:00",
"sha512sum": "ee72d756b79a03a4b04ff662f803786fbe3374a751023669ff9cda6e2de9d1006e16cb50762c70dcfcc3ed1e7588a9ed1b7e7fe75ce5e085dcde88dd517983d6",
"requires": ">=23.05.0-edge"
}
]
},
{
"id": "xpack-amzn",
"releases": [
{
"version": "1.0.0-rc0",
"url": "https://github.com/seqeralabs/xpack-amzn/releases/download/1.0.0-rc0/xpack-amzn-1.0.0-rc0.zip",
"date": "2021-01-04T23:21:38.553+01:00",
"sha512sum": "3f0b6a283799eda6c99c4da737eeb7dbf39ff1e905b438a5116f8e23e4ff0dfc02c05a76b0ed690cf3a6bc0371dadf561b69426c493577af3842942789e843fa",
"requires": "21.01.0-edge"
},
{
"version": "1.0.0",
"url": "https://github.com/seqeralabs/xpack-amzn/releases/download/1.0.0/xpack-amzn-1.0.0.zip",
"date": "2021-01-15T19:04:20.117+01:00",
"sha512sum": "e6532821ee6941aa7c5d3ba90771459928e1b9ad48246e6459f6507e27c382b275e597c192100404a4ea5aaadf050bf98683a9cbef81ca81c7808c3606341e60",
"requires": ">=21.01.1-edge"
},
{
"version": "1.0.1",
"url": "https://github.com/seqeralabs/xpack-amzn/releases/download/1.0.1/xpack-amzn-1.0.1.zip",
"date": "2021-03-09T15:00:49.378+01:00",
"sha512sum": "db9ae43fac9dcc68d6fd3efc63f55f0283fbb442b627758ab548b6266e5800c9468cd46e51202e192b0cdaf454fea48ced981dee246b175b10a07c3a8bcc43c3",
"requires": ">=21.01.1-edge"
},
{
"version": "1.1.0",
"url": "https://github.com/seqeralabs/xpack-amzn/releases/download/1.1.0/xpack-amzn-1.1.0.zip",
"date": "2021-07-30T17:06:57.821+02:00",
"sha512sum": "621ad00a8d85add706da0de7a44668fb7a70e9c9b2411a99337b94c8b8854466e88423fd8c753b2838b16915b7966f4192ed9e1dc8b94b74072ca01e1a291e35",
"requires": ">=21.06.0-edge"
},
{
"version": "1.2.0-rc.0",
"url": "https://github.com/seqeralabs/xpack-amzn/releases/download/1.2.0-rc.0/xpack-amzn-1.2.0-rc.0.zip",
"date": "2022-01-22T14:00:36.744689+01:00",
"sha512sum": "a4bb38c9fae6e44a90ece8b0aa0fbcb55bed906402693fad50ba7364c0987130d00c831abbd10b2b731877cedd10a6157ccd16395496d3934bc02ada8eeb08b3",
"requires": ">=22.01.0-SNAPSHOT"
},
{
"version": "1.2.0-rc.1",
"url": "https://github.com/seqeralabs/xpack-amzn/releases/download/1.2.0-rc.1/xpack-amzn-1.2.0-rc.1.zip",
"date": "2022-02-12T11:35:13.22453+01:00",
"sha512sum": "5d57086da590e70a04f32d1f0bf8ba8db6285f7a774b613848f016fdd2be46f8f69e52bfde10d55093f6da1e61a753725586dce8cf89c9e2363e9d75691b2833",
"requires": ">=22.01.0-edge"
},
{
"version": "1.2.0-rc.2",
"url": "https://github.com/seqeralabs/xpack-amzn/releases/download/1.2.0-rc.2/xpack-amzn-1.2.0-rc.2.zip",
"date": "2022-03-17T17:11:57.096549+01:00",
"sha512sum": "68858d9d2fa6de981d8b971572622c665a250a2466ea68ff6d290c46a3cdf09422a37a8d2ba1019bdd6443cfd866e3b51b82610f0fa74e35afe59c4eee528cd2",
"requires": ">=22.01.0-edge"
},
{
"version": "1.2.0-rc.3",
"url": "https://github.com/seqeralabs/xpack-amzn/releases/download/1.2.0-rc.3/xpack-amzn-1.2.0-rc.3.zip",
"date": "2022-03-19T23:23:49.46704+01:00",
"sha512sum": "f3336df212d6b61701a93adc5b312209ae738c2d76a0f2c5840577249708fe0383c70c2ff2a7b48ee4a3f6480734d443b35d088576dbb4c5c5a51bb604319e40",
"requires": ">=22.01.0-edge"
},
{
"version": "1.2.0-rc.4",
"url": "https://github.com/seqeralabs/xpack-amzn/releases/download/1.2.0-rc.4/xpack-amzn-1.2.0-rc.4.zip",
"date": "2022-03-26T17:40:14.906036+01:00",
"sha512sum": "eb294da3a41c4a1ddf704ca7a0e1e1f9abae411fb7e42175e345797c14c01e753f7670daca26bd6f9517fa4293af342165399c691a3279c2e2a4cc19e4dc3953",
"requires": ">=22.01.0-edge"
},
{
"version": "1.2.0-rc.5",
"url": "https://github.com/seqeralabs/xpack-amzn/releases/download/1.2.0-rc.5/xpack-amzn-1.2.0-rc.5.zip",
"date": "2022-05-06T16:49:04.307868+02:00",
"sha512sum": "387d1b902bda727add4d4b24f3ea89b967583282fc1e9c6bca504d51859d49789320b56b4d7ed790bd034ce62f35d89a812569c91a813c0f2915f4ddbda5ca3f",
"requires": ">=22.01.0-edge"
},
{
"version": "1.2.0",
"url": "https://github.com/seqeralabs/xpack-amzn/releases/download/1.2.0/xpack-amzn-1.2.0.zip",
"date": "2022-07-25T18:01:04.533868+02:00",
"sha512sum": "11bb2b401dddddf5cd79a61d147538bc2c878faf093ac5926d94c02848f1e7cefa9ae74e854223dd7763cd06d4aef446ee29cb084f278ae0b1c37711f5ca24b9",
"requires": ">=22.01.0-edge"
},
{
"version": "1.2.1",
"url": "https://github.com/seqeralabs/xpack-amzn/releases/download/1.2.1/xpack-amzn-1.2.1.zip",
"date": "2023-01-14T20:03:03.163215+01:00",
"sha512sum": "6b66985a9268fcea1aeed655dd1e6049cd657d7debee5f6769826af9185044ebe92e706ac3f1a01893e20767917e79fb2e24996e10f25db5dbd3e042a8bece4d",
"requires": ">=23.01.0-edge"
},
{
"version": "1.3.0",
"url": "https://github.com/seqeralabs/xpack-amzn/releases/download/1.3.0/xpack-amzn-1.3.0.zip",
"date": "2023-05-19T10:11:18.979158+02:00",
"sha512sum": "e1ed795a7fbc8e8495dad167d3bb4b6bd7e5405eb23d9628d9ca7ada9d31151b5c1a554a15b9fe1b4d3f22cb68bfc851a77d92099641e22e19c19ff8ccb95ffa",
"requires": ">=23.05.0-edge"
}
]
},
{
"id": "nf-azure",
"releases": [
{
"version": "0.9.0",
"url": "https://github.com/nextflow-io/nf-azure/releases/download/0.9.0/nf-azure-0.9.0.zip",
"date": "2021-02-01T16:34:06.173+01:00",
"sha512sum": "3925205256f5ef7f07b1086df89c5475b10eff9e5e408e5eae9e911c74f6f836d2e98cb082793ccd7694fe68b847cbb9c3045b0b758b4f53dfcdbd6b33b10580",
"requires": ">=21.02.0-edge"
},
{
"version": "0.9.1",
"url": "https://github.com/nextflow-io/nf-azure/releases/download/0.9.1/nf-azure-0.9.1.zip",
"date": "2021-02-05T12:45:14.414+01:00",
"sha512sum": "84eb6339b17a0851562174fb2efddba77b5a68178fd7b8731f3315aeddf4550ec60459970ab64389f751092d632ce52b86fdb80ef19d3e3316e1f2142a66d7b4",
"requires": ">=21.02.0-edge"
},
{
"version": "0.9.2",