-
Notifications
You must be signed in to change notification settings - Fork 3
/
feed.xml
1355 lines (1071 loc) · 142 KB
/
feed.xml
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
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.0.0">Jekyll</generator><link href="https://galaxyproject.eu/feed.xml" rel="self" type="application/atom+xml" /><link href="https://galaxyproject.eu/" rel="alternate" type="text/html" /><updated>2024-12-25T02:47:19+01:00</updated><id>https://galaxyproject.eu/feed.xml</id><title type="html">Galaxy Europe</title><subtitle>The European Galaxy Instance</subtitle><entry><title type="html">UseGalaxy.eu Tool Updates for 2024-12-22</title><link href="https://galaxyproject.eu/posts/2024/12/22/tool-update/" rel="alternate" type="text/html" title="UseGalaxy.eu Tool Updates for 2024-12-22" /><published>2024-12-22T00:00:00+01:00</published><updated>2024-12-22T00:00:00+01:00</updated><id>https://galaxyproject.eu/posts/2024/12/22/tool-update</id><content type="html" xml:base="https://galaxyproject.eu/posts/2024/12/22/tool-update/"><p>On 2024-12-22, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in <a href="https://build.galaxyproject.eu/job/usegalaxy-eu/job/install-tools/#492/">Jenkins Build #492</a></p>
<h2 id="annotation">Annotation</h2>
<ul>
<li>augustus was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/augustus/0fc0f9cf035a">0fc0f9cf035a</a></li>
<li>augustus_training was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/augustus_training/aada0deea587">aada0deea587</a></li>
<li>glimmer_build_icm was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/glimmer_build_icm/e903e26c014d">e903e26c014d</a></li>
<li>glimmer_knowledge_based was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/glimmer_knowledge_based/21d0af260f11">21d0af260f11</a></li>
<li>glimmer_not_knowledge_based was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/glimmer_not_knowledge_based/75cedbd8cf1b">75cedbd8cf1b</a></li>
<li>tetyper was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/tetyper/2b21643ce8d7">2b21643ce8d7</a></li>
<li>ectyper was updated to <a href="https://toolshed.g2.bx.psu.edu/view/nml/ectyper/daba54cd25ca">daba54cd25ca</a></li>
<li>sistr_cmd was updated to <a href="https://toolshed.g2.bx.psu.edu/view/nml/sistr_cmd/cf767360ede1">cf767360ede1</a></li>
</ul>
<h2 id="compute-indicators-for-turnover-boulders-fields">Compute indicators for turnover boulders fields</h2>
<ul>
<li>cb_dissim was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ecology/cb_dissim/ffaa9a71b2d2">ffaa9a71b2d2</a></li>
</ul>
<h2 id="metagenomic-analysis">Metagenomic Analysis</h2>
<ul>
<li>phyloseq_plot_bar was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/phyloseq_plot_bar/ad81e112f4d9">ad81e112f4d9</a></li>
<li>staramr was updated to <a href="https://toolshed.g2.bx.psu.edu/view/nml/staramr/3548a93b39c1">3548a93b39c1</a></li>
<li>checkv_build_database was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ufz/checkv_build_database/7e80c69020f7">7e80c69020f7</a></li>
</ul>
<h2 id="data-managers">Data Managers</h2>
<ul>
<li>genomad_build_database was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ufz/genomad_build_database/75abfb03b635">75abfb03b635</a></li>
<li>vibrant_build_database was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ufz/vibrant_build_database/e0faddfd9cf9">e0faddfd9cf9</a></li>
<li>virsorter_build_database was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ufz/virsorter_build_database/c456ae8354f2">c456ae8354f2</a></li>
</ul>
<h2 id="qiime-2">QIIME 2</h2>
<ul>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/2572fc0f88f2">2572fc0f88f2</a></li>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/b883cbea5623">b883cbea5623</a></li>
</ul>
<h2 id="convert-formats">Convert Formats</h2>
<ul>
<li>glimmer_glimmer_to_gff was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/glimmer_glimmer_to_gff/3d71ab1562d7">3d71ab1562d7</a></li>
</ul>
<h2 id="graphdisplay-data">Graph/Display Data</h2>
<ul>
<li>jbrowse2 was updated to <a href="https://toolshed.g2.bx.psu.edu/view/fubar/jbrowse2/21bb464c1d53">21bb464c1d53</a></li>
</ul>
<h2 id="metabolomics">Metabolomics</h2>
<ul>
<li>xcms_xcmsset was updated to <a href="https://toolshed.g2.bx.psu.edu/view/lecorguille/xcms_xcmsset/3bd53dcfa438">3bd53dcfa438</a></li>
</ul>
<h2 id="genome-diversity">Genome Diversity</h2>
<ul>
<li>fasttree was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/fasttree/bc939965ce41">bc939965ce41</a></li>
</ul>
<h2 id="variant-calling">Variant Calling</h2>
<ul>
<li>bcftools_csq was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/bcftools_csq/33df4e68959b">33df4e68959b</a></li>
</ul>
<h2 id="none">None</h2>
<ul>
<li>data_manager_diamond_database_builder was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/data_manager_diamond_database_builder/4a08b7b76b78">4a08b7b76b78</a></li>
</ul></content><author><name></name></author><category term="tools" /><summary type="html">On 2024-12-22, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in Jenkins Build #492</summary></entry><entry><title type="html">UseGalaxy.eu Tool Updates for 2024-12-15</title><link href="https://galaxyproject.eu/posts/2024/12/15/tool-update/" rel="alternate" type="text/html" title="UseGalaxy.eu Tool Updates for 2024-12-15" /><published>2024-12-15T00:00:00+01:00</published><updated>2024-12-15T00:00:00+01:00</updated><id>https://galaxyproject.eu/posts/2024/12/15/tool-update</id><content type="html" xml:base="https://galaxyproject.eu/posts/2024/12/15/tool-update/"><p>On 2024-12-15, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in <a href="https://build.galaxyproject.eu/job/usegalaxy-eu/job/install-tools/#491/">Jenkins Build #491</a></p>
<h2 id="graphdisplay-data">Graph/Display Data</h2>
<ul>
<li>pygenometracks was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/pygenometracks/59fd173ac850">59fd173ac850</a></li>
<li>volcanoplot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/volcanoplot/99ace6c1ff57">99ace6c1ff57</a></li>
</ul>
<h2 id="qiime-2">QIIME 2</h2>
<ul>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/2572fc0f88f2">2572fc0f88f2</a></li>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/b883cbea5623">b883cbea5623</a></li>
</ul>
<h2 id="proteomics">Proteomics</h2>
<ul>
<li>fragpipe was updated to <a href="https://toolshed.g2.bx.psu.edu/view/galaxyp/fragpipe/e969a182e3cb">e969a182e3cb</a></li>
<li>proteinortho was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/proteinortho/6140163233a5">6140163233a5</a></li>
<li>proteinortho_grab_proteins was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/proteinortho_grab_proteins/36dffb2bc194">36dffb2bc194</a></li>
<li>proteinortho_summary was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/proteinortho_summary/387d3633cade">387d3633cade</a></li>
</ul>
<h2 id="get-data">Get Data</h2>
<ul>
<li>uniprotxml_downloader was updated to <a href="https://toolshed.g2.bx.psu.edu/view/galaxyp/uniprotxml_downloader/4ddc8da62671">4ddc8da62671</a></li>
</ul>
<h2 id="fastafastq">FASTA/FASTQ</h2>
<ul>
<li>gfastats was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/gfastats/764f2516d837">764f2516d837</a></li>
</ul>
<h2 id="text-manipulation">Text Manipulation</h2>
<ul>
<li>diff was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/diff/10ef1bf99074">10ef1bf99074</a></li>
</ul>
<h2 id="none">None</h2>
<ul>
<li>data_manager_build_kraken2_database was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/data_manager_build_kraken2_database/8c533e19b697">8c533e19b697</a></li>
<li>data_manager_diamond_database_builder was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/data_manager_diamond_database_builder/4a08b7b76b78">4a08b7b76b78</a></li>
<li>data_manager_ncbi_fcs_gx_database_downloader was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/data_manager_ncbi_fcs_gx_database_downloader/6be6e6198ac3">6be6e6198ac3</a></li>
</ul>
<h2 id="genome-diversity">Genome Diversity</h2>
<ul>
<li>fasttree was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/fasttree/ef46a404db96">ef46a404db96</a></li>
</ul>
<h2 id="metagenomic-analysis">Metagenomic Analysis</h2>
<ul>
<li>decontam was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/decontam/3f238ab9d200">3f238ab9d200</a></li>
</ul>
<h2 id="mothur">Mothur</h2>
<ul>
<li>mothur_get_lineage was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/mothur_get_lineage/d1abc038d4bd">d1abc038d4bd</a></li>
</ul>
<h2 id="variant-calling">Variant Calling</h2>
<ul>
<li>cnvkit_access was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_access/25bba7640b06">25bba7640b06</a></li>
<li>cnvkit_antitarget was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_antitarget/dd54b5c36317">dd54b5c36317</a></li>
<li>cnvkit_autobin was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_autobin/505e6bbaee59">505e6bbaee59</a></li>
<li>cnvkit_batch was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_batch/97d2b6742760">97d2b6742760</a></li>
<li>cnvkit_breaks was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_breaks/384fa596e5d9">384fa596e5d9</a></li>
<li>cnvkit_call was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_call/978ddcbedd60">978ddcbedd60</a></li>
<li>cnvkit_coverage was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_coverage/5699301a3bd1">5699301a3bd1</a></li>
<li>cnvkit_diagram was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_diagram/27ecb3477d34">27ecb3477d34</a></li>
<li>cnvkit_fix was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_fix/49ecf6b6f9f4">49ecf6b6f9f4</a></li>
<li>cnvkit_genemetrics was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_genemetrics/3e1d74c9e715">3e1d74c9e715</a></li>
<li>cnvkit_heatmap was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_heatmap/26554a14f841">26554a14f841</a></li>
<li>cnvkit_reference was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_reference/b45fa373a972">b45fa373a972</a></li>
<li>cnvkit_scatter was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_scatter/02446206f574">02446206f574</a></li>
<li>cnvkit_segment was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_segment/33be231ce128">33be231ce128</a></li>
<li>cnvkit_segmetrics was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_segmetrics/86392285203a">86392285203a</a></li>
<li>cnvkit_sex was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_sex/0b34f56003dc">0b34f56003dc</a></li>
<li>cnvkit_target was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cnvkit_target/428b93a3acb4">428b93a3acb4</a></li>
</ul></content><author><name></name></author><category term="tools" /><summary type="html">On 2024-12-15, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in Jenkins Build #491</summary></entry><entry><title type="html">UseGalaxy.eu Tool Updates for 2024-12-08</title><link href="https://galaxyproject.eu/posts/2024/12/08/tool-update/" rel="alternate" type="text/html" title="UseGalaxy.eu Tool Updates for 2024-12-08" /><published>2024-12-08T00:00:00+01:00</published><updated>2024-12-08T00:00:00+01:00</updated><id>https://galaxyproject.eu/posts/2024/12/08/tool-update</id><content type="html" xml:base="https://galaxyproject.eu/posts/2024/12/08/tool-update/"><p>On 2024-12-08, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in <a href="https://build.galaxyproject.eu/job/usegalaxy-eu/job/install-tools/#490/">Jenkins Build #490</a></p>
<h2 id="climate-analysis">Climate Analysis</h2>
<ul>
<li>harmonize_insitu_to_netcdf was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ecology/harmonize_insitu_to_netcdf/15260949227d">15260949227d</a></li>
</ul>
<h2 id="qiime-2">QIIME 2</h2>
<ul>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/2572fc0f88f2">2572fc0f88f2</a></li>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/b883cbea5623">b883cbea5623</a></li>
</ul>
<h2 id="mapping">Mapping</h2>
<ul>
<li>rgrnastar was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/rgrnastar/53255f6eecfc">53255f6eecfc</a></li>
<li>rna_starsolo was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/rna_starsolo/381a32c51141">381a32c51141</a></li>
</ul>
<h2 id="convert-formats">Convert Formats</h2>
<ul>
<li>msconvert was updated to <a href="https://toolshed.g2.bx.psu.edu/view/galaxyp/msconvert/ab6c14374bc0">ab6c14374bc0</a></li>
</ul>
<h2 id="assembly">Assembly</h2>
<ul>
<li>flye was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/flye/cd11366d92cf">cd11366d92cf</a></li>
<li>fastk_fastk was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/fastk_fastk/8049cb5537b7">8049cb5537b7</a></li>
</ul>
<h2 id="machine-learning">Machine Learning</h2>
<ul>
<li>black_forest_labs_flux was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/black_forest_labs_flux/7939ae8c5fd5">7939ae8c5fd5</a></li>
</ul>
<h2 id="evolution">Evolution</h2>
<ul>
<li>quicktree was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/quicktree/1e89a460d1bd">1e89a460d1bd</a></li>
</ul>
<h2 id="genome-diversity">Genome Diversity</h2>
<ul>
<li>fasttree was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/fasttree/ef46a404db96">ef46a404db96</a></li>
</ul>
<h2 id="hicexplorer">HiCExplorer</h2>
<ul>
<li>hicexplorer_chicaggregatestatistic was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicaggregatestatistic/c3ffb2c1e314">c3ffb2c1e314</a></li>
<li>hicexplorer_chicdifferentialtest was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicdifferentialtest/45828071edc3">45828071edc3</a></li>
<li>hicexplorer_chicexportdata was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicexportdata/1a31e75e979e">1a31e75e979e</a></li>
<li>hicexplorer_chicplotviewpoint was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicplotviewpoint/920526260066">920526260066</a></li>
<li>hicexplorer_chicqualitycontrol was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicqualitycontrol/f6a169b5e43b">f6a169b5e43b</a></li>
<li>hicexplorer_chicsignificantinteractions was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicsignificantinteractions/ff1af7bac1cb">ff1af7bac1cb</a></li>
<li>hicexplorer_chicviewpoint was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicviewpoint/37125838e360">37125838e360</a></li>
<li>hicexplorer_chicviewpointbackgroundmodel was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicviewpointbackgroundmodel/6f8debcf2ac9">6f8debcf2ac9</a></li>
<li>hicexplorer_hicadjustmatrix was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicadjustmatrix/e8760fc0e29b">e8760fc0e29b</a></li>
<li>hicexplorer_hicaggregatecontacts was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicaggregatecontacts/30677e95bc89">30677e95bc89</a></li>
<li>hicexplorer_hicaverageregions was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicaverageregions/3240e8a7c54f">3240e8a7c54f</a></li>
<li>hicexplorer_hicbuildmatrix was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicbuildmatrix/d9967770de96">d9967770de96</a></li>
<li>hicexplorer_hiccomparematrices was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hiccomparematrices/5dd1aae12f03">5dd1aae12f03</a></li>
<li>hicexplorer_hiccompartmentspolarization was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hiccompartmentspolarization/87eb9c58cd19">87eb9c58cd19</a></li>
<li>hicexplorer_hicconvertformat was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicconvertformat/574f295b5ba4">574f295b5ba4</a></li>
<li>hicexplorer_hiccorrectmatrix was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hiccorrectmatrix/937b7b9832d0">937b7b9832d0</a></li>
<li>hicexplorer_hiccorrelate was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hiccorrelate/0f5786ffa10d">0f5786ffa10d</a></li>
<li>hicexplorer_hicdetectloops was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicdetectloops/4375e25de06a">4375e25de06a</a></li>
<li>hicexplorer_hicdifferentialtad was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicdifferentialtad/4977f65da0ff">4977f65da0ff</a></li>
<li>hicexplorer_hicfindrestrictionsites was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicfindrestrictionsites/f0b1bd38745a">f0b1bd38745a</a></li>
<li>hicexplorer_hicfindtads was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicfindtads/478aacfbaa37">478aacfbaa37</a></li>
<li>hicexplorer_hichyperoptdetectloops was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hichyperoptdetectloops/3e5c86c2f80d">3e5c86c2f80d</a></li>
<li>hicexplorer_hicinfo was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicinfo/7fbd6feba1ca">7fbd6feba1ca</a></li>
<li>hicexplorer_hicinterintratad was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicinterintratad/908fa330b93b">908fa330b93b</a></li>
<li>hicexplorer_hicmergedomains was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicmergedomains/febfddb0b3e8">febfddb0b3e8</a></li>
<li>hicexplorer_hicmergeloops was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicmergeloops/1d9799f4b854">1d9799f4b854</a></li>
<li>hicexplorer_hicmergematrixbins was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicmergematrixbins/9d93c8fbe0a6">9d93c8fbe0a6</a></li>
<li>hicexplorer_hicnormalize was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicnormalize/5e83c077e31d">5e83c077e31d</a></li>
<li>hicexplorer_hicpca was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicpca/f86ca478c6af">f86ca478c6af</a></li>
<li>hicexplorer_hicplotaverageregions was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicplotaverageregions/3f1b286a5c34">3f1b286a5c34</a></li>
<li>hicexplorer_hicplotdistvscounts was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicplotdistvscounts/89cfe7de541b">89cfe7de541b</a></li>
<li>hicexplorer_hicplotmatrix was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicplotmatrix/025a128652dc">025a128652dc</a></li>
<li>hicexplorer_hicplotsvl was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicplotsvl/1602cc5b673c">1602cc5b673c</a></li>
<li>hicexplorer_hicplotviewpoint was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicplotviewpoint/a10fce08c2dc">a10fce08c2dc</a></li>
<li>hicexplorer_hicquickqc was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicquickqc/b13e7a200525">b13e7a200525</a></li>
<li>hicexplorer_hicsummatrices was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicsummatrices/d74cf4a61d65">d74cf4a61d65</a></li>
<li>hicexplorer_hictransform was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hictransform/df64cc4dfb4d">df64cc4dfb4d</a></li>
<li>hicexplorer_hicvalidatelocations was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicvalidatelocations/d890828ab02a">d890828ab02a</a></li>
</ul>
<h2 id="metagenomic-analysis">Metagenomic Analysis</h2>
<ul>
<li>concoct_merge_cut_up_clustering was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/concoct_merge_cut_up_clustering/713189575b8b">713189575b8b</a></li>
<li>dada2_assigntaxonomyaddspecies was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/dada2_assigntaxonomyaddspecies/3a89c3f99f3d">3a89c3f99f3d</a></li>
<li>dada2_primercheck was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/dada2_primercheck/74ec28dbdf17">74ec28dbdf17</a></li>
<li>dada2_removebimeradenovo was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/dada2_removebimeradenovo/1770d188f72d">1770d188f72d</a></li>
<li>phyloseq_from_biom was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/phyloseq_from_biom/1feea247d08a">1feea247d08a</a></li>
<li>phyloseq_from_dada2 was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/phyloseq_from_dada2/40ebae5bbe51">40ebae5bbe51</a></li>
<li>phyloseq_plot_ordination was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/phyloseq_plot_ordination/c35e0075c7a2">c35e0075c7a2</a></li>
<li>phyloseq_plot_richness was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/phyloseq_plot_richness/1a6c2cc92c6e">1a6c2cc92c6e</a></li>
</ul>
<h2 id="variant-calling">Variant Calling</h2>
<ul>
<li>ucsc_fatovcf was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ucsc_fatovcf/a40dd4fd3096">a40dd4fd3096</a></li>
</ul>
<h2 id="none">None</h2>
<ul>
<li>data_manager_diamond_database_builder was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/data_manager_diamond_database_builder/4a08b7b76b78">4a08b7b76b78</a></li>
<li>data_manager_mapseq was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/data_manager_mapseq/19ef193d1316">19ef193d1316</a></li>
</ul>
<h2 id="hca_sc_scanpy_tools">hca_sc_scanpy_tools</h2>
<ul>
<li>scanpy_find_variable_genes was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ebi-gxa/scanpy_find_variable_genes/d88a29e2eba6">d88a29e2eba6</a></li>
</ul></content><author><name></name></author><category term="tools" /><summary type="html">On 2024-12-08, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in Jenkins Build #490</summary></entry><entry><title type="html">UseGalaxy.eu Tool Updates for 2024-12-01</title><link href="https://galaxyproject.eu/posts/2024/12/01/tool-update/" rel="alternate" type="text/html" title="UseGalaxy.eu Tool Updates for 2024-12-01" /><published>2024-12-01T00:00:00+01:00</published><updated>2024-12-01T00:00:00+01:00</updated><id>https://galaxyproject.eu/posts/2024/12/01/tool-update</id><content type="html" xml:base="https://galaxyproject.eu/posts/2024/12/01/tool-update/"><p>On 2024-12-01, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in <a href="https://build.galaxyproject.eu/job/usegalaxy-eu/job/install-tools/#489/">Jenkins Build #489</a></p>
<h2 id="qiime-2">QIIME 2</h2>
<ul>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/2572fc0f88f2">2572fc0f88f2</a></li>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/b883cbea5623">b883cbea5623</a></li>
</ul>
<h2 id="gemini">Gemini</h2>
<ul>
<li>gemini_fusions was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/gemini_fusions/8a68d9a33023">8a68d9a33023</a></li>
</ul>
<h2 id="annotation">Annotation</h2>
<ul>
<li>groot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/groot/c15e34e39e09">c15e34e39e09</a></li>
</ul>
<h2 id="genome-diversity">Genome Diversity</h2>
<ul>
<li>fasttree was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/fasttree/ef46a404db96">ef46a404db96</a></li>
</ul>
<h2 id="rna-analysis">RNA Analysis</h2>
<ul>
<li>sfold was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/sfold/6cce721f568c">6cce721f568c</a></li>
</ul>
<h2 id="variant-calling">Variant Calling</h2>
<ul>
<li>bcftools_consensus was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/bcftools_consensus/147de996e34f">147de996e34f</a></li>
</ul>
<h2 id="none">None</h2>
<ul>
<li>data_manager_diamond_database_builder was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/data_manager_diamond_database_builder/4a08b7b76b78">4a08b7b76b78</a></li>
</ul>
<h2 id="hca_sc_label_analysis_tools">hca_sc_label_analysis_tools</h2>
<ul>
<li>decoupler_pseudobulk was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ebi-gxa/decoupler_pseudobulk/09c833d9b03b">09c833d9b03b</a></li>
</ul></content><author><name></name></author><category term="tools" /><summary type="html">On 2024-12-01, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in Jenkins Build #489</summary></entry><entry><title type="html">UseGalaxy.eu Tool Updates for 2024-11-24</title><link href="https://galaxyproject.eu/posts/2024/11/24/tool-update/" rel="alternate" type="text/html" title="UseGalaxy.eu Tool Updates for 2024-11-24" /><published>2024-11-24T00:00:00+01:00</published><updated>2024-11-24T00:00:00+01:00</updated><id>https://galaxyproject.eu/posts/2024/11/24/tool-update</id><content type="html" xml:base="https://galaxyproject.eu/posts/2024/11/24/tool-update/"><p>On 2024-11-24, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in <a href="https://build.galaxyproject.eu/job/usegalaxy-eu/job/install-tools/#488/">Jenkins Build #488</a></p>
<h2 id="get-data">Get Data</h2>
<ul>
<li>copernicusmarine was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ecology/copernicusmarine/c07f11d8e49a">c07f11d8e49a</a></li>
</ul>
<h2 id="metagenomic-analysis">Metagenomic Analysis</h2>
<ul>
<li>krakentools_alpha_diversity was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/krakentools_alpha_diversity/78b69342c280">78b69342c280</a></li>
<li>krakentools_beta_diversity was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/krakentools_beta_diversity/4505d7643673">4505d7643673</a></li>
<li>krakentools_combine_kreports was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/krakentools_combine_kreports/3d2cffa2c4ab">3d2cffa2c4ab</a></li>
<li>krakentools_extract_kraken_reads was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/krakentools_extract_kraken_reads/4bf1e2701504">4bf1e2701504</a></li>
<li>krakentools_kreport2krona was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/krakentools_kreport2krona/02bbace216f2">02bbace216f2</a></li>
<li>krakentools_kreport2mpa was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/krakentools_kreport2mpa/d33cf727ed94">d33cf727ed94</a></li>
<li>checkv_build_database was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ufz/checkv_build_database/88042a5ead89">88042a5ead89</a></li>
</ul>
<h2 id="data-managers">Data Managers</h2>
<ul>
<li>genomad_build_database was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ufz/genomad_build_database/c4ec3d81eeee">c4ec3d81eeee</a></li>
<li>vibrant_build_database was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ufz/vibrant_build_database/3f68072f2da6">3f68072f2da6</a></li>
<li>virsorter_build_database was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ufz/virsorter_build_database/863ba94fb6e4">863ba94fb6e4</a></li>
</ul>
<h2 id="qiime-2">QIIME 2</h2>
<ul>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/2572fc0f88f2">2572fc0f88f2</a></li>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/b883cbea5623">b883cbea5623</a></li>
</ul>
<h2 id="fetch_sequences___alignments">fetch_sequences___alignments</h2>
<ul>
<li>extract_genomic_dna was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/extract_genomic_dna/80414c33a59a">80414c33a59a</a></li>
</ul>
<h2 id="assembly">Assembly</h2>
<ul>
<li>blobtoolkit was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/blobtoolkit/392811378515">392811378515</a></li>
<li>abyss was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/abyss/db9b10824c61">db9b10824c61</a></li>
</ul>
<h2 id="machine-learning">Machine Learning</h2>
<ul>
<li>black_forest_labs_flux was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/black_forest_labs_flux/21ee409e6cde">21ee409e6cde</a></li>
</ul>
<h2 id="imaging">Imaging</h2>
<ul>
<li>cp_cellprofiler4 was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/cp_cellprofiler4/9799fc53433e">9799fc53433e</a></li>
</ul>
<h2 id="fastafastq">FASTA/FASTQ</h2>
<ul>
<li>bbtools_bbduk was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/bbtools_bbduk/d58c27d2c5a7">d58c27d2c5a7</a></li>
<li>bbtools_bbmerge was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/bbtools_bbmerge/1bb2b5b52030">1bb2b5b52030</a></li>
<li>bbtools_tadpole was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/bbtools_tadpole/ce13b4678f18">ce13b4678f18</a></li>
<li>ncbi_fcs_gx was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ncbi_fcs_gx/32d058f3462a">32d058f3462a</a></li>
</ul>
<h2 id="gemini">Gemini</h2>
<ul>
<li>gemini_annotate was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/gemini_annotate/8da05bf2b1d1">8da05bf2b1d1</a></li>
</ul>
<h2 id="genome-diversity">Genome Diversity</h2>
<ul>
<li>fasttree was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/fasttree/ef46a404db96">ef46a404db96</a></li>
</ul>
<h2 id="mapping">Mapping</h2>
<ul>
<li>bbtools_bbmap was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/bbtools_bbmap/8015d7ab8357">8015d7ab8357</a></li>
</ul>
<h2 id="multiple-alignments">Multiple Alignments</h2>
<ul>
<li>trimal was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/trimal/e379c0202766">e379c0202766</a></li>
</ul>
<h2 id="variant-calling">Variant Calling</h2>
<ul>
<li>bbtools_callvariants was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/bbtools_callvariants/3854db061e6e">3854db061e6e</a></li>
<li>ensembl_vep was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ensembl_vep/c91e09b60325">c91e09b60325</a></li>
</ul>
<h2 id="none">None</h2>
<ul>
<li>data_manager_diamond_database_builder was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/data_manager_diamond_database_builder/4a08b7b76b78">4a08b7b76b78</a></li>
</ul>
<h2 id="rna-analysis">RNA Analysis</h2>
<ul>
<li>infernal was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/infernal/3711f654044e">3711f654044e</a></li>
</ul></content><author><name></name></author><category term="tools" /><summary type="html">On 2024-11-24, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in Jenkins Build #488</summary></entry><entry><title type="html">UseGalaxy.eu Tool Updates for 2024-11-17</title><link href="https://galaxyproject.eu/posts/2024/11/17/tool-update/" rel="alternate" type="text/html" title="UseGalaxy.eu Tool Updates for 2024-11-17" /><published>2024-11-17T00:00:00+01:00</published><updated>2024-11-17T00:00:00+01:00</updated><id>https://galaxyproject.eu/posts/2024/11/17/tool-update</id><content type="html" xml:base="https://galaxyproject.eu/posts/2024/11/17/tool-update/"><p>On 2024-11-17, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in <a href="https://build.galaxyproject.eu/job/usegalaxy-eu/job/install-tools/#487/">Jenkins Build #487</a></p>
<h2 id="metabolomics">Metabolomics</h2>
<ul>
<li>matchms_add_key was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_add_key/a5d41764722d">a5d41764722d</a></li>
<li>matchms_convert was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_convert/9e83636da9d3">9e83636da9d3</a></li>
<li>matchms_filtering was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_filtering/83c4b4359ac4">83c4b4359ac4</a></li>
<li>matchms_fingerprint_similarity was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_fingerprint_similarity/fd890f162ce6">fd890f162ce6</a></li>
<li>matchms_formatter was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_formatter/a5a5b147da70">a5a5b147da70</a></li>
<li>matchms_metadata_export was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_metadata_export/8832425b1ff6">8832425b1ff6</a></li>
<li>matchms_metadata_match was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_metadata_match/330b0dfae8da">330b0dfae8da</a></li>
<li>matchms_metadata_merge was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_metadata_merge/1fd950c5586a">1fd950c5586a</a></li>
<li>matchms_networking was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_networking/f04b378325e5">f04b378325e5</a></li>
<li>matchms_remove_key was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_remove_key/fbdb2ae524df">fbdb2ae524df</a></li>
<li>matchms_remove_spectra was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_remove_spectra/d50ce2f51fc0">d50ce2f51fc0</a></li>
<li>matchms_spectral_similarity was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_spectral_similarity/7ba589b01dbc">7ba589b01dbc</a></li>
<li>matchms_split was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_split/ea6c5636c0cf">ea6c5636c0cf</a></li>
<li>matchms_subsetting was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/matchms_subsetting/5bbd1a8404f5">5bbd1a8404f5</a></li>
</ul>
<h2 id="qiime-2">QIIME 2</h2>
<ul>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/2572fc0f88f2">2572fc0f88f2</a></li>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/b883cbea5623">b883cbea5623</a></li>
</ul>
<h2 id="machine-learning">Machine Learning</h2>
<ul>
<li>sklearn_clf_metrics was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/sklearn_clf_metrics/15bcf1a7543b">15bcf1a7543b</a></li>
</ul>
<h2 id="assembly">Assembly</h2>
<ul>
<li>pretext_graph was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/pretext_graph/408ece2e4647">408ece2e4647</a></li>
<li>pretext_map was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/pretext_map/511e5e3cd55e">511e5e3cd55e</a></li>
<li>pretext_map was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/pretext_map/c6cec5ab35c1">c6cec5ab35c1</a></li>
<li>quast was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/quast/a3b35edea53a">a3b35edea53a</a></li>
</ul>
<h2 id="annotation">Annotation</h2>
<ul>
<li>tbprofiler was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/tbprofiler/8cb134b8c1a5">8cb134b8c1a5</a></li>
</ul>
<h2 id="fastafastq">FASTA/FASTQ</h2>
<ul>
<li>fastp was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/fastp/a626e8c0e1ba">a626e8c0e1ba</a></li>
</ul>
<h2 id="filter-and-sort">Filter and Sort</h2>
<ul>
<li>bigwig_outlier_bed was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/bigwig_outlier_bed/bae6cba73e32">bae6cba73e32</a></li>
</ul>
<h2 id="genome-diversity">Genome Diversity</h2>
<ul>
<li>fasttree was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/fasttree/ef46a404db96">ef46a404db96</a></li>
</ul>
<h2 id="get-data">Get Data</h2>
<ul>
<li>fastq_dl was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/fastq_dl/5e7401777990">5e7401777990</a></li>
</ul>
<h2 id="graphdisplay-data">Graph/Display Data</h2>
<ul>
<li>pretext_snapshot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/pretext_snapshot/26f2fe7e53a1">26f2fe7e53a1</a></li>
</ul>
<h2 id="metagenomic-analysis">Metagenomic Analysis</h2>
<ul>
<li>ampvis2_alpha_diversity was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_alpha_diversity/bd518ee51da5">bd518ee51da5</a></li>
<li>ampvis2_boxplot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_boxplot/5e4e2b612a4f">5e4e2b612a4f</a></li>
<li>ampvis2_core was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_core/2bbf288d6334">2bbf288d6334</a></li>
<li>ampvis2_core was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_core/e595eafb5ecf">e595eafb5ecf</a></li>
<li>ampvis2_export_fasta was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_export_fasta/0cce683798d3">0cce683798d3</a></li>
<li>ampvis2_export_fasta was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_export_fasta/3fd332f614f3">3fd332f614f3</a></li>
<li>ampvis2_frequency was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_frequency/ac3774320d28">ac3774320d28</a></li>
<li>ampvis2_heatmap was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_heatmap/c980e4bd48f2">c980e4bd48f2</a></li>
<li>ampvis2_load was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_load/576dd33588bf">576dd33588bf</a></li>
<li>ampvis2_load was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_load/738474880da8">738474880da8</a></li>
<li>ampvis2_merge_ampvis2 was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_merge_ampvis2/2f9731cc4c87">2f9731cc4c87</a></li>
<li>ampvis2_merge_ampvis2 was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_merge_ampvis2/378ce300fb3d">378ce300fb3d</a></li>
<li>ampvis2_mergereplicates was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_mergereplicates/1f6f3bc6edd1">1f6f3bc6edd1</a></li>
<li>ampvis2_mergereplicates was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_mergereplicates/f34ea612eecf">f34ea612eecf</a></li>
<li>ampvis2_octave was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_octave/33087ecbd8f4">33087ecbd8f4</a></li>
<li>ampvis2_ordinate was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_ordinate/7825694588d6">7825694588d6</a></li>
<li>ampvis2_otu_network was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_otu_network/454bfdfa6de5">454bfdfa6de5</a></li>
<li>ampvis2_otu_network was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_otu_network/bb054c50a96c">bb054c50a96c</a></li>
<li>ampvis2_rankabundance was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_rankabundance/18de61c5527c">18de61c5527c</a></li>
<li>ampvis2_rankabundance was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_rankabundance/cf0944377d87">cf0944377d87</a></li>
<li>ampvis2_rarecurve was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_rarecurve/094d0b97f92c">094d0b97f92c</a></li>
<li>ampvis2_setmetadata was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_setmetadata/a9dacd650ad5">a9dacd650ad5</a></li>
<li>ampvis2_subset_samples was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_subset_samples/f9fa155c191f">f9fa155c191f</a></li>
<li>ampvis2_subset_samples was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_subset_samples/ff07f41b8e54">ff07f41b8e54</a></li>
<li>ampvis2_subset_taxa was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_subset_taxa/76cb398e9110">76cb398e9110</a></li>
<li>ampvis2_timeseries was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_timeseries/bd41251e42ec">bd41251e42ec</a></li>
<li>ampvis2_venn was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_venn/bbb4a531d80b">bbb4a531d80b</a></li>
<li>ampvis2_venn was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ampvis2_venn/f28f2faad83b">f28f2faad83b</a></li>
<li>polypolish was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/polypolish/915637bd1d1a">915637bd1d1a</a></li>
</ul>
<h2 id="multiple-alignments">Multiple Alignments</h2>
<ul>
<li>trimal was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/trimal/ebe28cac8d8b">ebe28cac8d8b</a></li>
</ul>
<h2 id="phylogenetics">Phylogenetics</h2>
<ul>
<li>hyphy_bgm was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/hyphy_bgm/a54340ea0866">a54340ea0866</a></li>
</ul>
<h2 id="variant-calling">Variant Calling</h2>
<ul>
<li>sniffles was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/sniffles/ceff2f6a5368">ceff2f6a5368</a></li>
</ul>
<h2 id="virology">Virology</h2>
<ul>
<li>freyja_aggregate_plot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/freyja_aggregate_plot/54acd5139cab">54acd5139cab</a></li>
<li>freyja_boot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/freyja_boot/16331f8cff98">16331f8cff98</a></li>
<li>freyja_demix was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/freyja_demix/c5f2ce99da69">c5f2ce99da69</a></li>
<li>freyja_variants was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/freyja_variants/d17f930148a5">d17f930148a5</a></li>
<li>snipit was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/snipit/877e80114d25">877e80114d25</a></li>
</ul>
<h2 id="none">None</h2>
<ul>
<li>data_manager_build_kraken2_database was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/data_manager_build_kraken2_database/e9ee4d074d5d">e9ee4d074d5d</a></li>
<li>data_manager_diamond_database_builder was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/data_manager_diamond_database_builder/4a08b7b76b78">4a08b7b76b78</a></li>
</ul>
<h2 id="rna-analysis">RNA Analysis</h2>
<ul>
<li>infernal was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/infernal/1d74ed49cf41">1d74ed49cf41</a></li>
</ul>
<h2 id="xas-x-ray-absorption-spectroscopy">XAS (X-ray Absorption Spectroscopy)</h2>
<ul>
<li>larch_artemis was updated to <a href="https://toolshed.g2.bx.psu.edu/view/muon-spectroscopy-computational-project/larch_artemis/e0407f36fcea">e0407f36fcea</a></li>
<li>larch_athena was updated to <a href="https://toolshed.g2.bx.psu.edu/view/muon-spectroscopy-computational-project/larch_athena/6e94ae7d1ca1">6e94ae7d1ca1</a></li>
<li>larch_criteria_report was updated to <a href="https://toolshed.g2.bx.psu.edu/view/muon-spectroscopy-computational-project/larch_criteria_report/aa9cb2b42741">aa9cb2b42741</a></li>
<li>larch_feff was updated to <a href="https://toolshed.g2.bx.psu.edu/view/muon-spectroscopy-computational-project/larch_feff/8ee492af5586">8ee492af5586</a></li>
<li>larch_lcf was updated to <a href="https://toolshed.g2.bx.psu.edu/view/muon-spectroscopy-computational-project/larch_lcf/90a69f15ab92">90a69f15ab92</a></li>
<li>larch_plot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/muon-spectroscopy-computational-project/larch_plot/0339eb694129">0339eb694129</a></li>
<li>larch_select_paths was updated to <a href="https://toolshed.g2.bx.psu.edu/view/muon-spectroscopy-computational-project/larch_select_paths/204c4afe2f1e">204c4afe2f1e</a></li>
</ul></content><author><name></name></author><category term="tools" /><summary type="html">On 2024-11-17, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in Jenkins Build #487</summary></entry><entry><title type="html">UseGalaxy.eu Tool Updates for 2024-11-10</title><link href="https://galaxyproject.eu/posts/2024/11/10/tool-update/" rel="alternate" type="text/html" title="UseGalaxy.eu Tool Updates for 2024-11-10" /><published>2024-11-10T00:00:00+01:00</published><updated>2024-11-10T00:00:00+01:00</updated><id>https://galaxyproject.eu/posts/2024/11/10/tool-update</id><content type="html" xml:base="https://galaxyproject.eu/posts/2024/11/10/tool-update/"><p>On 2024-11-10, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in <a href="https://build.galaxyproject.eu/job/usegalaxy-eu/job/install-tools/#486/">Jenkins Build #486</a></p>
<h2 id="get-data">Get Data</h2>
<ul>
<li>obis_data was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ecology/obis_data/5bae75c49f2e">5bae75c49f2e</a></li>
</ul>
<h2 id="biodiversity-data-exploration">Biodiversity data exploration</h2>
<ul>
<li>obisindicators was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ecology/obisindicators/4e7c1fb5e894">4e7c1fb5e894</a></li>
<li>obisindicators was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ecology/obisindicators/dc187fe78055">dc187fe78055</a></li>
</ul>
<h2 id="qiime-2">QIIME 2</h2>
<ul>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/2572fc0f88f2">2572fc0f88f2</a></li>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/b883cbea5623">b883cbea5623</a></li>
<li>qiime2_core__tools__import_fastq was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2_core__tools__import_fastq/1c3937219d27">1c3937219d27</a></li>
</ul>
<h2 id="fastafastq">FASTA/FASTQ</h2>
<ul>
<li>gfastats was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/gfastats/f4a3eff8ab85">f4a3eff8ab85</a></li>
<li>seqkit_fx2tab was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/seqkit_fx2tab/2e60cd811bd2">2e60cd811bd2</a></li>
<li>seqkit_locate was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/seqkit_locate/95ef41cc06f7">95ef41cc06f7</a></li>
<li>seqkit_sort was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/seqkit_sort/29ef2c5ec205">29ef2c5ec205</a></li>
<li>seqkit_stats was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/seqkit_stats/795cd16de38f">795cd16de38f</a></li>
<li>seqkit_translate was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/seqkit_translate/1936d097808a">1936d097808a</a></li>
</ul>
<h2 id="single-cell">Single-cell</h2>
<ul>
<li>music_compare was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/music_compare/4447ed460308">4447ed460308</a></li>
<li>music_compare was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/music_compare/d817b3807562">d817b3807562</a></li>
<li>music_construct_eset was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/music_construct_eset/282819d09a4f">282819d09a4f</a></li>
<li>music_construct_eset was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/music_construct_eset/48f0fb3061b1">48f0fb3061b1</a></li>
<li>music_deconvolution was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/music_deconvolution/2ba99a52bd44">2ba99a52bd44</a></li>
<li>music_deconvolution was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/music_deconvolution/8cd2ecfa2e61">8cd2ecfa2e61</a></li>
<li>music_inspect_eset was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/music_inspect_eset/7705cc75ac18">7705cc75ac18</a></li>
<li>music_inspect_eset was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/music_inspect_eset/fde4c972e7c5">fde4c972e7c5</a></li>
<li>music_manipulate_eset was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/music_manipulate_eset/22232092be53">22232092be53</a></li>
<li>music_manipulate_eset was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/music_manipulate_eset/b5185a4f5209">b5185a4f5209</a></li>
<li>anndata_export was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/anndata_export/7a6655aa6eb2">7a6655aa6eb2</a></li>
<li>anndata_import was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/anndata_import/6f143dfe902a">6f143dfe902a</a></li>
<li>anndata_inspect was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/anndata_inspect/14c576ea6148">14c576ea6148</a></li>
<li>anndata_manipulate was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/anndata_manipulate/c4209ea387d4">c4209ea387d4</a></li>
<li>cosg was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/cosg/fe5996e87b41">fe5996e87b41</a></li>
<li>modify_loom was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/modify_loom/db575b4c8b22">db575b4c8b22</a></li>
<li>raceid_clustering was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/raceid_clustering/49776718ae90">49776718ae90</a></li>
<li>raceid_filtnormconf was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/raceid_filtnormconf/8b917923f7d4">8b917923f7d4</a></li>
<li>raceid_inspectclusters was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/raceid_inspectclusters/c7ddb719554d">c7ddb719554d</a></li>
<li>raceid_inspecttrajectory was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/raceid_inspecttrajectory/6e90c8adf84f">6e90c8adf84f</a></li>
<li>raceid_trajectory was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/raceid_trajectory/2bfd55b87af3">2bfd55b87af3</a></li>
<li>sceasy_convert was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/sceasy_convert/5c9b16bdbd5e">5c9b16bdbd5e</a></li>
<li>sinto_barcode was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/sinto_barcode/fb61eb03e313">fb61eb03e313</a></li>
<li>sinto_fragments was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/sinto_fragments/6f66f523a9b7">6f66f523a9b7</a></li>
<li>snapatac2_clustering was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/snapatac2_clustering/d3ea0ba3d066">d3ea0ba3d066</a></li>
<li>snapatac2_peaks_and_motif was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/snapatac2_peaks_and_motif/64fa083411f1">64fa083411f1</a></li>
<li>snapatac2_plotting was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/snapatac2_plotting/05bd4db20227">05bd4db20227</a></li>
<li>snapatac2_preprocessing was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/snapatac2_preprocessing/c5c94e01a1b5">c5c94e01a1b5</a></li>
</ul>
<h2 id="metabolomics">Metabolomics</h2>
<ul>
<li>dimspy_hdf5_to_txt was updated to <a href="https://toolshed.g2.bx.psu.edu/view/computational-metabolomics/dimspy_hdf5_to_txt/ea439d85b6c5">ea439d85b6c5</a></li>
</ul>
<h2 id="assembly">Assembly</h2>
<ul>
<li>fastk_fastk was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/fastk_fastk/9f8c786bd424">9f8c786bd424</a></li>
<li>trycycler_cluster was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/trycycler_cluster/0368ac680e70">0368ac680e70</a></li>
<li>trycycler_consensus was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/trycycler_consensus/a7ed21de23fe">a7ed21de23fe</a></li>
<li>trycycler_partition was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/trycycler_partition/7673a6c920b2">7673a6c920b2</a></li>
<li>trycycler_reconcile_msa was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/trycycler_reconcile_msa/ed312479d9eb">ed312479d9eb</a></li>
<li>trycycler_subsample was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/trycycler_subsample/b9b0246a2be3">b9b0246a2be3</a></li>
</ul>
<h2 id="convert-formats">Convert Formats</h2>
<ul>
<li>bam2fastx was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/bam2fastx/0bfdf46e5e31">0bfdf46e5e31</a></li>
<li>ucsc_wigtobigwig was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/ucsc_wigtobigwig/fa49730d1d4b">fa49730d1d4b</a></li>
</ul>
<h2 id="genome-diversity">Genome Diversity</h2>
<ul>
<li>fasttree was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/fasttree/ef46a404db96">ef46a404db96</a></li>
</ul>
<h2 id="hicexplorer">HiCExplorer</h2>
<ul>
<li>hicexplorer_chicaggregatestatistic was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicaggregatestatistic/952abbc4b1de">952abbc4b1de</a></li>
<li>hicexplorer_chicdifferentialtest was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicdifferentialtest/f1c35f3f310d">f1c35f3f310d</a></li>
<li>hicexplorer_chicexportdata was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicexportdata/cab616fe7e64">cab616fe7e64</a></li>
<li>hicexplorer_chicplotviewpoint was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicplotviewpoint/b9ab56aecd18">b9ab56aecd18</a></li>
<li>hicexplorer_chicqualitycontrol was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicqualitycontrol/9ea228a9afc8">9ea228a9afc8</a></li>
<li>hicexplorer_chicsignificantinteractions was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicsignificantinteractions/f8320df1866b">f8320df1866b</a></li>
<li>hicexplorer_chicviewpoint was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicviewpoint/c4ed35f4f77f">c4ed35f4f77f</a></li>
<li>hicexplorer_chicviewpointbackgroundmodel was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_chicviewpointbackgroundmodel/c354255ff705">c354255ff705</a></li>
<li>hicexplorer_hicadjustmatrix was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicadjustmatrix/782bdcb775fb">782bdcb775fb</a></li>
<li>hicexplorer_hicaggregatecontacts was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicaggregatecontacts/63c8377c58b3">63c8377c58b3</a></li>
<li>hicexplorer_hicaverageregions was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicaverageregions/fe3aa71590d5">fe3aa71590d5</a></li>
<li>hicexplorer_hicbuildmatrix was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicbuildmatrix/0f611e7d7858">0f611e7d7858</a></li>
<li>hicexplorer_hiccomparematrices was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hiccomparematrices/4f9305d3bb34">4f9305d3bb34</a></li>
<li>hicexplorer_hiccompartmentspolarization was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hiccompartmentspolarization/a315574104c6">a315574104c6</a></li>
<li>hicexplorer_hicconvertformat was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicconvertformat/a83732c79949">a83732c79949</a></li>
<li>hicexplorer_hiccorrectmatrix was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hiccorrectmatrix/30d7390bc918">30d7390bc918</a></li>
<li>hicexplorer_hiccorrelate was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hiccorrelate/cd40ca76865a">cd40ca76865a</a></li>
<li>hicexplorer_hicdetectloops was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicdetectloops/bf9379529c3e">bf9379529c3e</a></li>
<li>hicexplorer_hicdifferentialtad was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicdifferentialtad/07dd436ea686">07dd436ea686</a></li>
<li>hicexplorer_hicfindrestrictionsites was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicfindrestrictionsites/f1b3902f8baf">f1b3902f8baf</a></li>
<li>hicexplorer_hicfindtads was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicfindtads/11de0d28ab30">11de0d28ab30</a></li>
<li>hicexplorer_hichyperoptdetectloops was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hichyperoptdetectloops/bb8849fca57c">bb8849fca57c</a></li>
<li>hicexplorer_hicinfo was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicinfo/b0f33533181d">b0f33533181d</a></li>
<li>hicexplorer_hicinterintratad was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicinterintratad/32173084d53f">32173084d53f</a></li>
<li>hicexplorer_hicmergedomains was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicmergedomains/4b194e675916">4b194e675916</a></li>
<li>hicexplorer_hicmergeloops was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicmergeloops/910c6a1c3a27">910c6a1c3a27</a></li>
<li>hicexplorer_hicmergematrixbins was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicmergematrixbins/f72063d9426b">f72063d9426b</a></li>
<li>hicexplorer_hicnormalize was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicnormalize/2aa5b6b65197">2aa5b6b65197</a></li>
<li>hicexplorer_hicpca was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicpca/1da5f169b491">1da5f169b491</a></li>
<li>hicexplorer_hicplotaverageregions was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicplotaverageregions/9b383d429659">9b383d429659</a></li>
<li>hicexplorer_hicplotdistvscounts was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicplotdistvscounts/06ced663d24f">06ced663d24f</a></li>
<li>hicexplorer_hicplotmatrix was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicplotmatrix/f741330d4a71">f741330d4a71</a></li>
<li>hicexplorer_hicplotsvl was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicplotsvl/beb5b5917d2f">beb5b5917d2f</a></li>
<li>hicexplorer_hicplotviewpoint was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicplotviewpoint/e285920f8585">e285920f8585</a></li>
<li>hicexplorer_hicquickqc was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicquickqc/5cbd7a902a8d">5cbd7a902a8d</a></li>
<li>hicexplorer_hicsummatrices was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicsummatrices/f81750434d70">f81750434d70</a></li>
<li>hicexplorer_hictransform was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hictransform/1de2276f633f">1de2276f633f</a></li>
<li>hicexplorer_hicvalidatelocations was updated to <a href="https://toolshed.g2.bx.psu.edu/view/bgruening/hicexplorer_hicvalidatelocations/cef9fb4ece1c">cef9fb4ece1c</a></li>
</ul>
<h2 id="mapping">Mapping</h2>
<ul>
<li>pbmm2 was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/pbmm2/7100ed4a31a2">7100ed4a31a2</a></li>
</ul>
<h2 id="metagenomic-analysis">Metagenomic Analysis</h2>
<ul>
<li>name2taxid was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/name2taxid/b83613ee99ad">b83613ee99ad</a></li>
<li>profile2cami was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/profile2cami/d38b9fdf04e0">d38b9fdf04e0</a></li>
</ul>
<h2 id="mothur">Mothur</h2>
<ul>
<li>mothur_chimera_perseus was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/mothur_chimera_perseus/0f3baac24045">0f3baac24045</a></li>
</ul>
<h2 id="rna-analysis">RNA Analysis</h2>
<ul>
<li>seurat_clustering was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/seurat_clustering/51eb02d9b17a">51eb02d9b17a</a></li>
<li>seurat_create was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/seurat_create/af8bdeb89691">af8bdeb89691</a></li>
<li>seurat_data was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/seurat_data/4ec52a83ec82">4ec52a83ec82</a></li>
<li>seurat_integrate was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/seurat_integrate/74fa68f4e579">74fa68f4e579</a></li>
<li>seurat_plot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/seurat_plot/fee4b4eb0ef5">fee4b4eb0ef5</a></li>
<li>seurat_preprocessing was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/seurat_preprocessing/6bccf5f85f92">6bccf5f85f92</a></li>
<li>seurat_reduce_dimension was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/seurat_reduce_dimension/46ed93e8da30">46ed93e8da30</a></li>
</ul>
<h2 id="variant-calling">Variant Calling</h2>
<ul>
<li>bcftools_convert_from_vcf was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/bcftools_convert_from_vcf/b8e9da766b0f">b8e9da766b0f</a></li>
<li>bcftools_convert_from_vcf was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/bcftools_convert_from_vcf/cacc9970727a">cacc9970727a</a></li>
</ul>
<h2 id="virology">Virology</h2>
<ul>
<li>irma was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/irma/a9a78a68d6c8">a9a78a68d6c8</a></li>
</ul>
<h2 id="none">None</h2>
<ul>
<li>data_manager_diamond_database_builder was updated to <a href="https://toolshed.g2.bx.psu.edu/view/iuc/data_manager_diamond_database_builder/4a08b7b76b78">4a08b7b76b78</a></li>
</ul></content><author><name></name></author><category term="tools" /><summary type="html">On 2024-11-10, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in Jenkins Build #486</summary></entry><entry><title type="html">UseGalaxy.eu Tool Updates for 2024-11-03</title><link href="https://galaxyproject.eu/posts/2024/11/03/tool-update/" rel="alternate" type="text/html" title="UseGalaxy.eu Tool Updates for 2024-11-03" /><published>2024-11-03T00:00:00+01:00</published><updated>2024-11-03T00:00:00+01:00</updated><id>https://galaxyproject.eu/posts/2024/11/03/tool-update</id><content type="html" xml:base="https://galaxyproject.eu/posts/2024/11/03/tool-update/"><p>On 2024-11-03, the tools on UseGalaxy.eu were updated by our automated tool update and installation process in <a href="https://build.galaxyproject.eu/job/usegalaxy-eu/job/install-tools/#485/">Jenkins Build #485</a></p>
<h2 id="get-data">Get Data</h2>
<ul>
<li>copernicusmarine was updated to <a href="https://toolshed.g2.bx.psu.edu/view/ecology/copernicusmarine/4edd010161e9">4edd010161e9</a></li>
</ul>
<h2 id="metabolomics">Metabolomics</h2>
<ul>
<li>isolib was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/isolib/2b1118bce0b1">2b1118bce0b1</a></li>
<li>mfassignr_findrecalseries was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/mfassignr_findrecalseries/1b4881c150cc">1b4881c150cc</a></li>
<li>mfassignr_histnoise was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/mfassignr_histnoise/9654573e6889">9654573e6889</a></li>
<li>mfassignr_isofiltr was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/mfassignr_isofiltr/1c199c3d5993">1c199c3d5993</a></li>
<li>mfassignr_kmdnoise was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/mfassignr_kmdnoise/a7a823839ae3">a7a823839ae3</a></li>
<li>mfassignr_mfassign was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/mfassignr_mfassign/22c80f584bb1">22c80f584bb1</a></li>
<li>mfassignr_mfassigncho was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/mfassignr_mfassigncho/da64d663694b">da64d663694b</a></li>
<li>mfassignr_recal was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/mfassignr_recal/cfcf45ba58be">cfcf45ba58be</a></li>
<li>mfassignr_recallist was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/mfassignr_recallist/6c7b17d38a1d">6c7b17d38a1d</a></li>
<li>mfassignr_snplot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/mfassignr_snplot/f19c0631b9e5">f19c0631b9e5</a></li>
<li>recetox_aplcms_align_features was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/recetox_aplcms_align_features/ec196e27a61a">ec196e27a61a</a></li>
<li>recetox_aplcms_compute_clusters was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/recetox_aplcms_compute_clusters/59c393d35e0e">59c393d35e0e</a></li>
<li>recetox_aplcms_compute_template was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/recetox_aplcms_compute_template/50b9918aeff2">50b9918aeff2</a></li>
<li>recetox_aplcms_correct_time was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/recetox_aplcms_correct_time/a82db010c53e">a82db010c53e</a></li>
<li>recetox_aplcms_generate_feature_table was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/recetox_aplcms_generate_feature_table/89178a72388a">89178a72388a</a></li>
<li>recetox_aplcms_merge_known_table was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/recetox_aplcms_merge_known_table/b7c8a44b9cc1">b7c8a44b9cc1</a></li>
<li>recetox_aplcms_recover_weaker_signals was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/recetox_aplcms_recover_weaker_signals/f92b1b64da93">f92b1b64da93</a></li>
<li>recetox_aplcms_remove_noise was updated to <a href="https://toolshed.g2.bx.psu.edu/view/recetox/recetox_aplcms_remove_noise/7acd11ddc061">7acd11ddc061</a></li>
</ul>
<h2 id="qiime-2">QIIME 2</h2>
<ul>
<li>qiime2__alignment__mafft was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__alignment__mafft/da8c194c5dc5">da8c194c5dc5</a></li>
<li>qiime2__alignment__mafft_add was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__alignment__mafft_add/793348b25298">793348b25298</a></li>
<li>qiime2__alignment__mask was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__alignment__mask/d71423249631">d71423249631</a></li>
<li>qiime2__composition__add_pseudocount was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__composition__add_pseudocount/e2822b9553cb">e2822b9553cb</a></li>
<li>qiime2__composition__ancom was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__composition__ancom/c59b1d501ecf">c59b1d501ecf</a></li>
<li>qiime2__composition__ancombc was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__composition__ancombc/952686c734e9">952686c734e9</a></li>
<li>qiime2__composition__tabulate was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__composition__tabulate/cb1a60431256">cb1a60431256</a></li>
<li>qiime2__cutadapt__demux_paired was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__cutadapt__demux_paired/12dfb163a004">12dfb163a004</a></li>
<li>qiime2__cutadapt__demux_single was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__cutadapt__demux_single/47652cda9695">47652cda9695</a></li>
<li>qiime2__cutadapt__trim_paired was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__cutadapt__trim_paired/e82bd0e0c7ad">e82bd0e0c7ad</a></li>
<li>qiime2__cutadapt__trim_single was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__cutadapt__trim_single/f8d5e0d4dfec">f8d5e0d4dfec</a></li>
<li>qiime2__dada2__denoise_ccs was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__dada2__denoise_ccs/e73ff752eb45">e73ff752eb45</a></li>
<li>qiime2__dada2__denoise_paired was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__dada2__denoise_paired/933b92011b91">933b92011b91</a></li>
<li>qiime2__dada2__denoise_pyro was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__dada2__denoise_pyro/d9e75c4f54b9">d9e75c4f54b9</a></li>
<li>qiime2__dada2__denoise_single was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__dada2__denoise_single/354f63459d37">354f63459d37</a></li>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/2572fc0f88f2">2572fc0f88f2</a></li>
<li>qiime2__deblur__denoise_16S was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_16S/b883cbea5623">b883cbea5623</a></li>
<li>qiime2__deblur__denoise_other was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__denoise_other/816ca3000a39">816ca3000a39</a></li>
<li>qiime2__deblur__visualize_stats was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__deblur__visualize_stats/2e4eafd6f1f6">2e4eafd6f1f6</a></li>
<li>qiime2__demux__emp_paired was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__demux__emp_paired/8edb4dc16d6e">8edb4dc16d6e</a></li>
<li>qiime2__demux__emp_single was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__demux__emp_single/8e01d149bcdb">8e01d149bcdb</a></li>
<li>qiime2__demux__filter_samples was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__demux__filter_samples/7595f1cbe5b7">7595f1cbe5b7</a></li>
<li>qiime2__demux__subsample_paired was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__demux__subsample_paired/669e59a2a229">669e59a2a229</a></li>
<li>qiime2__demux__subsample_single was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__demux__subsample_single/76384b6b3d90">76384b6b3d90</a></li>
<li>qiime2__demux__summarize was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__demux__summarize/1a13e87462a0">1a13e87462a0</a></li>
<li>qiime2__diversity__adonis was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__adonis/4701a5b2b60d">4701a5b2b60d</a></li>
<li>qiime2__diversity__alpha was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__alpha/324ab5e710fa">324ab5e710fa</a></li>
<li>qiime2__diversity__alpha_correlation was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__alpha_correlation/356a07706de8">356a07706de8</a></li>
<li>qiime2__diversity__alpha_group_significance was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__alpha_group_significance/96988c25ca01">96988c25ca01</a></li>
<li>qiime2__diversity__alpha_phylogenetic was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__alpha_phylogenetic/5c0e7186a169">5c0e7186a169</a></li>
<li>qiime2__diversity__alpha_rarefaction was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__alpha_rarefaction/22bfda174157">22bfda174157</a></li>
<li>qiime2__diversity__beta was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__beta/97a8f4d7b51d">97a8f4d7b51d</a></li>
<li>qiime2__diversity__beta_correlation was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__beta_correlation/93d88cdf089a">93d88cdf089a</a></li>
<li>qiime2__diversity__beta_group_significance was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__beta_group_significance/a0d20b8b681e">a0d20b8b681e</a></li>
<li>qiime2__diversity__beta_phylogenetic was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__beta_phylogenetic/394712a51004">394712a51004</a></li>
<li>qiime2__diversity__beta_rarefaction was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__beta_rarefaction/1506cdb7caad">1506cdb7caad</a></li>
<li>qiime2__diversity__bioenv was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__bioenv/21ca3e4d0f06">21ca3e4d0f06</a></li>
<li>qiime2__diversity__core_metrics was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__core_metrics/703db464b072">703db464b072</a></li>
<li>qiime2__diversity__core_metrics_phylogenetic was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__core_metrics_phylogenetic/7fc930fc43cf">7fc930fc43cf</a></li>
<li>qiime2__diversity__filter_alpha_diversity was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__filter_alpha_diversity/35e7602594d8">35e7602594d8</a></li>
<li>qiime2__diversity__filter_distance_matrix was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__filter_distance_matrix/6d85ed80f077">6d85ed80f077</a></li>
<li>qiime2__diversity__mantel was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__mantel/39109e3921ee">39109e3921ee</a></li>
<li>qiime2__diversity__pcoa was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__pcoa/0a6baa36f13c">0a6baa36f13c</a></li>
<li>qiime2__diversity__pcoa_biplot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__pcoa_biplot/41a52cf11f2d">41a52cf11f2d</a></li>
<li>qiime2__diversity__procrustes_analysis was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__procrustes_analysis/db458dd840c2">db458dd840c2</a></li>
<li>qiime2__diversity__tsne was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__tsne/eccbb594cd17">eccbb594cd17</a></li>
<li>qiime2__diversity__umap was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity__umap/9c7d4870e7c2">9c7d4870e7c2</a></li>
<li>qiime2__diversity_lib__alpha_passthrough was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity_lib__alpha_passthrough/71a10fd28964">71a10fd28964</a></li>
<li>qiime2__diversity_lib__beta_passthrough was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity_lib__beta_passthrough/7bc5ff8456ff">7bc5ff8456ff</a></li>
<li>qiime2__diversity_lib__beta_phylogenetic_meta_passthrough was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity_lib__beta_phylogenetic_meta_passthrough/a6205ca8caec">a6205ca8caec</a></li>
<li>qiime2__diversity_lib__beta_phylogenetic_passthrough was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity_lib__beta_phylogenetic_passthrough/5ab19b2ef7d8">5ab19b2ef7d8</a></li>
<li>qiime2__diversity_lib__bray_curtis was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity_lib__bray_curtis/84b38b24a50e">84b38b24a50e</a></li>
<li>qiime2__diversity_lib__faith_pd was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity_lib__faith_pd/f3e3dfe874f0">f3e3dfe874f0</a></li>
<li>qiime2__diversity_lib__jaccard was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity_lib__jaccard/df2902af58c1">df2902af58c1</a></li>
<li>qiime2__diversity_lib__observed_features was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity_lib__observed_features/89d7fabc1120">89d7fabc1120</a></li>
<li>qiime2__diversity_lib__pielou_evenness was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity_lib__pielou_evenness/3fff9475b959">3fff9475b959</a></li>
<li>qiime2__diversity_lib__shannon_entropy was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity_lib__shannon_entropy/b2ccb5709bed">b2ccb5709bed</a></li>
<li>qiime2__diversity_lib__unweighted_unifrac was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity_lib__unweighted_unifrac/16f6f1bb70df">16f6f1bb70df</a></li>
<li>qiime2__diversity_lib__weighted_unifrac was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__diversity_lib__weighted_unifrac/a166647c366a">a166647c366a</a></li>
<li>qiime2__emperor__biplot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__emperor__biplot/500d81d6d22d">500d81d6d22d</a></li>
<li>qiime2__emperor__plot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__emperor__plot/64a9ebc05ae4">64a9ebc05ae4</a></li>
<li>qiime2__emperor__procrustes_plot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__emperor__procrustes_plot/e2e3685e9ead">e2e3685e9ead</a></li>
<li>qiime2__feature_classifier__blast was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_classifier__blast/24b72d60805e">24b72d60805e</a></li>
<li>qiime2__feature_classifier__classify_consensus_blast was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_classifier__classify_consensus_blast/0024a2733c77">0024a2733c77</a></li>
<li>qiime2__feature_classifier__classify_consensus_vsearch was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_classifier__classify_consensus_vsearch/f965e6e951e7">f965e6e951e7</a></li>
<li>qiime2__feature_classifier__classify_hybrid_vsearch_sklearn was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_classifier__classify_hybrid_vsearch_sklearn/6f3e4b4cd85f">6f3e4b4cd85f</a></li>
<li>qiime2__feature_classifier__classify_sklearn was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_classifier__classify_sklearn/771d8be25d7a">771d8be25d7a</a></li>
<li>qiime2__feature_classifier__extract_reads was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_classifier__extract_reads/9db411be36ba">9db411be36ba</a></li>
<li>qiime2__feature_classifier__find_consensus_annotation was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_classifier__find_consensus_annotation/b6121b90c568">b6121b90c568</a></li>
<li>qiime2__feature_classifier__fit_classifier_naive_bayes was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_classifier__fit_classifier_naive_bayes/1088a30ad72f">1088a30ad72f</a></li>
<li>qiime2__feature_classifier__fit_classifier_sklearn was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_classifier__fit_classifier_sklearn/b58536f29139">b58536f29139</a></li>
<li>qiime2__feature_classifier__vsearch_global was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_classifier__vsearch_global/7ca8ce947d06">7ca8ce947d06</a></li>
<li>qiime2__feature_table__core_features was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__core_features/0b1424ea3495">0b1424ea3495</a></li>
<li>qiime2__feature_table__filter_features was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__filter_features/10954feb4893">10954feb4893</a></li>
<li>qiime2__feature_table__filter_features_conditionally was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__filter_features_conditionally/46bc11016e31">46bc11016e31</a></li>
<li>qiime2__feature_table__filter_samples was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__filter_samples/0597a61cb4b5">0597a61cb4b5</a></li>
<li>qiime2__feature_table__filter_seqs was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__filter_seqs/8aec6a03bd3f">8aec6a03bd3f</a></li>
<li>qiime2__feature_table__group was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__group/4acd06f54adc">4acd06f54adc</a></li>
<li>qiime2__feature_table__heatmap was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__heatmap/1579e3bbdc11">1579e3bbdc11</a></li>
<li>qiime2__feature_table__merge was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__merge/b5eb47c65e65">b5eb47c65e65</a></li>
<li>qiime2__feature_table__merge_seqs was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__merge_seqs/6d3775f3a859">6d3775f3a859</a></li>
<li>qiime2__feature_table__merge_taxa was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__merge_taxa/a96e86eac4e3">a96e86eac4e3</a></li>
<li>qiime2__feature_table__presence_absence was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__presence_absence/d853b44a37b5">d853b44a37b5</a></li>
<li>qiime2__feature_table__rarefy was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__rarefy/adf22a045073">adf22a045073</a></li>
<li>qiime2__feature_table__relative_frequency was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__relative_frequency/eaada56f497a">eaada56f497a</a></li>
<li>qiime2__feature_table__rename_ids was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__rename_ids/8ae8ef4804fa">8ae8ef4804fa</a></li>
<li>qiime2__feature_table__summarize was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__summarize/d0f2249afe30">d0f2249afe30</a></li>
<li>qiime2__feature_table__tabulate_seqs was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__tabulate_seqs/c4570ced1d88">c4570ced1d88</a></li>
<li>qiime2__feature_table__transpose was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__feature_table__transpose/8a3e71857c0a">8a3e71857c0a</a></li>
<li>qiime2__fragment_insertion__classify_otus_experimental was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__fragment_insertion__classify_otus_experimental/62764fe71186">62764fe71186</a></li>
<li>qiime2__fragment_insertion__filter_features was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__fragment_insertion__filter_features/b27d577c13e0">b27d577c13e0</a></li>
<li>qiime2__fragment_insertion__sepp was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__fragment_insertion__sepp/a74f06287b8c">a74f06287b8c</a></li>
<li>qiime2__longitudinal__anova was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__longitudinal__anova/649a6f5a7ff8">649a6f5a7ff8</a></li>
<li>qiime2__longitudinal__feature_volatility was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__longitudinal__feature_volatility/ecc06a63663d">ecc06a63663d</a></li>
<li>qiime2__longitudinal__first_differences was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__longitudinal__first_differences/2cb105e00a71">2cb105e00a71</a></li>
<li>qiime2__longitudinal__first_distances was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__longitudinal__first_distances/2c445317c0c1">2c445317c0c1</a></li>
<li>qiime2__longitudinal__linear_mixed_effects was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__longitudinal__linear_mixed_effects/d10f755328ea">d10f755328ea</a></li>
<li>qiime2__longitudinal__maturity_index was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__longitudinal__maturity_index/1945315814fc">1945315814fc</a></li>
<li>qiime2__longitudinal__nmit was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__longitudinal__nmit/4facf6ad69be">4facf6ad69be</a></li>
<li>qiime2__longitudinal__pairwise_differences was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__longitudinal__pairwise_differences/82847cdbf7fd">82847cdbf7fd</a></li>
<li>qiime2__longitudinal__pairwise_distances was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__longitudinal__pairwise_distances/c02040f48a72">c02040f48a72</a></li>
<li>qiime2__longitudinal__plot_feature_volatility was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__longitudinal__plot_feature_volatility/2b93f7a91399">2b93f7a91399</a></li>
<li>qiime2__longitudinal__volatility was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__longitudinal__volatility/646d4929b1ea">646d4929b1ea</a></li>
<li>qiime2__metadata__distance_matrix was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__metadata__distance_matrix/855d0a9bc79c">855d0a9bc79c</a></li>
<li>qiime2__metadata__shuffle_groups was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__metadata__shuffle_groups/d310fdba1caf">d310fdba1caf</a></li>
<li>qiime2__metadata__tabulate was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__metadata__tabulate/9857be21dcaf">9857be21dcaf</a></li>
<li>qiime2__phylogeny__align_to_tree_mafft_fasttree was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__phylogeny__align_to_tree_mafft_fasttree/b552bc376487">b552bc376487</a></li>
<li>qiime2__phylogeny__align_to_tree_mafft_iqtree was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__phylogeny__align_to_tree_mafft_iqtree/ec98b720efc9">ec98b720efc9</a></li>
<li>qiime2__phylogeny__align_to_tree_mafft_raxml was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__phylogeny__align_to_tree_mafft_raxml/5d20cf180904">5d20cf180904</a></li>
<li>qiime2__phylogeny__fasttree was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__phylogeny__fasttree/139fe749b0e5">139fe749b0e5</a></li>
<li>qiime2__phylogeny__filter_table was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__phylogeny__filter_table/fa11896bafbb">fa11896bafbb</a></li>
<li>qiime2__phylogeny__filter_tree was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__phylogeny__filter_tree/d24d147a225d">d24d147a225d</a></li>
<li>qiime2__phylogeny__iqtree was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__phylogeny__iqtree/77c94392c3e8">77c94392c3e8</a></li>
<li>qiime2__phylogeny__iqtree_ultrafast_bootstrap was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__phylogeny__iqtree_ultrafast_bootstrap/e682a7a080a0">e682a7a080a0</a></li>
<li>qiime2__phylogeny__midpoint_root was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__phylogeny__midpoint_root/0a0e30476122">0a0e30476122</a></li>
<li>qiime2__phylogeny__raxml was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__phylogeny__raxml/a40eb1afbd0f">a40eb1afbd0f</a></li>
<li>qiime2__phylogeny__raxml_rapid_bootstrap was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__phylogeny__raxml_rapid_bootstrap/9d523344e9fb">9d523344e9fb</a></li>
<li>qiime2__phylogeny__robinson_foulds was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__phylogeny__robinson_foulds/48893627c8f9">48893627c8f9</a></li>
<li>qiime2__quality_control__bowtie2_build was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__quality_control__bowtie2_build/3a464de609d5">3a464de609d5</a></li>
<li>qiime2__quality_control__evaluate_composition was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__quality_control__evaluate_composition/d9c71e139c9b">d9c71e139c9b</a></li>
<li>qiime2__quality_control__evaluate_seqs was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__quality_control__evaluate_seqs/f45d42427237">f45d42427237</a></li>
<li>qiime2__quality_control__evaluate_taxonomy was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__quality_control__evaluate_taxonomy/8e6a404fb338">8e6a404fb338</a></li>
<li>qiime2__quality_control__exclude_seqs was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__quality_control__exclude_seqs/505d6f366518">505d6f366518</a></li>
<li>qiime2__quality_control__filter_reads was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__quality_control__filter_reads/8ea205bf4e7b">8ea205bf4e7b</a></li>
<li>qiime2__quality_filter__q_score was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__quality_filter__q_score/d786401d6619">d786401d6619</a></li>
<li>qiime2__rescript__get_bv_brc_genome_features was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__rescript__get_bv_brc_genome_features/c735738cecca">c735738cecca</a></li>
<li>qiime2__rescript__get_bv_brc_genomes was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__rescript__get_bv_brc_genomes/9dd05f5c60b9">9dd05f5c60b9</a></li>
<li>qiime2__rescript__get_bv_brc_metadata was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__rescript__get_bv_brc_metadata/f3cd42768927">f3cd42768927</a></li>
<li>qiime2__sample_classifier__classify_samples was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__classify_samples/6c18cbbf0f5b">6c18cbbf0f5b</a></li>
<li>qiime2__sample_classifier__classify_samples_from_dist was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__classify_samples_from_dist/5f37765a9e5e">5f37765a9e5e</a></li>
<li>qiime2__sample_classifier__classify_samples_ncv was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__classify_samples_ncv/ab96421e61c5">ab96421e61c5</a></li>
<li>qiime2__sample_classifier__confusion_matrix was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__confusion_matrix/3164358cd72f">3164358cd72f</a></li>
<li>qiime2__sample_classifier__fit_classifier was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__fit_classifier/2116b939ff07">2116b939ff07</a></li>
<li>qiime2__sample_classifier__fit_regressor was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__fit_regressor/e44450046a90">e44450046a90</a></li>
<li>qiime2__sample_classifier__heatmap was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__heatmap/e2c3a69905fe">e2c3a69905fe</a></li>
<li>qiime2__sample_classifier__metatable was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__metatable/905113a20ca7">905113a20ca7</a></li>
<li>qiime2__sample_classifier__predict_classification was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__predict_classification/555cb8da4688">555cb8da4688</a></li>
<li>qiime2__sample_classifier__predict_regression was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__predict_regression/e0913981ccc4">e0913981ccc4</a></li>
<li>qiime2__sample_classifier__regress_samples was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__regress_samples/a400ec06bae3">a400ec06bae3</a></li>
<li>qiime2__sample_classifier__regress_samples_ncv was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__regress_samples_ncv/c468c032ee23">c468c032ee23</a></li>
<li>qiime2__sample_classifier__scatterplot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__scatterplot/22e510854bb2">22e510854bb2</a></li>
<li>qiime2__sample_classifier__split_table was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__split_table/b0af6d277910">b0af6d277910</a></li>
<li>qiime2__sample_classifier__summarize was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__sample_classifier__summarize/e56a7f3e8b05">e56a7f3e8b05</a></li>
<li>qiime2__stats__alpha_group_significance was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__stats__alpha_group_significance/d6f4c80a29a2">d6f4c80a29a2</a></li>
<li>qiime2__stats__collate_stats was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__stats__collate_stats/10e19418eedb">10e19418eedb</a></li>
<li>qiime2__stats__facet_across was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__stats__facet_across/caf764ebca30">caf764ebca30</a></li>
<li>qiime2__stats__facet_within was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__stats__facet_within/5349488971e9">5349488971e9</a></li>
<li>qiime2__stats__mann_whitney_u_facet was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__stats__mann_whitney_u_facet/3860c369685d">3860c369685d</a></li>
<li>qiime2__stats__plot_rainclouds was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__stats__plot_rainclouds/0699c24331f4">0699c24331f4</a></li>
<li>qiime2__stats__prep_alpha_distribution was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__stats__prep_alpha_distribution/c7ae38450ff9">c7ae38450ff9</a></li>
<li>qiime2__stats__wilcoxon_srt was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__stats__wilcoxon_srt/3cbec5fc30ad">3cbec5fc30ad</a></li>
<li>qiime2__stats__wilcoxon_srt_facet was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__stats__wilcoxon_srt_facet/181c3cf66bd8">181c3cf66bd8</a></li>
<li>qiime2__taxa__barplot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__taxa__barplot/3da2f87501ee">3da2f87501ee</a></li>
<li>qiime2__taxa__collapse was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__taxa__collapse/e8ab6eff4cf8">e8ab6eff4cf8</a></li>
<li>qiime2__taxa__filter_seqs was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__taxa__filter_seqs/526b35d5a4cd">526b35d5a4cd</a></li>
<li>qiime2__taxa__filter_table was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__taxa__filter_table/ca4a6aa29205">ca4a6aa29205</a></li>
<li>qiime2__vizard__boxplot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__vizard__boxplot/765052908e52">765052908e52</a></li>
<li>qiime2__vizard__heatmap was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__vizard__heatmap/45c348a09fa0">45c348a09fa0</a></li>
<li>qiime2__vizard__lineplot was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__vizard__lineplot/df9f1ff48c29">df9f1ff48c29</a></li>
<li>qiime2__vizard__scatterplot_2d was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__vizard__scatterplot_2d/acada7129b61">acada7129b61</a></li>
<li>qiime2__vsearch__cluster_features_closed_reference was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__vsearch__cluster_features_closed_reference/89648217a7ef">89648217a7ef</a></li>
<li>qiime2__vsearch__cluster_features_de_novo was updated to <a href="https://toolshed.g2.bx.psu.edu/view/q2d2/qiime2__vsearch__cluster_features_de_novo/31b630d08cda">31b630d08cda</a></li>