forked from usegalaxy-eu/usegalaxy-eu-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtools_iuc.yaml.lock
More file actions
3758 lines (3758 loc) · 76.7 KB
/
Copy pathtools_iuc.yaml.lock
File metadata and controls
3758 lines (3758 loc) · 76.7 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: true
install_resolver_dependencies: true
install_tool_dependencies: false
tools:
- name: bedtools
owner: iuc
revisions:
- 4f7a5ccd2ae9
- 6bb3cd018203
- 87ee588b3d45
- b8348686a0b9
- db1841942d2b
- e19bebe96cd2
tool_panel_section_label: Operate on Genomic Intervals
- name: collection_element_identifiers
owner: iuc
revisions:
- 220ee3518f19
tool_panel_section_label: Collection Operations
- name: crosscontamination_barcode_filter
owner: iuc
revisions:
- 582b7bd4ae4c
tool_panel_section_label: RNA Analysis
- name: deg_annotate
owner: iuc
revisions:
- b42373cddb77
- e98d4ab5b5bc
tool_panel_section_label: RNA Analysis
- name: raceid_inspectclusters
owner: iuc
revisions:
- '106718959281'
- 9fec5dd8fbb9
tool_panel_section_label: RNA Analysis
- name: raceid_filtnormconf
owner: iuc
revisions:
- 56a093c2a3f9
- 8dc8ff057b0f
tool_panel_section_label: RNA Analysis
- name: raceid_clustering
owner: iuc
revisions:
- 4ea021bd7513
- 528a43b1cbcf
tool_panel_section_label: RNA Analysis
- name: raceid_trajectory
owner: iuc
revisions:
- 87de515af823
- ff7cd3c7c1df
tool_panel_section_label: RNA Analysis
- name: raceid_inspecttrajectory
owner: iuc
revisions:
- 5156383d3a5d
- e0e9b24d76aa
tool_panel_section_label: RNA Analysis
- name: kallisto_quant
owner: iuc
revisions:
- 10c98fab6c5a
- 59a4c97b85d6
- b818b23df1e0
tool_panel_section_label: RNA Analysis
- name: slamdunk
owner: iuc
revisions:
- 24657d5edede
- 3fd7458bc861
tool_panel_section_label: RNA Analysis
- name: plasflow
owner: iuc
revisions:
- bda6012394f7
tool_panel_section_label: Metagenomic analyses
- name: ruvseq
owner: iuc
revisions:
- 61dffb20b6f9
tool_panel_section_label: RNA Analysis
- name: kallisto_pseudo
owner: iuc
revisions:
- 1c75aa5de15e
- 2953303df011
- 63f76b9f4ba7
tool_panel_section_label: RNA Analysis
- name: scpipe
owner: iuc
revisions:
- 4ec6717872b1
- 5c4bca9dd4a2
tool_panel_section_label: RNA Analysis
- name: seurat
owner: iuc
revisions:
- 8d8412d35247
tool_panel_section_label: RNA Analysis
- name: feelnc
owner: iuc
revisions:
- 17a77824c8e4
- b36afbb04e1c
tool_panel_section_label: RNA Analysis
- name: volcanoplot
owner: iuc
revisions:
- 59ebf2c42c0e
- 6d532d760950
- d1d39c72b755
tool_panel_section_label: Graph/Display Data
- name: nanoplot
owner: iuc
revisions:
- 4c172a4a4c9e
- db1eeffba23e
tool_panel_section_label: Graph/Display Data
- name: intervene
owner: iuc
revisions:
- f5fa293605ca
tool_panel_section_label: Graph/Display Data
- name: charts
owner: iuc
revisions:
- a87a3773d8ed
tool_panel_section_label: Graph/Display Data
- name: ggplot2_pca
owner: iuc
revisions:
- bb6ec8e5387f
- c21099566418
tool_panel_section_label: Graph/Display Data
- name: pygenometracks
owner: iuc
revisions:
- 0ea86f6bf2a1
- 2074627b0f83
tool_panel_section_label: Graph/Display Data
- name: ggplot2_heatmap
owner: iuc
revisions:
- f44dc95928aa
- fe8d4655ee10
tool_panel_section_label: Graph/Display Data
- name: ggplot2_violin
owner: iuc
revisions:
- 3a270cee1239
- 43778344b955
- a597d59df9ee
- d85535076554
tool_panel_section_label: Graph/Display Data
- name: ggplot2_heatmap2
owner: iuc
revisions:
- 4955e9bb96d1
- 76380bf74511
- ca7cb0eaad62
- cb04f3235a4e
tool_panel_section_label: Graph/Display Data
- name: ggplot2_point
owner: iuc
revisions:
- 1bff6682e780
- 46f91106439b
- 9a482995958c
- a78aa83f6625
tool_panel_section_label: Graph/Display Data
- name: ggplot2_histogram
owner: iuc
revisions:
- 63a595b451d1
- 9d060114554c
- d3d92fb20389
- f52035800250
tool_panel_section_label: Graph/Display Data
- name: tsne
owner: iuc
revisions:
- 53cfe6f313b3
tool_panel_section_label: Graph/Display Data
- name: idr
owner: iuc
revisions:
- d3ebbf39b1c5
tool_panel_section_label: RNA Analysis
- name: circos
owner: iuc
revisions:
- ae9994cf526f
- ef5f8bbf7730
tool_panel_section_label: Graph/Display Data
- name: ebi_search_rest_results
owner: iuc
revisions:
- 42d5e40fcd0b
- b6029f2c71cb
tool_panel_section_label: Get Data
- name: ebi_metagenomics_run_downloader
owner: iuc
revisions:
- a1ef6c88ee37
- e2e9fae080ad
tool_panel_section_label: Get Data
- name: column_maker
owner: devteam
revisions:
- 464b9305180e
- 626658afe4cb
tool_panel_section_label: Text Manipulation
- name: reshape2_melt
owner: iuc
revisions:
- 317ed0ee8bf2
tool_panel_section_label: Text Manipulation
- name: reshape2_cast
owner: iuc
revisions:
- d3b66a3a08ca
tool_panel_section_label: Text Manipulation
- name: sra_tools
owner: iuc
revisions:
- 1790dcf3c32d
- 26b7446bb17e
- 5534eb46de20
- 5e6237d58b0c
- b723c120161a
- c38286ea7047
tool_panel_section_label: Get Data
- name: codeml
owner: iuc
revisions:
- 961a712f9743
- ba71e26d5bdc
tool_panel_section_label: Evolution
- name: prinseq
owner: iuc
revisions:
- 02befcb391f5
- 6b865dde1baa
tool_panel_section_label: Text Manipulation
- name: add_value
owner: devteam
revisions:
- 745871c0b055
tool_panel_section_label: Text Manipulation
- name: dwt_var_perfeature
owner: devteam
revisions:
- 7a15159140d1
- cb1c59d69557
tool_panel_section_label: Statistics
- name: merge_cols
owner: devteam
revisions:
- f2aac0c5c60d
tool_panel_section_label: Text Manipulation
- name: jq
owner: iuc
revisions:
- 5ff75eb1a893
tool_panel_section_label: Text Manipulation
- name: column_maker
owner: devteam
revisions:
- 464b9305180e
- 626658afe4cb
tool_panel_section_label: Text Manipulation
- name: coverage
owner: devteam
revisions:
- 1e864693a1c0
- 4ef9819dc7fb
- bc9c66c1e9c9
tool_panel_section_label: Text Manipulation
- name: tables_arithmetic_operations
owner: devteam
revisions:
- 2e9f3b6ebfbc
- 82fa5062d611
tool_panel_section_label: Text Manipulation
- name: merge
owner: devteam
revisions:
- 0926c81f382c
- 381cd27bf67a
tool_panel_section_label: Text Manipulation
- name: intersect
owner: devteam
revisions:
- 33b3f3688db4
- 5b3c6135a982
- 8ddabc73af92
tool_panel_section_label: Text Manipulation
- name: flanking_features
owner: devteam
revisions:
- 8307665c4b6c
- a09d13b108fd
tool_panel_section_label: Text Manipulation
- name: join
owner: devteam
revisions:
- a10f49d9218a
- e56b47dce68a
- ffbd1de29c28
tool_panel_section_label: Text Manipulation
- name: cluster
owner: devteam
revisions:
- 05696474ee89
- 765ceb06c3e2
- d5677eecbad4
tool_panel_section_label: Text Manipulation
- name: get_flanks
owner: devteam
revisions:
- 077f404ae1bb
- 4cd116158aef
- a72f0decd7b3
tool_panel_section_label: Text Manipulation
- name: complement
owner: devteam
revisions:
- 38c8bb402872
- d958d5a0d1e8
- e0a23ab32d7f
tool_panel_section_label: Text Manipulation
- name: subtract
owner: devteam
revisions:
- 0145969324c4
- 5bc2dacbe729
- 7a2a604ae9c8
tool_panel_section_label: Text Manipulation
- name: basecoverage
owner: devteam
revisions:
- 0a3e3133b09d
- 1e6a9e97fa41
- 2cedec3759e4
tool_panel_section_label: Text Manipulation
- name: subtract_query
owner: devteam
revisions:
- 960d5d114184
- ff3901618482
tool_panel_section_label: Text Manipulation
- name: dna_filtering
owner: devteam
revisions:
- 549d2cb4c6f2
tool_panel_section_label: Text Manipulation
- name: collection_column_join
owner: iuc
revisions:
- 071084070619
- 58228a4d58fe
- 9c8536c7ed42
- dfde09461b1e
tool_panel_section_label: Join, Subtract and Group
- name: suite_datamash
owner: iuc
revisions:
- 2d85df079b20
- e4af96810404
- fbe724ced39e
tool_panel_section_label: Join, Subtract and Group
- name: subtract
owner: devteam
revisions:
- 0145969324c4
- 5bc2dacbe729
- 7a2a604ae9c8
tool_panel_section_label: Join, Subtract and Group
- name: bam_to_scidx
owner: iuc
revisions:
- 11fc60f0e942
- 408520e1ae1a
- b737f6d83f48
tool_panel_section_label: Convert Formats
- name: resize_coordinate_window
owner: iuc
revisions:
- 08b6255afde7
- 541f300f322d
- 9ba78e8985dc
tool_panel_section_label: Convert Formats
- name: gffread
owner: devteam
revisions:
- 0232f19d300f
- 9f243677c4c6
tool_panel_section_label: Convert Formats
- name: ucsc_twobittofa
owner: iuc
revisions:
- 356dc923f8d3
- 4a81db403bd9
- d025a40bbff1
tool_panel_section_label: Convert Formats
- name: tabular_to_fasta
owner: devteam
revisions:
- 0b4e36026794
tool_panel_section_label: FASTA/FASTQ manipulation
- name: filtlong
owner: iuc
revisions:
- 8880fb74ef56
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fasta_to_tabular
owner: devteam
revisions:
- 7e801ab2b70e
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastqtofasta
owner: devteam
revisions:
- 4844c1810c16
- 723b5b38d88a
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastq_to_fasta
owner: devteam
revisions:
- 02a5f43cd5d1
- 186b8d913e6c
- ce309f4ff17f
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastp
owner: iuc
revisions:
- 3e2551a37201
- 415fd81b85d3
- 6c2351178f8d
- 988729b728f0
- a935cbdf1c0e
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fasta_stats
owner: iuc
revisions:
- 9c620a950d3a
tool_panel_section_label: FASTA/FASTQ manipulation
- name: length_and_gc_content
owner: iuc
revisions:
- 2ca1baabdae0
- f088370d2a3c
tool_panel_section_label: Extract Features
- name: extract_genomic_dna
owner: iuc
revisions:
- 8dd8e89c0603
- c8467246b57e
- e400dcbc60d0
tool_panel_section_label: Other Tools
- name: concat
owner: devteam
revisions:
- 35a89f8cc96e
- d491589307e7
tool_panel_section_label: Operate on Genomic Intervals
- name: complement
owner: devteam
revisions:
- 38c8bb402872
- d958d5a0d1e8
- e0a23ab32d7f
tool_panel_section_label: Operate on Genomic Intervals
- name: cluster
owner: devteam
revisions:
- 05696474ee89
- 765ceb06c3e2
- d5677eecbad4
tool_panel_section_label: Operate on Genomic Intervals
- name: basecoverage
owner: devteam
revisions:
- 0a3e3133b09d
- 1e6a9e97fa41
- 2cedec3759e4
tool_panel_section_label: Operate on Genomic Intervals
- name: annotation_profiler
owner: devteam
revisions:
- 3b33da018e74
tool_panel_section_label: Operate on Genomic Intervals
- name: t_test_two_samples
owner: devteam
revisions:
- c2ffc9885b5a
- e6a85a9297b3
tool_panel_section_label: Statistics
- name: plot_from_lda
owner: devteam
revisions:
- 08affc5d2aef
tool_panel_section_label: Statistics
- name: mine
owner: devteam
revisions:
- 5e2c89443c44
tool_panel_section_label: Statistics
- name: lda_analysis
owner: devteam
revisions:
- f0b6217f4a0c
tool_panel_section_label: Statistics
- name: generate_pc_lda_matrix
owner: devteam
revisions:
- 04cdbd00dcec
tool_panel_section_label: Statistics
- name: count_gff_features
owner: devteam
revisions:
- 188392a0d0a8
- fabda887a71f
tool_panel_section_label: Statistics
- name: correlation
owner: devteam
revisions:
- 24e01abf9e34
tool_panel_section_label: Statistics
- name: fasta_nucleotide_color_plot
owner: iuc
revisions:
- 0fba45ac3987
- 980917b09eb8
- e4b5401adcec
tool_panel_section_label: Graph/Display Data
- name: jbrowse
owner: iuc
revisions:
- 1c718d8b3532
- 1cfc579079a6
- 2c9e5136b416
- 558d652cd681
- 5f70e7fe6077
- 69c5e9c0add0
- 8f33c9fbc119
- d0743cb18ed8
- dba3c47e1798
- fa30df9b79c2
tool_panel_section_label: Graph/Display Data
- name: ucsc_custom_track
owner: devteam
revisions:
- 760f588e8a26
tool_panel_section_label: Graph/Display Data
- name: scatterplot
owner: devteam
revisions:
- d243056b22ed
- efda9a4a50e7
tool_panel_section_label: Graph/Display Data
- name: histogram
owner: devteam
revisions:
- cdb9e89e2970
tool_panel_section_label: Graph/Display Data
- name: gmaj
owner: devteam
revisions:
- 2cd5ee197ec7
tool_panel_section_label: Graph/Display Data
- name: xy_plot
owner: devteam
revisions:
- 23657fcaaa5c
- 319fa5a9fc1b
- ecb437f1d298
tool_panel_section_label: Graph/Display Data
- name: featurecounter
owner: devteam
revisions:
- ac6218e2b686
tool_panel_section_label: Regional Variation
- name: indels_3way
owner: devteam
revisions:
- 5ad24b81dd10
tool_panel_section_label: Regional Variation
- name: draw_stacked_barplots
owner: devteam
revisions:
- e997b710e38a
tool_panel_section_label: Regional Variation
- name: delete_overlapping_indels
owner: devteam
revisions:
- f16000dc644b
tool_panel_section_label: Regional Variation
- name: compute_motifs_frequency
owner: devteam
revisions:
- 1f8ee7f9701b
tool_panel_section_label: Regional Variation
- name: compute_motif_frequencies_for_all_motifs
owner: devteam
revisions:
- 5319efa51514
tool_panel_section_label: Regional Variation
- name: categorize_elements_satisfying_criteria
owner: devteam
revisions:
- 586c1f0e1515
tool_panel_section_label: Regional Variation
- name: best_regression_subsets
owner: devteam
revisions:
- 4f33ec73e445
- e769cde223a5
tool_panel_section_label: Statistics
- name: principal_component_analysis
owner: devteam
revisions:
- f568051cdf2e
tool_panel_section_label: Statistics
- name: kernel_principal_component_analysis
owner: devteam
revisions:
- 3d58aa83e4a3
tool_panel_section_label: Statistics
- name: kernel_canonical_correlation_analysis
owner: devteam
revisions:
- 5ce5a2adb875
tool_panel_section_label: Statistics
- name: canonical_correlation_analysis
owner: devteam
revisions:
- 9bc0c48a027f
tool_panel_section_label: Statistics
- name: mutate_snp_codon
owner: devteam
revisions:
- 8f0af7251167
tool_panel_section_label: Evolution
- name: iqtree
owner: iuc
revisions:
- 05ee0a74faef
- 288db50d1fb9
- d1c340a5664b
tool_panel_section_label: Evolution
- name: structure
owner: iuc
revisions:
- 0080ad37f8a0
- 64e681a1cad5
tool_panel_section_label: Evolution
- name: meme_meme
owner: iuc
revisions:
- 57e5d9382f36
- d20e391eb22f
- e8b209806a20
tool_panel_section_label: Motif Tools
- name: meme_fimo
owner: iuc
revisions:
- 40b8472e91ca
- 4eb02864e5df
- c1a9a297ba8b
- fd522a964017
tool_panel_section_label: Motif Tools
- name: meme_psp_gen
owner: iuc
revisions:
- 793225b11202
- a0fa4efeeee3
- b48e673af4e8
tool_panel_section_label: Motif Tools
- name: meme_chip
owner: iuc
revisions:
- 091a9d638d78
- 6095db402811
tool_panel_section_label: Motif Tools
- name: weblogo3
owner: devteam
revisions:
- c1a9e644d580
- dc25a5169a91
tool_panel_section_label: Motif Tools
- name: mummer_mummer
owner: iuc
revisions:
- 26f2cc1cc1e9
- 48badcd29c5d
tool_panel_section_label: Multiple Alignments
- name: mummer_show_coords
owner: iuc
revisions:
- f8734af48332
tool_panel_section_label: Multiple Alignments
- name: mummer_dnadiff
owner: iuc
revisions:
- deacc6b40cc0
tool_panel_section_label: Multiple Alignments
- name: mummer_nucmer
owner: iuc
revisions:
- a18fb4f826fc
tool_panel_section_label: Multiple Alignments
- name: mummer_delta_filter
owner: iuc
revisions:
- 502018997bae
tool_panel_section_label: Multiple Alignments
- name: mummer_mummerplot
owner: iuc
revisions:
- e8c60daa41e0
tool_panel_section_label: Multiple Alignments
- name: msaboot
owner: iuc
revisions:
- 48b414c7d38e
- 99f8b4e631e5
tool_panel_section_label: Multiple Alignments
- name: clustalw
owner: devteam
revisions:
- d6694932c5e0
- f8aad74cc8c1
tool_panel_section_label: Multiple Alignments
- name: bio_hansel
owner: iuc
revisions:
- e3698ac146d7
tool_panel_section_label: Metagenomic analyses
- name: vegan_diversity
owner: iuc
revisions:
- a2c047a2c380
- c58e19ff504a
- db56c8e79b1e
tool_panel_section_label: Metagenomic analyses
- name: vegan_fisher_alpha
owner: iuc
revisions:
- a5a453f92273
- d6b92ca3a9a1
- f9966e11885b
tool_panel_section_label: Metagenomic analyses
- name: vegan_rarefaction
owner: iuc
revisions:
- 3d1d965b6423
- b0d5976540e3
- dd2705a31239
tool_panel_section_label: Metagenomic analyses
- name: vsearch
owner: iuc
revisions:
- 576963db5f1b
- b3c7199d8786
- fae6527990af
tool_panel_section_label: Metagenomic analyses
- name: khmer_filter_abundance
owner: iuc
revisions:
- a4970dfc331c
- dbe616d126b1
tool_panel_section_label: Metagenomic analyses
- name: khmer_filter_below_abundance_cutoff
owner: iuc
revisions:
- bf716cfc3225
- d9cc87dfec6e
tool_panel_section_label: Metagenomic analyses
- name: khmer_extract_partitions
owner: iuc
revisions:
- 518ba4a77274
- 7d8138b4a593
tool_panel_section_label: Metagenomic analyses
- name: khmer_abundance_distribution
owner: iuc
revisions:
- 5a97c5bbd51e
- a02efb62565b
tool_panel_section_label: Metagenomic analyses
- name: khmer_count_median
owner: iuc
revisions:
- 5efc5f21d0c1
- 7aa811aa3b93
tool_panel_section_label: Metagenomic analyses
- name: khmer_partition
owner: iuc
revisions:
- 766ec3dad7ff
- c393687bd857
tool_panel_section_label: Metagenomic analyses
- name: khmer_normalize_by_median
owner: iuc
revisions:
- bfd859f04a89
- f0290a079720
tool_panel_section_label: Metagenomic analyses
- name: khmer_abundance_distribution_single
owner: iuc
revisions:
- 09c6a051c5fd
- 792d520ba676
tool_panel_section_label: Metagenomic analyses
- name: t2t_report
owner: devteam
revisions:
- 592acb9505fc
tool_panel_section_label: Metagenomic analyses
- name: t2ps
owner: devteam
revisions:
- 4d9910e996f7
tool_panel_section_label: Metagenomic analyses
- name: poisson2test
owner: devteam
revisions:
- 5ff18ec88181
tool_panel_section_label: Metagenomic analyses
- name: lca_wrapper
owner: devteam
revisions:
- 33e8ed5a4601
tool_panel_section_label: Metagenomic analyses
- name: gi2taxonomy
owner: devteam
revisions:
- 7b1b03c4465d
tool_panel_section_label: Metagenomic analyses
- name: find_diag_hits
owner: devteam
revisions:
- acf51ff24c7d
tool_panel_section_label: Metagenomic analyses
- name: fasta_merge_files_and_filter_unique_sequences
owner: galaxyp
revisions:
- 2904d46167da
- 650d553c1fda
- 9ad0d336e5ed
tool_panel_section_label: FASTA/FASTQ manipulation
- name: sickle
owner: iuc
revisions:
- 3905ccd5c631
- edaa8572219d
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastq_paired_end_interlacer
owner: devteam
revisions:
- b89bdf6acb6c
- ec6ddf449651
- ef49268ee579
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastq_paired_end_joiner
owner: devteam
revisions:
- 2793d1d765b9
- 6a7f5da7c76d
- 822cc1e6274e
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fasta_compute_length
owner: devteam
revisions:
- d8cc2c8eef14
- de2db1bdfbf8
tool_panel_section_label: FASTA/FASTQ manipulation
- name: pear
owner: iuc
revisions:
- 240f611a46f3
- 2f804526f5fd
- 581e52f03c5d
tool_panel_section_label: FASTA/FASTQ manipulation
- name: flash
owner: iuc
revisions:
- 13e98e2709b8
- dce033fd3c80
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastx_artifacts_filter
owner: devteam
revisions:
- 09070cacefd8
- 567d5b3c52b1
- dd3737e40dce
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastx_barcode_splitter
owner: devteam
revisions:
- 015dc921d814
- 4bedca26c133
- 8abdedf55101
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastx_clipper
owner: devteam
revisions:
- 736b8f6ee456
- 85263dc18cec
- bdf1ce174e39
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastx_nucleotides_distribution
owner: devteam
revisions:
- 21796f46e0ba
- 63d6e2daad48
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fasta_filter_by_length
owner: devteam
revisions:
- 2fd6033d0e9c
- c8cd0a03db49
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fasta_concatenate_by_species
owner: devteam
revisions:
- 717aee069681
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastx_collapser
owner: devteam
revisions:
- 421f0af4ee95
- 7ce1891db6f5
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fasta_nucleotide_changer
owner: devteam
revisions:
- 091ca73f5804
- cc9a18dd41c9
- f81d4362b6c1
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fasta_formatter
owner: devteam
revisions:
- 859422bcb689
- 9457a20156db
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastqc
owner: devteam
revisions:
- 3e1cdf5406db
- 484e86282f4b
- c15237684a01
- e28c965eeed4
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastq_paired_end_joiner
owner: devteam
revisions:
- 2793d1d765b9
- 6a7f5da7c76d
- 822cc1e6274e
tool_panel_section_label: FASTA/FASTQ manipulation
- name: short_reads_trim_seq
owner: devteam
revisions:
- 25e6fe525306
tool_panel_section_label: FASTA/FASTQ manipulation
- name: short_reads_figure_score
owner: devteam
revisions:
- b52b9c7aabd9
tool_panel_section_label: FASTA/FASTQ manipulation
- name: tabular_to_fastq
owner: devteam
revisions:
- 92034dcbb40a
- b8cdc0507586
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastq_trimmer_by_quality
owner: devteam
revisions:
- 04a609b0fdf6
- 25c24379693a
- c64d534a763c
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastq_trimmer
owner: devteam
revisions:
- 2d0d13b0b0f1
- e0cfb5a703ce
tool_panel_section_label: FASTA/FASTQ manipulation
- name: fastq_to_tabular
owner: devteam
revisions:
- 7da7ddea4425
- ccf4e1d1fcbe
tool_panel_section_label: FASTA/FASTQ manipulation