-
Notifications
You must be signed in to change notification settings - Fork 1
/
graphclust.yml
1466 lines (1466 loc) · 60 KB
/
graphclust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
id: graphclust
items:
- id: get_data
items:
- id: toolshed.g2.bx.psu.edu/repos/iuc/ncbi_eutils_einfo/ncbi_eutils_einfo
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ncbi_acc_download/ncbi_acc_download
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ncbi_datasets/datasets_download_genome
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ncbi_eutils_elink/ncbi_eutils_elink
type: tool
- id: lftp
type: tool
- id: upload1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ncbi_eutils_esearch/ncbi_eutils_esearch
type: tool
- id: toolshed.g2.bx.psu.edu/repos/ecology/spocc_occ/spocc_occ
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ncbi_eutils_egquery/ncbi_eutils_egquery
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ncbi_datasets/datasets_download_gene
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ncbi_eutils_ecitmatch/ncbi_eutils_ecitmatch
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/enasearch_search_data/enasearch_search_data
type: tool
- id: toolshed.g2.bx.psu.edu/repos/earlhaminst/ensembl_get_sequences/get_sequences
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/sam_dump
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/enasearch_retrieve_data/enasearch_retrieve_data
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ncbi_eutils_efetch/ncbi_eutils_efetch
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ega_download_client/pyega3
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fastq_dump
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/enasearch_retrieve_analysis_report/enasearch_retrieve_analysis_report
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/uniprotxml_downloader/uniprotxml_downloader
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/enasearch_retrieve_run_report/enasearch_retrieve_run_report
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/sra_pileup
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ebi_search_rest_results/ebi_search_rest_results
type: tool
- id: microbial_import1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ebi_metagenomics_run_downloader/ebi_metagenomics_run_downloader
type: tool
- id: toolshed.g2.bx.psu.edu/repos/earlhaminst/ensembl_get_genetree/get_genetree
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/uniprot_rest_interface/uniprot
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/iedb_api/iedb_api
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ncbi_eutils_esummary/ncbi_eutils_esummary
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/enasearch_retrieve_taxons/enasearch_retrieve_taxons
type: tool
- id: toolshed.g2.bx.psu.edu/repos/earlhaminst/ensembl_get_feature_info/get_feature_info
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ncbi_eutils_epost/ncbi_eutils_epost
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/pysradb_search/pysradb_search
type: tool
name: Get Data
type: section
- id: send_data
items:
- id: toolshed.g2.bx.psu.edu/repos/iuc/ena_upload/ena_upload
type: tool
- id: send_to_cloud
type: tool
- id: export_remote
type: tool
- id: toolshed.g2.bx.psu.edu/repos/imgteam/curl_post/curl_post
type: tool
name: Send Data
type: section
- id: collection_operations
items:
- id: toolshed.g2.bx.psu.edu/repos/imgteam/unzip/unzip
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join
type: tool
- id: toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset
type: tool
name: Collection Operations
type: section
- id: general_text_label
text: General Text Tools
type: label
- id: text_manipulation
items:
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_uniq_tool
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/column_order_header_sort/column_order_header_sort
type: tool
- id: trimmer
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1
type: tool
- id: Show tail1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/tables_arithmetic_operations/tables_arithmetic_operations
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/gff3_rebase/gff3.rebase
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/coverage/gops_coverage_1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute
type: tool
- id: random_lines1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/join_files_on_column_fuzzy/join_files_on_column_fuzzy
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/complement/gops_complement_1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/intersect/gops_intersect_1
type: tool
- id: ChangeCase
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/prinseq/prinseq
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_text_file_with_recurring_lines
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/jq/jq
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1
type: tool
- id: addValue
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tac
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/add_value/addValue
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool
type: tool
- id: toolshed.g2.bx.psu.edu/repos/earlhaminst/replace_chromosome_names/replace_chromosome_names
type: tool
- id: wc_gnu
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/subtract/gops_subtract_1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line
type: tool
- id: toolshed.g2.bx.psu.edu/repos/imgteam/imagecoordinates_flipaxis/imagecoordinates_flipaxis
type: tool
- id: toolshed.g2.bx.psu.edu/repos/artbio/concatenate_multiple_datasets/cat_multi_datasets
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_multijoin_tool
type: tool
- id: toolshed.g2.bx.psu.edu/repos/kellrott/regex_replace/regex_replace
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column
type: tool
- id: Paste1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/dna_filtering/histogram_rpy
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/reshape2_melt/melt
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_rows
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/get_flanks/get_flanks1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/merge/gops_merge_1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_unfold_column_tool
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/merge_cols/mergeCols1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/flanking_features/flanking_features_1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/replace_column_by_key_value_file/replace_column_with_key_value_file
type: tool
- id: toolshed.g2.bx.psu.edu/repos/mvdbeek/add_input_name_as_column/addName
type: tool
- id: secure_hash_message_digest
type: tool
- id: Cut1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/add_line_to_file/add_line_to_file
type: tool
- id: createInterval
type: tool
- id: Show beginning1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/basecoverage/gops_basecoverage_1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/cluster/gops_cluster_1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/reshape2_cast/cast
type: tool
- id: cat1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/subtract_query/subtract_query1
type: tool
- id: Remove beginning1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/column_remove_by_header/column_remove_by_header
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/diff/diff
type: tool
- id: Convert characters1
type: tool
name: Text Manipulation
type: section
- id: filter_and_sort
items:
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/filter_by_fasta_ids/filter_by_fasta_ids
type: tool
- id: sort1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/xpath/xpath
type: tool
- id: toolshed.g2.bx.psu.edu/repos/peterjc/sample_seqs/sample_seqs
type: tool
- id: Grep1
type: tool
- id: Filter1
type: tool
- id: gff_filter_by_feature_count
type: tool
- id: Extract_features1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/peterjc/seq_filter_by_id/seq_filter_by_id
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/gffcompare/gffcompare
type: tool
- id: toolshed.g2.bx.psu.edu/repos/jjohnson/find_in_reference/find_in_reference
type: tool
- id: gff_filter_by_attribute
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/column_arrange_by_header/bg_column_arrange_by_header
type: tool
- id: gtf_filter_by_attribute_values_list
type: tool
name: Filter and Sort
type: section
- id: join__subtract_and_group
items:
- id: toolshed.g2.bx.psu.edu/repos/devteam/subtract/gops_subtract_1
type: tool
- id: comp1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/datamash_ops
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops
type: tool
- id: Grouping1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/datamash_reverse/datamash_reverse
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join
type: tool
- id: join1
type: tool
name: Join, Subtract and Group
type: section
- id: convert_formats
items:
- id: axt_to_lav_1
type: tool
- id: Sff_extractor
type: tool
- id: axt_to_fasta
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/biom_convert/biom_convert
type: tool
- id: gff2bed1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/graphicsmagick_image_convert/graphicsmagick_image_convert
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert_subset
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/crossmap_vcf/crossmap_vcf
type: tool
- id: toolshed.g2.bx.psu.edu/repos/ecology/ab1_fastq_converter/ab1_fastq_converter
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/crossmap_wig/crossmap_wig
type: tool
- id: toolshed.g2.bx.psu.edu/repos/cpt/cpt_convert_mga/edu.tamu.cpt2.util.mga_to_gff3
type: tool
- id: liftOver1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bioext_bam2msa/bioext_bam2msa
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/gffcompare_to_bed/gffcompare_to_bed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/idpquery/idpquery
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/mz_to_sqlite/mz_to_sqlite
type: tool
- id: bed2gff1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/intermine_galaxy_exchange/galaxy_intermine_exchange
type: tool
- id: MAF_To_Fasta1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/samtools_bam_to_cram/samtools_bam_to_cram
type: tool
- id: bed_to_bigBed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/cpt/cpt_fix_aragorn/edu.tamu.cpt.external.aragorn-gff3
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/thermo_raw_file_converter/thermo_raw_file_converter
type: tool
- id: wiggle2simple1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/interval2maf/Interval2Maf1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/msms_extractor/msms_extractor
type: tool
- id: lav_to_bed1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/idconvert/idconvert
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/resize_coordinate_window/resize_coordinate_window
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/crossmap_bam/crossmap_bam
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/compress_file/compress_file
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/bigwig_to_bedgraph/bigwig_to_bedgraph
type: tool
- id: wig_to_bigWig
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fastq/tabular_to_fastq
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/crossmap_region/crossmap_region
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/bed_to_protein_map/bed_to_protein_map
type: tool
- id: toolshed.g2.bx.psu.edu/repos/ecology/xmlstarlet/xmlstarlet
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/gfa_to_fa/gfa_to_fa
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bax2bam/bax2bam
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/crossmap_bed/crossmap_bed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ucsc_twobittofa/ucsc-twobittofa
type: tool
- id: axt_to_concat_fasta
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta
type: tool
- id: MAF_To_Interval1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/idconvert
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bam_to_scidx/bam_to_scidx
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/graphicsmagick_image_montage/graphicsmagick_image_montage
type: tool
- id: gtf2bedgraph
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/genebed_maf_to_fasta/GeneBed_Maf_Fasta2
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/map_peptides_to_bed/map_peptides_to_bed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab
type: tool
- id: MAF_To_BED1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/gtftobed12/gtftobed12
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/crossmap_gff/crossmap_gff
type: tool
name: Convert Formats
type: section
- id: fasta_fastq
items:
- id: toolshed.g2.bx.psu.edu/repos/iuc/bctools_convert_to_binary_barcode/bctools_convert_to_binary_barcode
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bbtools_bbmerge/bbtools_bbmerge
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_cutN
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_listhet
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_hety
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_seq
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_combiner/fastq_combiner
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_randbase
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bctools_extract_crosslinked_nucleotides/bctools_extract_crosslinked_nucleotides
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fasta_compute_length/fasta_compute_length
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bctools_extract_alignment_ends/bctools_extract_alignment_ends
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastqtofasta/fastq_to_fasta_python
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/short_reads_figure_score/quality_score_distribution
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/short_reads_trim_seq/trim_reads
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ucsc_fasplit/fasplit
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_count/umi_tools_count
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fasta_nucleotide_changer/cshl_fasta_nucleotides_changer
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bctools_remove_spurious_events/bctools_remove_spurious_events
type: tool
- id: toolshed.g2.bx.psu.edu/repos/mbernt/fasta_regex_finder/fasta_regex_finder
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bctools_merge_pcr_duplicates/bctools_merge_pcr_duplicates
type: tool
- id: toolshed.g2.bx.psu.edu/repos/cpt/cpt_fasta_remove_id/edu.tamu.cpt.fasta.remove_desc
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/adapter_removal/adapter_removal
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqcomplexity/seqcomplexity
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_mergefa
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_stats/fastq_stats
type: tool
- id: toolshed.g2.bx.psu.edu/repos/peterjc/align_back_trans/align_back_trans
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_quality_filter/cshl_fastq_quality_filter
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_dedup/umi_tools_dedup
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/flash/flash
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_to_fasta/cshl_fastq_to_fasta
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastx_artifacts_filter/cshl_fastx_artifacts_filter
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/fastqe/fastqe
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastx_barcode_splitter/cshl_fastx_barcode_splitter
type: tool
- id: toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/pear/iuc_pear
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_quality_boxplot/cshl_fastq_quality_boxplot
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastx_nucleotides_distribution/cshl_fastx_nucleotides_distribution
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_trimmer_by_quality/fastq_quality_trimmer
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_masker_by_quality/fastq_masker_by_quality
type: tool
- id: solid2fastq
type: tool
- id: solid_qual_boxplot
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_quality_converter/cshl_fastq_quality_converter
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/atactk_trim_adapters/atactk_trim_adapters
type: tool
- id: toolshed.g2.bx.psu.edu/repos/peterjc/seq_filter_by_mapping/seq_filter_by_mapping
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastx_trimmer/cshl_fastx_trimmer
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_filter/fastq_filter
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_fqchk
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_trimfq
type: tool
- id: toolshed.g2.bx.psu.edu/repos/gbcs-embl-heidelberg/je_clip/je_clip
type: tool
- id: toolshed.g2.bx.psu.edu/repos/gbcs-embl-heidelberg/je_demultiplex/je_demultiplex
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bctools_extract_barcodes/bctools_extract_barcodes
type: tool
- id: toolshed.g2.bx.psu.edu/repos/gbcs-embl-heidelberg/je_markdupes/je_markdupes
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/rcorrector/rcorrector
type: tool
- id: toolshed.g2.bx.psu.edu/repos/lparsons/fastq_join/fastq_join
type: tool
- id: toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic
type: tool
- id: toolshed.g2.bx.psu.edu/repos/gbcs-embl-heidelberg/je_demultiplex_illu/je_demultiplex_illu
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_splitter/fastq_paired_end_splitter
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/mqc/mqc
type: tool
- id: solid_qual_stats
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastx_quality_statistics/cshl_fastx_quality_statistics
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_mutfa
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastx_reverse_complement/cshl_fastx_reverse_complement
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_groomer/fastq_groomer
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqkit_stats/seqkit_stats
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fasta_formatter/cshl_fasta_formatter
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/sickle/sickle
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bbtools_bbduk/bbtools_bbduk
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastx_clipper/cshl_fastx_clipper
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_joiner/fastq_paired_end_joiner
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqkit_fx2tab/seqkit_fx2tab
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_extract/umi_tools_extract
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastx_collapser/cshl_fastx_collapser
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bctools_remove_tail/bctools_remove_tail
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_trimmer/fastq_trimmer
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/filtlong/filtlong
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_to_tabular/fastq_to_tabular
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_whitelist/umi_tools_whitelist
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fasta_concatenate_by_species/fasta_concatenate0
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_dropse
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_mergepe
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/lighter/lighter
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqkit_locate/seqkit_locate
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/exonerate/exonerate
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_group/umi_tools_group
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_manipulation/fastq_manipulation
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fastq/tabular_to_fastq
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/splitfasta/rbc_splitfasta
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_comp
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_deinterlacer/fastq_paired_end_deinterlacer
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/fastx_renamer/cshl_fastx_renamer
type: tool
name: FASTA/FASTQ
type: section
- id: sam_bam
items:
- id: toolshed.g2.bx.psu.edu/repos/devteam/sam_pileup/sam_pileup
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/samtools_ampliconclip/samtools_ampliconclip
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/samtool_filter2/samtool_filter2
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/samtools_bedcov/samtools_bedcov
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/tag_pileup_frequency/tag_pileup_frequency
type: tool
- id: toolshed.g2.bx.psu.edu/repos/lldelisle/revertr2orientationinbam/revertR2orientationInBam
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/samtools_markdup/samtools_markdup
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/samtools_sort/samtools_sort
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/samtools_slice_bam/samtools_slice_bam
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/qualimap_multi_bamqc/qualimap_multi_bamqc
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bamutil_diff/bamutil_diff
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_paired/bamtools_split_paired
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/pileup_interval/pileup_interval
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/samtools_calmd/samtools_calmd
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/sam_merge/sam_merge2
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/samtools_rmdup/samtools_rmdup
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/bamtools_split/bamtools_split
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/sam2interval/sam2interval
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/samtools_reheader/samtools_reheader
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_mapped/bamtools_split_mapped
type: tool
- id: toolshed.g2.bx.psu.edu/repos/fcaramia/varscan/varscan_mpileup
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/samtools_phase/samtools_phase
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/bamhash/bamhash
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/mosdepth/mosdepth
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/qualimap_bamqc/qualimap_bamqc
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/samtools_flagstat/samtools_flagstat
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_ref/bamtools_split_ref
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/samtools_split/samtools_split
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_tag/bamtools_split_tag
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/samtools_fixmate/samtools_fixmate
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view
type: tool
- id: toolshed.g2.bx.psu.edu/repos/fcaramia/varscan/varscan_somatic
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/samtools_depth/samtools_depth
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/samtools_mpileup/samtools_mpileup
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/samtools_coverage/samtools_coverage
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/pileup_parser/pileup_parser
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/samtools_merge/samtools_merge
type: tool
name: SAM/BAM
type: section
- id: bed
items:
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_overlapbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_subtractbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_jaccard
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_windowbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_mergebed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_sortbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_nucbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_flankbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_coveragebed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_shufflebed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bedpetobam
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_genomecoveragebed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_tagbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_annotatebed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bedtobam
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_getfastabed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_map
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_slopbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_maskfastabed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_groupbybed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_reldistbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_multiintersectbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_links
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_complementbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_mergebedgraph
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_genomecoveragebed_bedgraph
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_clusterbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtobed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_makewindowsbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bed12tobed6
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_unionbedgraph
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bedtoigv
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_closestbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_spacingbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedops_sortbed/bedops-sort-bed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_multicovtbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtofastq
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_genomecoveragebed_histogram
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_expandbed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_randombed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_fisher
type: tool
name: BED
type: section
- id: genomics_label
text: Common Genomics Tools
type: label
- id: operate_on_genomic_intervals
items:
- id: toolshed.g2.bx.psu.edu/repos/jjohnson/filter_bed_on_splice_junctions/filter_bed_on_splice_junctions
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/tbl2gff3/tbl2gff3
type: tool
- id: toolshed.g2.bx.psu.edu/repos/jjohnson/translate_bed_sequences/translate_bed_sequences
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/complement/gops_complement_1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/concat/gops_concat_1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/cluster/gops_cluster_1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/basecoverage/gops_basecoverage_1
type: tool
- id: toolshed.g2.bx.psu.edu/repos/galaxyp/translate_bed/translate_bed
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/annotation_profiler/Annotation_Profiler_0
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/join/gops_join_1
type: tool
- id: aggregate_scores_in_intervals2
type: tool
name: Operate on Genomic Intervals
type: section
- id: mapping
items:
- id: toolshed.g2.bx.psu.edu/repos/devteam/lastz/lastz_wrapper_2
type: tool
- id: srma_wrapper
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2
type: tool
- id: bfast_wrapper
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/bowtie_wrappers/bowtie_wrapper
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/bismark/bismark_deduplicate
type: tool
- id: mosaik_wrapper
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/segemehl/segemehl
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/star_fusion/star_fusion
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/graphmap_align/graphmap_align
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/bismark/bismark_methylation_extractor
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/bowtie_color_wrappers/bowtie_color_wrapper
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/lastz/lastz_d_wrapper
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/lastz_paired_reads/lastz_paired_reads_wrapper
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/megablast_wrapper/megablast_wrapper
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/megablast_xml_parser/megablast_xml_parser
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/winnowmap/winnowmap
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bbtools_bbmap/bbtools_bbmap
type: tool
- id: PerM
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/bioext_bealign/bioext_bealign
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/bismark/bismark_bowtie2
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/tophat2/tophat2
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/bismark/bismark_pretty_report
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/kma/kma_map
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/graphmap_overlap/graphmap_overlap
type: tool
name: Mapping
type: section
- id: rna_seq
items:
- id: blockbuster
type: tool
name: RNA-Seq
type: section
- id: rna_analysis
items:
- id: toolshed.g2.bx.psu.edu/repos/iuc/heinz/heinz_visualization
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/trinity_align_and_estimate_abundance/trinity_align_and_estimate_abundance
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/cuffmerge/cuffmerge
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/cuffquant/cuffquant
type: tool
- id: toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_junction_saturation
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/viennarna_rnaaliduplex/viennarna_rnaaliduplex
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/viennarna_rnadistance/viennarna_rnadistance
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/chira_map/chira_map
type: tool
- id: toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_insertion_profile
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/remurna/remurna
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/feelnc/feelnc
type: tool
- id: toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_duplication
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/dexseq/dexseq_count
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/trinity_samples_qccheck/trinity_samples_qccheck
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/heinz/heinz_bum
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/pizzly/pizzly
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/trinotate/trinotate
type: tool
- id: toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_RPKM_saturation
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/ribotaper/ribotaper_create_annotation
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/viennarna_rnaeval/viennarna_rnaeval
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/cmcv/cmcv
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/mirdeep2_quantifier/rbc_mirdeep2_quantifier
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/genomic_super_signature/genomic_super_signature
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/rnaz/rnaz
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/express/express
type: tool
- id: toolshed.g2.bx.psu.edu/repos/erasmus-medical-center/dr_disco/dr_disco_integrate
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/arriba/arriba
type: tool
- id: toolshed.g2.bx.psu.edu/repos/bgruening/sailfish/sailfish
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/deg_annotate/deg_annotate
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/kallisto_pseudo/kallisto_pseudo
type: tool
- id: toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_junction_annotation
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/selectsequencesfrommsa/selectsequencesfrommsa
type: tool
- id: toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/blockclust/blockclust
type: tool
- id: toolshed.g2.bx.psu.edu/repos/rnateam/viennarna_rnadpdist/viennarna_rnadpdist
type: tool
- id: toolshed.g2.bx.psu.edu/repos/devteam/cuffcompare/cuffcompare
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/trinity_super_transcripts/trinity_super_transcripts
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/sleuth/sleuth
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/cherri_train/cherri_train
type: tool
- id: toolshed.g2.bx.psu.edu/repos/jjohnson/rsem/extract_transcript_to_gene_map_from_trinity
type: tool
- id: toolshed.g2.bx.psu.edu/repos/iuc/tetoolkit_tetranscripts/tetoolkit_tetranscripts
type: tool