-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathtools_iuc.yaml.lock
More file actions
14983 lines (14983 loc) · 295 KB
/
tools_iuc.yaml.lock
File metadata and controls
14983 lines (14983 loc) · 295 KB
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
install_repository_dependencies: false
install_resolver_dependencies: false
install_tool_dependencies: false
tools:
- name: abricate
owner: iuc
revisions:
- 1bb2ba6d3d96
- 31f58ec0459a
- 3f3e247c053d
- 4efdca267d51
- 78c75f134c16
- 862f5a86854d
- c2ef298da409
- f9bf6a8d8547
tool_panel_section_label: Annotation
- name: abritamr
owner: iuc
revisions:
- 3e8233ce0b99
- 468fd92deaaa
- 5aaffb8d8161
- ca5d51152817
- e17bbe564242
- e909d3bc4687
tool_panel_section_label: Annotation
- name: amrfinderplus
owner: iuc
revisions:
- 1920244e2895
- 2fa74a3f6670
- 573cfe217474
- 7844dbe4f8e2
tool_panel_section_label: Annotation
- name: angsd
owner: iuc
revisions:
- 7b0e59047b2f
tool_panel_section_label: Annotation
- name: annotatemyids
owner: iuc
revisions:
- 133f36c29579
- 1a125daea0d8
- 1aae04680c4b
- 38eedf3cc3c9
- 3e1f6f6d557e
- 44018dd6b447
- 4f2967b27e67
- a79ee60b6926
- b5d8e5475247
- cd2480f35935
- ecc913a7334b
- f29602ae449e
- fe3ca740a485
tool_panel_section_label: Annotation
- name: argnorm
owner: iuc
revisions:
- bae2bc0f1b66
- d8e95a03321a
tool_panel_section_label: Annotation
- name: autobigs
owner: iuc
revisions:
- 727e524cda34
tool_panel_section_label: Annotation
- name: bakta
owner: iuc
revisions:
- 1942e86e2ee1
- 3f0aa1b3e816
- 728dacaf08a9
- 865ece5ca178
- 92eee5f31117
- ba6990f72184
- d77802fe76f7
- da5f1924bb2e
tool_panel_section_label: Annotation
- name: bicodon_counts_from_fasta
owner: iuc
revisions:
- e13169dca7c8
tool_panel_section_label: Annotation
- name: bctools_remove_tail
owner: iuc
revisions:
- 6979701451c3
tool_panel_section_label: Annotation
- name: bctools_remove_spurious_events
owner: iuc
revisions:
- 308ab6387c75
tool_panel_section_label: Annotation
- name: bctools_merge_pcr_duplicates
owner: iuc
revisions:
- 04e67d8245fe
tool_panel_section_label: Annotation
- name: bctools_extract_crosslinked_nucleotides
owner: iuc
revisions:
- 12a5e6fa850e
tool_panel_section_label: Annotation
- name: bctools_extract_barcodes
owner: iuc
revisions:
- ceb779d5be5b
tool_panel_section_label: Annotation
- name: bctools_extract_alignment_ends
owner: iuc
revisions:
- 0be29a221b16
tool_panel_section_label: Annotation
- name: bctools_convert_to_binary_barcode
owner: iuc
revisions:
- 4f4c5a4dda59
tool_panel_section_label: Annotation
- name: busco
owner: iuc
revisions:
- 0d243f458b53
- 2babe6d5c561
- 2dd755c1c6ff
- 41030a6c03b7
- 46ae58b1d792
- 4e70d88adf2f
- 602fb8e63aa7
- 94170eee0ad8
- bb935709506a
- c5a90fa4b8dd
- cf13a1e03e5b
- e4bd1e99bacf
- e5c372c91e46
- e824f5d958d0
- ea8146ee148f
tool_panel_section_label: Annotation
- name: codon_freq_from_bicodons
owner: iuc
revisions:
- cc5a776acd47
tool_panel_section_label: Annotation
- name: colibread_takeabreak
owner: iuc
revisions:
- 1339a2bb75ce
tool_panel_section_label: Annotation
- name: colibread_mapsembler2
owner: iuc
revisions:
- e395a941a7e1
tool_panel_section_label: Annotation
- name: colibread_kissplice
owner: iuc
revisions:
- 7c02beb8ba3d
tool_panel_section_label: Annotation
- name: colibread_discosnp_rad
owner: iuc
revisions:
- 74ed1718ef58
tool_panel_section_label: Annotation
- name: colibread_discosnp_pp
owner: iuc
revisions:
- b3b0ce84e711
tool_panel_section_label: Annotation
- name: colibread_commet
owner: iuc
revisions:
- 4daa32d21ea5
tool_panel_section_label: Annotation
- name: data_manager_fetch_busco_options
owner: iuc
revisions:
- 4e3bbaa0b70f
- name: data_manager_bwa_mem2_index_builder
owner: iuc
revisions:
- a89d803c8b29
- name: chewbbaca_allelecall
owner: iuc
revisions:
- 264c38c4f8ba
- 4fdabf147b39
- 9de4eeb0023b
- c69c02c33322
- e4ad2cf041fb
tool_panel_section_label: Annotation
- name: chewbbaca_allelecallevaluator
owner: iuc
revisions:
- 15025d7fbc5f
- 77a84fa4a02b
- 7c4f32708e80
- a1420ba0b457
- b4467818950a
tool_panel_section_label: Annotation
- name: chewbbaca_createschema
owner: iuc
revisions:
- 220e2f7ff8bb
- 4e61ec4fd5f5
- 6a6c9e46cb8b
- 6a8df4d75f3a
- ae1374a5ecdf
tool_panel_section_label: Annotation
- name: chewbbaca_downloadschema
owner: iuc
revisions:
- 18d7d8582206
- 4683f2baa5f0
- 9a68fa4842bb
- a707d4098f09
- f502e55c34a3
tool_panel_section_label: Annotation
- name: chewbbaca_extractcgmlst
owner: iuc
revisions:
- 743125c3ac12
- 8d662423bf56
- 9c4c2191b550
- a302f0fef852
- a3d1181467e4
tool_panel_section_label: Annotation
- name: chewbbaca_joinprofiles
owner: iuc
revisions:
- 46269c0ef8e9
- 4d25ff3d07a9
- a370301694bc
- e3cba867efd4
- f16c5cfeab7d
tool_panel_section_label: Annotation
- name: chewbbaca_nsstats
owner: iuc
revisions:
- 5207cb4e31a2
- 73c54f755a31
- 7c84b3b83def
- eb91c1b90a84
- ebbbb3265867
tool_panel_section_label: Annotation
- name: chewbbaca_prepexternalschema
owner: iuc
revisions:
- 0b73dd40d83f
- 604c4097461d
- 6f7cfce9494d
- 7035fc8b4ae3
- d8c1dcd7418c
tool_panel_section_label: Annotation
- name: compleasm
owner: iuc
revisions:
- 47f9f4d13d2c
- 7109a27a11db
- 8f20a5b9b282
- cfec9601b25d
- fc7334661489
tool_panel_section_label: Annotation
- name: coreprofiler_allele_calling
owner: iuc
revisions:
- 3cbbbf459e8e
- 49416e22e6da
- 515124ba871a
- 772b4e9f7c9b
- 8b8c1c9c0413
- b781bb77a985
- e4f31d0138a8
- e8d24431ea66
tool_panel_section_label: Annotation
- name: data_manager_build_coreprofiler
owner: iuc
revisions:
- adc9ab7a10ab
- name: drhip
owner: iuc
revisions:
- dd2d60b55e0d
tool_panel_section_label: Annotation
- name: detect_circular_sequences
owner: iuc
revisions:
- faec698e3f98
tool_panel_section_label: Annotation
- name: endorspy
owner: iuc
revisions:
- 6a999abf5fd4
tool_panel_section_label: Annotation
- name: evidencemodeler
owner: iuc
revisions:
- 82aeab1ae0a1
tool_panel_section_label: Annotation
- name: dgidb_annotator
owner: devteam
revisions:
- 792f3cb0eff4
- c5bb987015c5
tool_panel_section_label: Annotation
- name: deeparg_predict
owner: iuc
revisions:
- 07801d7ee81f
- 3953324f6d31
tool_panel_section_label: Annotation
- name: deeparg_short_reads
owner: iuc
revisions:
- 558018b49a4c
- 854b7c026a7e
tool_panel_section_label: Annotation
- name: data_manager_funannotate_options
owner: iuc
revisions:
- e22da646fed7
- name: data_manager_deeparg
owner: iuc
revisions:
- 4a72de3780aa
- c5511a9b1442
- name: data_manager_fetch_plasmidfinder
owner: iuc
revisions:
- 8a3955d56000
- name: exonerate
owner: iuc
revisions:
- 2485637fe656
- a03dead1bede
- b03ae2ba8688
tool_panel_section_label: Annotation
- name: fargene
owner: iuc
revisions:
- 6f743c615c41
- b982a9ea939c
tool_panel_section_label: Annotation
- name: fastani
owner: iuc
revisions:
- 3c6e0e8df873
tool_panel_section_label: Annotation
- name: fastoma
owner: iuc
revisions:
- c71024206080
tool_panel_section_label: Annotation
- name: fgsea
owner: iuc
revisions:
- 101b208a3e1a
- 17eb1e0d711f
- 9bb7943b5263
tool_panel_section_label: Annotation
- name: find_nested_alt_orfs
owner: iuc
revisions:
- 14f4c7a8a962
tool_panel_section_label: Annotation
- name: funannotate_annotate
owner: iuc
revisions:
- 0b8d49d3742d
- 14f588312c56
- 3bbe70fef6df
- 582fd74dc2a1
- 756376aeb1ae
- 9c15ca7e764e
- 9f2455341fac
- 9feee7fc49a1
- b6b5cd37f2a2
tool_panel_section_label: Annotation
- name: funannotate_clean
owner: iuc
revisions:
- 0ffe5be70caf
- 1691af4a0d17
- 19ddd5557b4f
- 258198490c3c
- 30fb23d4c31c
- 73428a792541
- 8e1ace8f77c6
- 989f7c061f35
- a230ea445788
tool_panel_section_label: Annotation
- name: funannotate_compare
owner: iuc
revisions:
- 0418d28136de
- 30f08d74024f
- 494f0bb4a993
- 563a19373357
- 57c6718cbfcc
- 5a5ae61da69c
- 7f8f38e27dee
- a7ce2601500c
- e94187d661df
tool_panel_section_label: Annotation
- name: funannotate_predict
owner: iuc
revisions:
- 1bc5a03faf2e
- 2bba2ff070d9
- 3cc3ef448854
- 4b96ced19f75
- 51b6ee65ef7f
- 7abc5f6dd595
- d6c7106b7b2e
- f31125bb85ea
- f77d7b685bb3
tool_panel_section_label: Annotation
- name: funannotate_sort
owner: iuc
revisions:
- 0346aad0d6dd
- 2b7d3bfd40d8
- 520e30695ec3
- 52af33194019
- 54961e026fe4
- b3cf4684e9c7
- d3af38b9c7e1
- d77fdcca400e
- fed64e676186
tool_panel_section_label: Annotation
- name: glimmer_acgt_content
owner: bgruening
revisions:
- 0d457c894b9f
tool_panel_section_label: Annotation
- name: glimmer_build_icm
owner: bgruening
revisions:
- cc51783dc93c
- e903e26c014d
tool_panel_section_label: Annotation
- name: glimmer_gbk_to_orf
owner: bgruening
revisions:
- 44dc09edd97b
tool_panel_section_label: Annotation
- name: glimmer_extract
owner: bgruening
revisions:
- 81d0b66990d2
tool_panel_section_label: Annotation
- name: glimmer_knowledge_based
owner: bgruening
revisions:
- 21d0af260f11
- ce89c473666d
tool_panel_section_label: Annotation
- name: glimmer_long_orfs
owner: bgruening
revisions:
- d5b3e82a979f
tool_panel_section_label: Annotation
- name: glimmer_not_knowledge_based
owner: bgruening
revisions:
- 73c58e2debd0
- 75cedbd8cf1b
tool_panel_section_label: Annotation
- name: goenrichment
owner: iuc
revisions:
- 2c7c9646ccf0
tool_panel_section_label: Annotation
- name: hicap
owner: iuc
revisions:
- 9b6fec5c9e43
tool_panel_section_label: Annotation
- name: hicstuff_pipeline
owner: iuc
revisions:
- 7ffc3748ffde
tool_panel_section_label: Annotation
- name: mist_dists
owner: iuc
revisions:
- 372a2ff0e14d
- 7fe9376e5a36
tool_panel_section_label: Annotation
- name: mist_call
owner: iuc
revisions:
- e4579b48d9ab
- faff357af604
tool_panel_section_label: Annotation
- name: mmseqs2_easy_taxonomy
owner: iuc
revisions:
- 7cbb57e5b351
tool_panel_section_label: Annotation
- name: mmseqs2_easy_search
owner: iuc
revisions:
- 099360265689
tool_panel_section_label: Annotation
- name: mmseqs2_easy_rbh
owner: iuc
revisions:
- 07f18a82aeea
tool_panel_section_label: Annotation
- name: mmseqs2_easy_linsearch
owner: iuc
revisions:
- 8dc2c623c210
tool_panel_section_label: Annotation
- name: mmseqs2_easy_cluster
owner: iuc
revisions:
- 59455fdec91a
tool_panel_section_label: Annotation
- name: psauron
owner: iuc
revisions:
- 085451872bcc
tool_panel_section_label: Annotation
- name: neighbors
owner: iuc
revisions:
- e06a5c9e97e2
tool_panel_section_label: Annotation
- name: sexdeterrmine
owner: iuc
revisions:
- a0c43c37902e
- cf3d9775d7ae
tool_panel_section_label: Annotation
- name: preseq_lc_extrap
owner: iuc
revisions:
- 969c776fca7e
tool_panel_section_label: FASTQ Quality Control
- name: preseq_c_curve
owner: iuc
revisions:
- d8b00ebb1567
tool_panel_section_label: FASTQ Quality Control
- name: mtnucratio
owner: iuc
revisions:
- bac089482cef
tool_panel_section_label: FASTQ Quality Control
- name: tb_profiler_profile
owner: iuc
revisions:
- 97a96d2ce8ea
tool_panel_section_label: Annotation
- name: telogator
owner: iuc
revisions:
- 4d30dc5744ba
tool_panel_section_label: Annotation
- name: telescope_assign
owner: iuc
revisions:
- 2d8c943f3e8d
tool_panel_section_label: Annotation
- name: snap
owner: iuc
revisions:
- d398b2e6b2ff
tool_panel_section_label: Annotation
- name: shorah_amplicon
owner: iuc
revisions:
- fc46049f6c27
tool_panel_section_label: Annotation
- name: scikit_bio_diversity_beta_diversity
owner: iuc
revisions:
- 024a9b86f853
tool_panel_section_label: Annotation
- name: remove_terminal_stop_codons
owner: iuc
revisions:
- 0290a7285026
tool_panel_section_label: Annotation
- name: plasclass
owner: iuc
revisions:
- 8a97b4648968
tool_panel_section_label: Annotation
- name: mykrobe_predict
owner: iuc
revisions:
- a2e3ad69ee23
tool_panel_section_label: Annotation
- name: meningotype
owner: iuc
revisions:
- 7f88b804fc0c
tool_panel_section_label: Annotation
- name: longdust
owner: iuc
revisions:
- 5507632fc743
tool_panel_section_label: Annotation
- name: liftoff
owner: iuc
revisions:
- 3693aa025049
tool_panel_section_label: Annotation
- name: tsebra
owner: iuc
revisions:
- 174c63ee0150
- 66310cfc17dd
- 681fd806acc4
- 69dcd75c0f5f
tool_panel_section_label: Annotation
- name: multigsea
owner: iuc
revisions:
- 28e29a3d0eda
- e08383c04167
- e48b10ce08b8
tool_panel_section_label: Annotation
- name: goseq
owner: iuc
revisions:
- 07f6832bdd4d
- 43798b4caee0
- 602de62d995b
- 67c29afac85f
- 783e8b70b047
- 8b3e3657034e
- 9d1256d9ef0b
- ab492df30cdf
- ae39895af5fe
- bbcf5f7f2af2
- ef2ad746b589
tool_panel_section_label: Annotation
- name: goslimmer
owner: iuc
revisions:
- de3e053bd6a5
tool_panel_section_label: Annotation
- name: gprofiler_convert
owner: iuc
revisions:
- 8ee097f1763d
- e219aca2f9fc
tool_panel_section_label: Annotation
- name: gprofiler_gost
owner: iuc
revisions:
- 51916b7025ba
- bf39cdd007f5
tool_panel_section_label: Annotation
- name: gprofiler_orth
owner: iuc
revisions:
- 727e7e114f9d
- 89cf0828d89d
tool_panel_section_label: Annotation
- name: gprofiler_random
owner: iuc
revisions:
- 39a063071667
- 7d18814397a7
tool_panel_section_label: Annotation
- name: gprofiler_snpense
owner: iuc
revisions:
- 74385d563652
- f83a08dff6f0
tool_panel_section_label: Annotation
- name: groot
owner: iuc
revisions:
- 4d5cf5a423d5
- c15e34e39e09
tool_panel_section_label: Annotation
- name: data_manager_groot_database_downloader
owner: iuc
revisions:
- 0c255951902a
- name: gubbins
owner: iuc
revisions:
- 637ec5d5368c
- 96e6283e4745
tool_panel_section_label: Annotation
- name: hamronize_summarize
owner: iuc
revisions:
- 6e2731b13533
- 88045b4d5597
- ef76d74a7171
- f8bcc852f6b3
tool_panel_section_label: Annotation
- name: hamronize_tool
owner: iuc
revisions:
- cbfa52c8f1ef
- d2590ecc4189
- e13b801516dd
tool_panel_section_label: Annotation
- name: hmmer3
owner: iuc
revisions:
- 54b6b4d0613a
- b5066aa77fea
tool_panel_section_label: Annotation
- name: hmmer_alimask
owner: iuc
revisions:
- 3734a6ad6363
- 92227c141aa5
- e3e5f208e93c
tool_panel_section_label: Annotation
- name: hmmer_hmmalign
owner: iuc
revisions:
- 71863d3bf721
- 9319e9ed248b
- d430c68061f7
tool_panel_section_label: Annotation
- name: hmmer_hmmbuild
owner: iuc
revisions:
- 4b996c837ec8
- 6846f8789e33
- 750269125dc9
- 923db0592cd0
tool_panel_section_label: Annotation
- name: hmmer_hmmconvert
owner: iuc
revisions:
- 649b289b4ccc
- a9dace1a1e36
- d20066f6566e
tool_panel_section_label: Annotation
- name: hmmer_hmmemit
owner: iuc
revisions:
- a6f41287ef2b
- be03abdc6451
- e9d622609fb5
tool_panel_section_label: Annotation
- name: hmmer_hmmfetch
owner: iuc
revisions:
- 01c842e297f5
- 1fca13688921
- 34b09461bf87
tool_panel_section_label: Annotation
- name: hmmer_hmmscan
owner: iuc
revisions:
- 347a1f935f4c
- 4a54e4c9188b
- be072920a53e
- be7097d6e3ff
- d92dd2f040cd
tool_panel_section_label: Annotation
- name: hmmer_hmmsearch
owner: iuc
revisions:
- 192a5046d9a2
- 3bb58751f4ee
- b774ae8e1609
- d753d9169482
- df7a52791be9
tool_panel_section_label: Annotation
- name: hmmer_jackhmmer
owner: iuc
revisions:
- 5113c71c7031
- 5cbef50c0c63
- 9fdeca68a6b5
- d9ce554da9b4
tool_panel_section_label: Annotation
- name: hmmer_nhmmer
owner: iuc
revisions:
- 2ec5e1ad1da7
- 314b778b8ffa
- 54b92ae4f75b
- b28e8ed99424
- b4fe2f703b4b
tool_panel_section_label: Annotation
- name: hmmer_nhmmscan
owner: iuc
revisions:
- 24a67ef302dd
- 2d406da5d34e
- e07176c0925d
- e7d281a290a6
- fb1305d0d1c6
tool_panel_section_label: Annotation
- name: hmmer_phmmer
owner: iuc
revisions:
- 37bcc9fb0bb1
- 8267b6ad0b45
- 8a791afd99fb
- 92ff5dcded40
- c1de05e20868
tool_panel_section_label: Annotation
- name: homer_annotatepeaks
owner: iuc
revisions:
- 35dc2f57d755
- 38d10a69748a
- adab852c8216
- dcd291aeb8a9
tool_panel_section_label: Annotation
- name: homer_findmotifs
owner: iuc
revisions:
- 453ebddf5bb2
tool_panel_section_label: Annotation
- name: homer_findmotifsgenome
owner: iuc
revisions:
- 081139509124
- 3126da33847c
- a8f207b43f64
- ec974e69e0b5
tool_panel_section_label: Annotation
- name: homer_gtf_to_annotations
owner: iuc
revisions:
- df55927535ed
tool_panel_section_label: Annotation
- name: homer_scanmotifgenomewide
owner: iuc
revisions:
- db456c398880
- f15794662a69
tool_panel_section_label: Annotation
- name: icescreen
owner: iuc
revisions:
- cca2a89210ae
tool_panel_section_label: Annotation
- name: integron_finder
owner: iuc
revisions:
- 1ae00120dd24
- 392f100eebcd
- 4768f7f8e93f
- 5429646e486d
- bfd290fe1588
tool_panel_section_label: Annotation
- name: interproscan
owner: bgruening
revisions:
- 0cd163d805e3
- 2e1cf7d85dbc
- 74810db257cc
- 98cafcbd2578
- c55643c3d813
- c762a1cd357e
tool_panel_section_label: Annotation
- name: isescan
owner: iuc
revisions:
- 19f42b3ea391
- 81539b9ae80a
- 9e776e7fab4f
tool_panel_section_label: Annotation
- name: jcvi_gff_stats
owner: iuc
revisions:
- 8cffbd184762
tool_panel_section_label: Annotation
- name: kobas
owner: iuc
revisions:
- 20f1b45dea63
- 83b998fa34ea
- b573ecb2ca66
tool_panel_section_label: Annotation
- name: kofamscan
owner: iuc
revisions:
- 24adf43898ec
- 2eb7932e91a3
- 8ec7636fa875
- 95c71179a054
tool_panel_section_label: Annotation
- name: krocus
owner: iuc
revisions:
- 6a97c3a857d2
tool_panel_section_label: Annotation
- name: legsta
owner: iuc
revisions:
- 0411fca1d681
- 579f1cabfe79
- 8860f7d69d2a
- b469f6d53d06
tool_panel_section_label: Annotation
- name: lorikeet_spoligotype
owner: iuc
revisions:
- da22667725c7
tool_panel_section_label: Annotation
- name: microsatbed
owner: iuc
revisions:
- 3f6e5c701945
- 5f8efb080f49
- dddd7ef63469
tool_panel_section_label: Annotation
- name: mirmachine
owner: iuc
revisions:
- 122bb8d553cb
- 85010d0eaa6c
- b0d80d456120
- c73e17fc5a77
- ef6ed729b69a
- f2e87c81497d
tool_panel_section_label: Annotation
- name: miniprot
owner: iuc
revisions:
- 00b22efdd100
- 20d725740701
- 6b20d051d0dc
- ce04c239454b
- d518cf04b55c
tool_panel_section_label: Annotation
- name: miniprot_index
owner: iuc
revisions:
- 438287deae4b
- 9e2772125405
- aeb4c76d007b
- b7b6b8188999
- d6a874226260
- e64445f727cd
tool_panel_section_label: Annotation
- name: mitos
owner: iuc
revisions:
- 52742626480e
- 8b08ea650060
- 96c36179210e
- c7553ba39670
- ca1142e5df8b
- e50a4f4542fc
- f20804c311de
tool_panel_section_label: Annotation
- name: mitos2
owner: iuc
revisions:
- 033755194fe9
- 59c8717f6925
- 624606f7c996
- 73b018c57e96
- 79e259afea34
- 80323066acd4
- af3c1dc1d141
- b815ec682418
- c8ac28e8ac44
- e95d52d295d7
tool_panel_section_label: Annotation
- name: mlst
owner: iuc
revisions:
- 1f5641a52664
- 31812e7a1315
- ded48b36f3b7
tool_panel_section_label: Annotation
- name: mmseqs2_taxonomy_assignment
owner: iuc
revisions:
- 876d26806584
- 9e47b28bff57
- bd5630d401cd
tool_panel_section_label: Annotation
- name: omark
owner: iuc
revisions:
- 0291e0e81551
- 2eebe7f521f3
- 6f570ba54b41
- ce13b4c42256
- ceb52582a5b1
tool_panel_section_label: Annotation
- name: data_manager_dada2
owner: iuc
revisions:
- 0181efacb40a
- 678176bff643
- f15270614b1b
- name: data_manager_omamer