-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathautomated_tool_installation_log.tsv
We can't make this file beautiful and searchable because it's too large.
3217 lines (3217 loc) · 646 KB
/
automated_tool_installation_log.tsv
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
Category Build Num. Date (AEST) Name New Tool Status Owner Installed Revision Requested Revision Failing Step Staging tests passed Production tests passed Section Label Tool Shed URL Log Path
Update 26 04/10/20 15:58:55 artic_minion False Installed iuc 94020e19b46c 94020e19b46c Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 15:59:38 crossmap_bam False Installed iuc 60ca8d013263 60ca8d013263 Convert Formats toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:00:20 crossmap_bed False Installed iuc cdbdce00f5f6 cdbdce00f5f6 Convert Formats toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:01:04 crossmap_gff False Installed iuc 88d180fb6d67 88d180fb6d67 Convert Formats toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:01:39 crossmap_vcf False Installed iuc b21851ddcc79 b21851ddcc79 Convert Formats toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:02:11 crossmap_wig False Installed iuc 5f893ed3c5ed 5f893ed3c5ed Convert Formats toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:02:30 filter_tabular False Errored iuc 9cc411a62277 9cc411a62277 Staging Installation Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:02:49 keras_batch_models False Errored bgruening 508ce0649bec 508ce0649bec Staging Installation Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:03:08 keras_model_builder False Errored bgruening 053570bac5ea 053570bac5ea Staging Installation Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:03:26 keras_model_config False Errored bgruening 2a853a2d2e72 2a853a2d2e72 Staging Installation Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:03:45 keras_train_and_eval False Errored bgruening f1b9a42d6809 f1b9a42d6809 Staging Installation Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:04:04 ml_visualization_ex False Errored bgruening 05143043ca13 05143043ca13 Staging Installation Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:04:23 model_prediction False Errored bgruening 83228baae3c5 83228baae3c5 Staging Installation Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:04:56 ncbi_eutils_ecitmatch False Installed iuc b00212deaea7 b00212deaea7 Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:06:10 ncbi_eutils_efetch False Installed iuc c09fcbe4b16a c09fcbe4b16a Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:06:57 ncbi_eutils_egquery False Installed iuc d1789b4821fc d1789b4821fc Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:07:40 ncbi_eutils_einfo False Installed iuc cd5a82a16bbf cd5a82a16bbf Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:08:29 ncbi_eutils_elink False Installed iuc 55b3067762f9 55b3067762f9 Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:09:17 ncbi_eutils_epost False Installed iuc ae3a5d753d42 ae3a5d753d42 Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:10:02 ncbi_eutils_esearch False Installed iuc e267701c187b e267701c187b Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:10:50 ncbi_eutils_esummary False Installed iuc 254f40d3ae2b 254f40d3ae2b Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:11:32 query_tabular False Installed iuc 2e8f945f7285 2e8f945f7285 Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:12:10 salmon False Installed bgruening cc05793bb896 cc05793bb896 RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:12:46 salmonquantmerge False Installed bgruening cfb0849582e1 cfb0849582e1 RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:13:48 scipy_sparse False Installed bgruening ecd247e1ea9c ecd247e1ea9c Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:14:31 seurat False Installed iuc 4c139a9415d7 4c139a9415d7 RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:15:13 sina False Installed iuc 482052b30b78 482052b30b78 Multiple Alignments toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:15:54 sklearn_build_pipeline False Installed bgruening 9c3e1d3235c8 9c3e1d3235c8 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:16:35 sklearn_clf_metrics False Installed bgruening adc6137e7c73 adc6137e7c73 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:17:16 sklearn_data_preprocess False Installed bgruening eb9da067ab26 eb9da067ab26 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:17:54 sklearn_discriminant_classifier False Installed bgruening 2d032cff49eb 2d032cff49eb Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:18:37 sklearn_ensemble False Installed bgruening 841a6cc5fc58 841a6cc5fc58 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:19:17 sklearn_estimator_attributes False Installed bgruening 07843f917990 07843f917990 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:19:55 sklearn_feature_selection False Installed bgruening 6d21b03e00a1 6d21b03e00a1 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:20:36 sklearn_fitted_model_eval False Installed bgruening c374098d4f5c c374098d4f5c Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:21:18 sklearn_generalized_linear False Installed bgruening 40f4447733b2 40f4447733b2 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:22:01 sklearn_model_fit False Installed bgruening 1c25f305db70 1c25f305db70 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:22:41 sklearn_model_validation False Installed bgruening bfc7bdfcb423 bfc7bdfcb423 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:23:20 sklearn_nn_classifier False Installed bgruening cd02bf168d23 cd02bf168d23 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:24:25 sklearn_numeric_clustering False Installed bgruening ad7e0b4291ee ad7e0b4291ee Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:25:06 sklearn_pairwise_metrics False Installed bgruening 226524df8c6c 226524df8c6c Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:25:47 sklearn_regression_metrics False Installed bgruening 7d98dfb04d27 7d98dfb04d27 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:26:13 sklearn_sample_generator False Shed-tools error bgruening 7068b5fcd623 7068b5fcd623 Production Installation Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:26:34 sklearn_searchcv False Shed-tools error bgruening e5a5ad882f1f e5a5ad882f1f Production Installation Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:27:03 sklearn_stacking_ensemble_models False Shed-tools error bgruening b78007bf1cb8 b78007bf1cb8 Production Installation Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:27:25 sklearn_svm_classifier False Shed-tools error bgruening 02d2be90dedb 02d2be90dedb Production Installation Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:27:49 sklearn_train_test_eval False Shed-tools error bgruening e03a58b31c12 e03a58b31c12 Production Installation Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:28:08 sklearn_train_test_split False Errored bgruening ce2fd1edbc6e ce2fd1edbc6e Staging Installation Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 26 04/10/20 16:28:20 sqlite_to_tabular False Errored iuc dfe38b7c34ed dfe38b7c34ed Staging Installation Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Install 52 04/10/20 16:34:35 filter_tabular False Installed iuc 9cc411a62277 9cc411a62277 Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Install 52 04/10/20 16:35:12 keras_batch_models False Installed bgruening 508ce0649bec 508ce0649bec Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Install 52 04/10/20 16:35:57 keras_model_builder False Installed bgruening 053570bac5ea 053570bac5ea Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Install 52 04/10/20 16:36:45 keras_model_config False Installed bgruening 2a853a2d2e72 2a853a2d2e72 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Install 52 04/10/20 16:37:25 keras_train_and_eval False Installed bgruening f1b9a42d6809 f1b9a42d6809 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Install 52 04/10/20 16:38:03 ml_visualization_ex False Installed bgruening 05143043ca13 05143043ca13 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Install 52 04/10/20 16:38:41 model_prediction False Installed bgruening 83228baae3c5 83228baae3c5 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Install 52 04/10/20 16:39:18 sklearn_sample_generator False Installed bgruening 7068b5fcd623 7068b5fcd623 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Install 52 04/10/20 16:39:52 sklearn_searchcv False Installed bgruening e5a5ad882f1f e5a5ad882f1f Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Install 52 04/10/20 16:40:37 sklearn_stacking_ensemble_models False Installed bgruening b78007bf1cb8 b78007bf1cb8 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Install 52 04/10/20 16:41:11 sklearn_svm_classifier False Installed bgruening 02d2be90dedb 02d2be90dedb Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Install 52 04/10/20 16:41:46 sklearn_train_test_eval False Installed bgruening e03a58b31c12 e03a58b31c12 Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Install 52 04/10/20 16:42:27 sklearn_train_test_split False Installed bgruening ce2fd1edbc6e ce2fd1edbc6e Statistics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Install 52 04/10/20 16:43:07 sqlite_to_tabular False Installed iuc dfe38b7c34ed dfe38b7c34ed Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/install_build_/install_log.txt
Update 27 10/10/20 14:30:55 artic_minion False Installed iuc a346730e5552 a346730e5552 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 27 10/10/20 14:31:40 chembl False Installed bgruening a57de37f12c2 a57de37f12c2 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 27 10/10/20 14:32:24 kc_align False Installed iuc 1c65ddbaeefa 1c65ddbaeefa Multiple Alignments toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 27 10/10/20 14:33:00 lofreq_alnqual False Installed iuc 09d6e4693887 09d6e4693887 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 27 10/10/20 14:33:46 lofreq_call False Installed iuc e1461b5c52a0 e1461b5c52a0 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 27 10/10/20 14:34:21 lofreq_filter False Installed iuc 7dfca164d2e3 7dfca164d2e3 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 27 10/10/20 14:34:58 lofreq_indelqual False Installed iuc 426d707dfc47 426d707dfc47 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 27 10/10/20 14:35:32 lofreq_viterbi False Installed iuc aa35ee7f3ab2 aa35ee7f3ab2 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 27 10/10/20 14:36:17 multiqc False Installed iuc 5e33b465d8d5 5e33b465d8d5 Quality Control toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 27 10/10/20 14:37:02 tetoolkit_tetranscripts False Installed iuc 313414e9abcf 313414e9abcf RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 27 10/10/20 14:37:49 text_processing False Installed bgruening ddf54b12c295 ddf54b12c295 Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 27 10/10/20 14:38:33 transdecoder False Installed iuc c6334cb383ff c6334cb383ff RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:33:42 chembl False Errored bgruening 1d6fb7967ae9 1d6fb7967ae9 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:34:26 colibread_lordec False Installed iuc 6322de5e24e5 6322de5e24e5 Assembly toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:35:05 kc_align False Installed iuc 0c0288a9d92c 0c0288a9d92c Multiple Alignments toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:35:27 medaka_consensus False Errored iuc 22f6a0e7424f 22f6a0e7424f Staging Installation Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:35:49 medaka_consensus_pipeline False Errored iuc b35de691c42c b35de691c42c Staging Installation Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:36:29 medaka_variant False Installed iuc 19f3b583a9b3 19f3b583a9b3 Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:36:52 medaka_variant_pipeline False Errored iuc efca385ce679 efca385ce679 Staging Installation Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:37:29 mummer_delta_filter False Installed iuc b3acbb3a6af0 b3acbb3a6af0 Multiple Alignments toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:38:06 mummer_dnadiff False Installed iuc 60698466facd 60698466facd Multiple Alignments toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:38:41 mummer_mummer False Installed iuc 48823c9635a4 48823c9635a4 Multiple Alignments toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:39:19 mummer_mummerplot False Installed iuc ebe3b0f84de9 ebe3b0f84de9 Multiple Alignments toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:39:56 mummer_nucmer False Installed iuc 636b049e6141 636b049e6141 Multiple Alignments toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:40:31 mummer_show_coords False Installed iuc 959c1f8dae95 959c1f8dae95 Multiple Alignments toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 28 17/10/20 14:41:12 scpipe False Installed iuc 3ffca09599ca 3ffca09599ca RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:36:49 chembl False Installed bgruening 1d6fb7967ae9 1d6fb7967ae9 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:37:21 medaka_consensus False Installed iuc 22f6a0e7424f 22f6a0e7424f Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:37:54 medaka_consensus_pipeline False Installed iuc b35de691c42c b35de691c42c Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:38:25 medaka_variant_pipeline False Installed iuc efca385ce679 efca385ce679 Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:38:59 openbabel_addh False Installed bgruening f697d9601273 f697d9601273 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:39:21 openbabel_change_title False Errored bgruening 2cd8aee0d830 2cd8aee0d830 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:39:43 openbabel_compound_convert False Errored bgruening 1400d1977e7b 1400d1977e7b Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:40:04 openbabel_filter False Errored bgruening 8ee975c49a3d 8ee975c49a3d Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:40:24 openbabel_genprop False Errored bgruening 417845394cdf 417845394cdf Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:40:46 openbabel_obgrep False Errored bgruening 2912ebf12ef2 2912ebf12ef2 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:41:07 openbabel_remduplicates False Errored bgruening 12aca74f07d7 12aca74f07d7 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:41:42 openbabel_remions False Installed bgruening 3153b6f3087c 3153b6f3087c ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:42:19 openbabel_remove_protonation_state False Installed bgruening b578d0c101cd b578d0c101cd ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:42:41 openbabel_remsmall False Errored bgruening e94b2920d4e4 e94b2920d4e4 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:43:03 openbabel_spectrophore_search False Errored bgruening 9ce9f996b941 9ce9f996b941 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:43:23 openbabel_structure_distance_finder False Errored bgruening 49242402887b 49242402887b Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:43:44 openbabel_subsearch False Errored bgruening bd678d7db2ae bd678d7db2ae Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:44:06 openbabel_svg_depiction False Errored bgruening a66827fc370d a66827fc370d Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 29 24/10/20 14:44:27 prepare_ligands_for_docking False Errored bgruening a5f4b80e6769 a5f4b80e6769 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:04:38 flye False Shed-tools error bgruening de24438c9988 Staging Installation Assembly toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:04:40 genebed_maf_to_fasta False Shed-tools error iuc 020c78e91cc5 Staging Installation Convert Formats toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:04:42 hisat2 False Shed-tools error iuc a86e80d3c09c Staging Installation Mapping toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:04:44 hyphy_absrel False Shed-tools error iuc 0b58ef9e84b2 Staging Installation Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:04:47 hyphy_bgm False Shed-tools error iuc 26ad9a6b1293 Staging Installation Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:04:49 hyphy_busted False Shed-tools error iuc c92d5ec5d8d7 Staging Installation Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:04:51 hyphy_fade False Shed-tools error iuc 7dbcce65a8ff Staging Installation Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:04:53 hyphy_fel False Shed-tools error iuc 2e5ab7526bd4 Staging Installation Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:04:56 hyphy_fubar False Shed-tools error iuc 3db56014322f Staging Installation Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:04:58 hyphy_gard False Shed-tools error iuc 42efcb0955e6 Staging Installation Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:00 hyphy_meme False Shed-tools error iuc 5b380f4dbf1c Staging Installation Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:02 hyphy_prime False Shed-tools error iuc 1d9d3c6bc246 Staging Installation Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:05 hyphy_relax False Shed-tools error iuc ea64cc9a06e4 Staging Installation Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:07 hyphy_slac False Shed-tools error iuc dc9e52b2d0e1 Staging Installation Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:09 hyphy_sm19 False Shed-tools error iuc 2126c9e28ce6 Staging Installation Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:11 idr_download_by_ids False Shed-tools error iuc f067504aa92a Staging Installation Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:14 interval2maf False Shed-tools error iuc b79f6002b176 Staging Installation Convert Formats toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:16 maf_stats False Shed-tools error iuc 0c84cce7b030 Staging Installation Multiple Alignments toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:18 mothur_align_check False Shed-tools error iuc ac003c0de94f Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:20 mothur_align_seqs False Shed-tools error iuc 02ba09e31d94 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:23 mothur_amova False Shed-tools error iuc b0b3fa851bba Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:25 mothur_anosim False Shed-tools error iuc e3d2754da9a0 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:27 mothur_bin_seqs False Shed-tools error iuc b2f3203aeba9 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:29 mothur_biom_info False Shed-tools error iuc 0937ec7fa442 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:31 mothur_chimera_bellerophon False Shed-tools error iuc eac4ce45ca79 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:34 mothur_chimera_ccode False Shed-tools error iuc d433ebd156c7 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:36 mothur_chimera_check False Shed-tools error iuc 9f954eb03dc3 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:38 mothur_chimera_perseus False Shed-tools error iuc 49fa68a982d1 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:40 mothur_chimera_pintail False Shed-tools error iuc 2960e484721c Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:43 mothur_chimera_slayer False Shed-tools error iuc c2d0e5bfa088 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:45 mothur_chimera_uchime False Shed-tools error iuc 4de76e144252 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:47 mothur_chimera_vsearch False Shed-tools error iuc 7ec5bb321f5b Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:49 mothur_classify_otu False Shed-tools error iuc 763834b09ee9 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:51 mothur_classify_seqs False Shed-tools error iuc 36ef18cf868b Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:53 mothur_classify_tree False Shed-tools error iuc 712115617d17 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:56 mothur_clearcut False Shed-tools error iuc f7fabe2362b8 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:05:58 mothur_cluster False Shed-tools error iuc af8d9e36ce7b Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:00 mothur_cluster_classic False Shed-tools error iuc 14e978a6ffdf Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:02 mothur_cluster_fragments False Shed-tools error iuc d1cb34c1bfa3 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:04 mothur_cluster_split False Shed-tools error iuc f73761825a11 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:07 mothur_collect_shared False Shed-tools error iuc 9db0ddd486f0 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:09 mothur_collect_single False Shed-tools error iuc 9ee1a391ed43 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:11 mothur_consensus_seqs False Shed-tools error iuc f38da1f679e7 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:13 mothur_cooccurrence False Shed-tools error iuc a3ae2eae5bbe Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:16 mothur_corr_axes False Shed-tools error iuc 6a9eaa618abd Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:18 mothur_count_groups False Shed-tools error iuc 14a1358d0846 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:20 mothur_count_seqs False Shed-tools error iuc 5a766fd3d23c Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:22 mothur_create_database False Shed-tools error iuc e7e2fd373e8b Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:24 mothur_degap_seqs False Shed-tools error iuc 36d252955070 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:27 mothur_deunique_seqs False Shed-tools error iuc 5faf0506611f Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:29 mothur_deunique_tree False Shed-tools error iuc 50a228ab91a3 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:31 mothur_dist_seqs False Shed-tools error iuc 31a3b2112418 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:33 mothur_dist_shared False Shed-tools error iuc 342a2b68ec4f Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:35 mothur_fastq_info False Shed-tools error iuc ab2c5805894a Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:38 mothur_filter_seqs False Shed-tools error iuc daccf69bc281 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:40 mothur_filter_shared False Shed-tools error iuc 79f24f4ee6b6 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:42 mothur_get_communitytype False Shed-tools error iuc f84ff9e03568 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:44 mothur_get_coremicrobiome False Shed-tools error iuc 820a106991a5 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:47 mothur_get_dists False Shed-tools error iuc be90a8fc5b76 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:49 mothur_get_group False Shed-tools error iuc 467378f04253 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:51 mothur_get_groups False Shed-tools error iuc 506e6a44cc68 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:53 mothur_get_label False Shed-tools error iuc c0a77971f496 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:55 mothur_get_lineage False Shed-tools error iuc dcecfbcf1edd Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:06:58 mothur_get_mimarkspackage False Shed-tools error iuc cd624927e763 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:00 mothur_get_otulabels False Shed-tools error iuc 78168125a0c0 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:02 mothur_get_otulist False Shed-tools error iuc 903acbb547c0 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:04 mothur_get_oturep False Shed-tools error iuc 5e43c9229eda Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:06 mothur_get_otus False Shed-tools error iuc 976e1434503d Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:09 mothur_get_rabund False Shed-tools error iuc 8ddccb25fcc6 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:11 mothur_get_relabund False Shed-tools error iuc ed294552b627 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:13 mothur_get_sabund False Shed-tools error iuc 4ebedd866934 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:15 mothur_get_seqs False Shed-tools error iuc d3906a9c70c4 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:17 mothur_get_sharedseqs False Shed-tools error iuc 32040fb8ffdf Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:20 mothur_heatmap_bin False Shed-tools error iuc 416182d7281c Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:22 mothur_heatmap_sim False Shed-tools error iuc 4e5640d04cab Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:24 mothur_homova False Shed-tools error iuc d17fe3c8a489 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:26 mothur_indicator False Shed-tools error iuc b876b3c1690b Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:28 mothur_lefse False Shed-tools error iuc 7691a4b846fc Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:31 mothur_libshuff False Shed-tools error iuc cda3d2247a7b Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:33 mothur_list_otulabels False Shed-tools error iuc 5e366a0379e6 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:35 mothur_list_seqs False Shed-tools error iuc 6c2a5ff159ff Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:37 mothur_make_biom False Shed-tools error iuc b0605e49d01c Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:39 mothur_make_contigs False Shed-tools error iuc ab12df91b47f Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:42 mothur_make_design False Shed-tools error iuc 185c17f84d91 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:44 mothur_make_fastq False Shed-tools error iuc 97587d4961a0 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:46 mothur_make_group False Shed-tools error iuc c7ac82d16b14 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:48 mothur_make_lefse False Shed-tools error iuc c714d0aa5afa Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:50 mothur_make_lookup False Shed-tools error iuc b41d69df69ac Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:53 mothur_make_shared False Shed-tools error iuc fdebbe239529 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:55 mothur_make_sra False Shed-tools error iuc 2341a1066c67 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:57 mothur_mantel False Shed-tools error iuc 1ef479343cfe Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:07:59 mothur_merge_count False Shed-tools error iuc 7848890f9df7 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:02 mothur_merge_files False Shed-tools error iuc 129646af86bc Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:04 mothur_merge_groups False Shed-tools error iuc 41bba0dfdbe0 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:06 mothur_merge_sfffiles False Shed-tools error iuc b296d6f25ee3 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:08 mothur_merge_taxsummary False Shed-tools error iuc 43b27677d1d0 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:10 mothur_metastats False Shed-tools error iuc 7c209dbe20b8 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:13 mothur_mimarks_attributes False Shed-tools error iuc 5106f3ce22a3 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:15 mothur_nmds False Shed-tools error iuc f65e0350ef5d Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:17 mothur_normalize_shared False Shed-tools error iuc 4bdf28c910af Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:19 mothur_otu_association False Shed-tools error iuc ffbe8c8baaf9 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:21 mothur_otu_hierarchy False Shed-tools error iuc 0161571cd8f8 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:24 mothur_pairwise_seqs False Shed-tools error iuc 6adf5871ec0b Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:26 mothur_parse_list False Shed-tools error iuc accd70ff66e6 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:28 mothur_parsimony False Shed-tools error iuc dd1a7b862fab Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:30 mothur_pca False Shed-tools error iuc 9f3da360714c Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:33 mothur_pcoa False Shed-tools error iuc 64f54fb804b3 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:35 mothur_pcr_seqs False Shed-tools error iuc 4dbfdaaa6a05 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:37 mothur_phylo_diversity False Shed-tools error iuc ef55ccbfb725 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:39 mothur_phylotype False Shed-tools error iuc e301ed7e04d8 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:42 mothur_pre_cluster False Shed-tools error iuc ed67052d4285 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:44 mothur_primer_design False Shed-tools error iuc eecf8144be3a Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:46 mothur_rarefaction_shared False Shed-tools error iuc f58d1c616fb7 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:48 mothur_rarefaction_single False Shed-tools error iuc 57e3e6bf2e41 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:50 mothur_remove_dists False Shed-tools error iuc b55a870c95aa Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:53 mothur_remove_groups False Shed-tools error iuc fae57cd6cc12 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:55 mothur_remove_lineage False Shed-tools error iuc c03e5575b636 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:57 mothur_remove_otulabels False Shed-tools error iuc 9557cc0613de Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:08:59 mothur_remove_otus False Shed-tools error iuc d0b2ec5b9a25 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:01 mothur_remove_rare False Shed-tools error iuc 33366e3a6099 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:04 mothur_remove_seqs False Shed-tools error iuc 955ae21bc7e1 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:06 mothur_rename_seqs False Shed-tools error iuc 0a213cb7cb27 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:08 mothur_reverse_seqs False Shed-tools error iuc 0ca1d45851ee Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:10 mothur_screen_seqs False Shed-tools error iuc f4d7d5755f01 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:12 mothur_sens_spec False Shed-tools error iuc b36825c79054 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:15 mothur_seq_error False Shed-tools error iuc c8a364414b34 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:17 mothur_sffinfo False Shed-tools error iuc 3839397c8f28 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:19 mothur_shhh_flows False Shed-tools error iuc 408595fde5c6 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:21 mothur_shhh_seqs False Shed-tools error iuc e963609595cc Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:23 mothur_sort_seqs False Shed-tools error iuc d4c2eccb4f69 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:26 mothur_split_abund False Shed-tools error iuc d665c913e26b Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:28 mothur_split_groups False Shed-tools error iuc 6d3d0936f910 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:30 mothur_sub_sample False Shed-tools error iuc 6c9215917d76 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:32 mothur_summary_qual False Shed-tools error iuc 6bf32768e15b Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:35 mothur_summary_seqs False Shed-tools error iuc 1a8e53763086 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:37 mothur_summary_shared False Shed-tools error iuc 713806caf2cb Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:39 mothur_summary_single False Shed-tools error iuc 88d39b1679df Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:41 mothur_summary_tax False Shed-tools error iuc bbff3370d740 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:43 mothur_taxonomy_to_krona False Shed-tools error iuc ec04a98762ef Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:46 mothur_tree_shared False Shed-tools error iuc bf740ca1752a Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:48 mothur_trim_flows False Shed-tools error iuc 440c8d6fe21a Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:50 mothur_trim_seqs False Shed-tools error iuc 29dfb8d90999 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:52 mothur_unifrac_unweighted False Shed-tools error iuc dd62ea340aa7 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:54 mothur_unifrac_weighted False Shed-tools error iuc bf4b64c7d3e8 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:57 mothur_unique_seqs False Shed-tools error iuc c50d04c78ecb Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:09:59 mothur_venn False Shed-tools error iuc b6bf3c22b503 Staging Installation Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:01 openbabel_addh False Shed-tools error bgruening 6e4b7e0c61a6 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:03 openbabel_change_title False Shed-tools error bgruening 01ab890bf0ad Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:06 openbabel_compound_convert False Shed-tools error bgruening e2c36f62e22f Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:08 openbabel_filter False Shed-tools error bgruening df4dc55197dd Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:10 openbabel_genprop False Shed-tools error bgruening b249bf9be0d1 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:12 openbabel_obgrep False Shed-tools error bgruening 274193d6c443 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:14 openbabel_remduplicates False Shed-tools error bgruening b2569e22b40c Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:16 openbabel_remions False Shed-tools error bgruening 4e3b2049a4d3 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:19 openbabel_remove_protonation_state False Shed-tools error bgruening e376ba0fcde0 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:21 openbabel_remsmall False Shed-tools error bgruening d7f0ca1f2669 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:23 openbabel_spectrophore_search False Shed-tools error bgruening 330514267c57 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:25 openbabel_structure_distance_finder False Shed-tools error bgruening 2c5c7da26e08 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:27 openbabel_subsearch False Shed-tools error bgruening c19608db6b15 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:30 openbabel_svg_depiction False Shed-tools error bgruening 7672039a0bb0 Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:32 prepare_ligands_for_docking False Shed-tools error bgruening 5486f7a2b0cb Staging Installation ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:34 sicer False Shed-tools error devteam 5c2cc3b58c7d Staging Installation Peak Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:36 variant_analyzer False Shed-tools error iuc 3f1dbd2c59bf Staging Installation Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 32 12/11/20 00:10:38 vsearch False Shed-tools error iuc 9495df9dd6ef Staging Installation Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:34:20 flye False Installed bgruening de24438c9988 de24438c9988 Assembly toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:35:08 genebed_maf_to_fasta False Installed iuc 020c78e91cc5 020c78e91cc5 Convert Formats toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:35:46 hisat2 False Installed iuc a86e80d3c09c a86e80d3c09c Mapping toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:36:34 hyphy_absrel False Installed iuc 0b58ef9e84b2 0b58ef9e84b2 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:37:21 hyphy_bgm False Installed iuc 26ad9a6b1293 26ad9a6b1293 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:38:06 hyphy_busted False Installed iuc c92d5ec5d8d7 c92d5ec5d8d7 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:38:52 hyphy_fade False Installed iuc 7dbcce65a8ff 7dbcce65a8ff Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:39:42 hyphy_fel False Installed iuc 2e5ab7526bd4 2e5ab7526bd4 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:40:30 hyphy_fubar False Installed iuc 3db56014322f 3db56014322f Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:41:15 hyphy_gard False Installed iuc 42efcb0955e6 42efcb0955e6 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:42:03 hyphy_meme False Installed iuc 5b380f4dbf1c 5b380f4dbf1c Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:42:53 hyphy_prime False Installed iuc 1d9d3c6bc246 1d9d3c6bc246 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:43:39 hyphy_relax False Installed iuc ea64cc9a06e4 ea64cc9a06e4 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:44:26 hyphy_slac False Installed iuc dc9e52b2d0e1 dc9e52b2d0e1 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:45:12 hyphy_sm19 False Installed iuc 2126c9e28ce6 2126c9e28ce6 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:45:53 idr_download_by_ids False Installed iuc f067504aa92a f067504aa92a Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:46:36 interval2maf False Installed iuc b79f6002b176 b79f6002b176 Convert Formats toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:47:23 maf_stats False Installed iuc 0c84cce7b030 0c84cce7b030 Multiple Alignments toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:47:59 mothur_align_check False Installed iuc ac003c0de94f ac003c0de94f Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:48:39 mothur_align_seqs False Installed iuc 02ba09e31d94 02ba09e31d94 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:49:19 mothur_amova False Installed iuc b0b3fa851bba b0b3fa851bba Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:50:00 mothur_anosim False Installed iuc e3d2754da9a0 e3d2754da9a0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:50:40 mothur_bin_seqs False Installed iuc b2f3203aeba9 b2f3203aeba9 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:51:21 mothur_biom_info False Installed iuc 0937ec7fa442 0937ec7fa442 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:51:58 mothur_chimera_bellerophon False Installed iuc eac4ce45ca79 eac4ce45ca79 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:52:39 mothur_chimera_ccode False Installed iuc d433ebd156c7 d433ebd156c7 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:53:18 mothur_chimera_check False Installed iuc 9f954eb03dc3 9f954eb03dc3 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:53:58 mothur_chimera_perseus False Installed iuc 49fa68a982d1 49fa68a982d1 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:54:39 mothur_chimera_pintail False Installed iuc 2960e484721c 2960e484721c Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:55:21 mothur_chimera_slayer False Installed iuc c2d0e5bfa088 c2d0e5bfa088 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:56:00 mothur_chimera_uchime False Installed iuc 4de76e144252 4de76e144252 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:56:38 mothur_chimera_vsearch False Installed iuc 7ec5bb321f5b 7ec5bb321f5b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:57:18 mothur_classify_otu False Installed iuc 763834b09ee9 763834b09ee9 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:57:59 mothur_classify_seqs False Installed iuc 36ef18cf868b 36ef18cf868b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:58:38 mothur_classify_tree False Installed iuc 712115617d17 712115617d17 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:59:18 mothur_clearcut False Installed iuc f7fabe2362b8 f7fabe2362b8 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 22:59:58 mothur_cluster False Installed iuc af8d9e36ce7b af8d9e36ce7b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:00:37 mothur_cluster_classic False Installed iuc 14e978a6ffdf 14e978a6ffdf Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:01:16 mothur_cluster_fragments False Installed iuc d1cb34c1bfa3 d1cb34c1bfa3 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:01:55 mothur_cluster_split False Installed iuc f73761825a11 f73761825a11 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:02:36 mothur_collect_shared False Installed iuc 9db0ddd486f0 9db0ddd486f0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:03:16 mothur_collect_single False Installed iuc 9ee1a391ed43 9ee1a391ed43 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:03:54 mothur_consensus_seqs False Installed iuc f38da1f679e7 f38da1f679e7 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:04:34 mothur_cooccurrence False Installed iuc a3ae2eae5bbe a3ae2eae5bbe Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:05:18 mothur_corr_axes False Installed iuc 6a9eaa618abd 6a9eaa618abd Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:06:02 mothur_count_groups False Installed iuc 14a1358d0846 14a1358d0846 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:07:01 mothur_count_seqs False Installed iuc 5a766fd3d23c 5a766fd3d23c Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:07:46 mothur_create_database False Installed iuc e7e2fd373e8b e7e2fd373e8b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:08:29 mothur_degap_seqs False Installed iuc 36d252955070 36d252955070 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:09:12 mothur_deunique_seqs False Installed iuc 5faf0506611f 5faf0506611f Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:09:56 mothur_deunique_tree False Installed iuc 50a228ab91a3 50a228ab91a3 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:10:42 mothur_dist_seqs False Installed iuc 31a3b2112418 31a3b2112418 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:11:24 mothur_dist_shared False Installed iuc 342a2b68ec4f 342a2b68ec4f Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:12:08 mothur_fastq_info False Installed iuc ab2c5805894a ab2c5805894a Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:12:51 mothur_filter_seqs False Installed iuc daccf69bc281 daccf69bc281 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:13:36 mothur_filter_shared False Installed iuc 79f24f4ee6b6 79f24f4ee6b6 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:14:19 mothur_get_communitytype False Installed iuc f84ff9e03568 f84ff9e03568 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:15:02 mothur_get_coremicrobiome False Installed iuc 820a106991a5 820a106991a5 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:15:46 mothur_get_dists False Installed iuc be90a8fc5b76 be90a8fc5b76 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:16:30 mothur_get_group False Installed iuc 467378f04253 467378f04253 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:17:14 mothur_get_groups False Installed iuc 506e6a44cc68 506e6a44cc68 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:18:00 mothur_get_label False Installed iuc c0a77971f496 c0a77971f496 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:18:44 mothur_get_lineage False Installed iuc dcecfbcf1edd dcecfbcf1edd Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:19:29 mothur_get_mimarkspackage False Installed iuc cd624927e763 cd624927e763 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:20:14 mothur_get_otulabels False Installed iuc 78168125a0c0 78168125a0c0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:21:01 mothur_get_otulist False Installed iuc 903acbb547c0 903acbb547c0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:21:45 mothur_get_oturep False Installed iuc 5e43c9229eda 5e43c9229eda Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:22:31 mothur_get_otus False Installed iuc 976e1434503d 976e1434503d Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:23:14 mothur_get_rabund False Installed iuc 8ddccb25fcc6 8ddccb25fcc6 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:23:59 mothur_get_relabund False Installed iuc ed294552b627 ed294552b627 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:24:43 mothur_get_sabund False Installed iuc 4ebedd866934 4ebedd866934 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:25:31 mothur_get_seqs False Installed iuc d3906a9c70c4 d3906a9c70c4 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:26:16 mothur_get_sharedseqs False Installed iuc 32040fb8ffdf 32040fb8ffdf Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:27:02 mothur_heatmap_bin False Installed iuc 416182d7281c 416182d7281c Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:27:47 mothur_heatmap_sim False Installed iuc 4e5640d04cab 4e5640d04cab Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:28:31 mothur_homova False Installed iuc d17fe3c8a489 d17fe3c8a489 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:29:14 mothur_indicator False Installed iuc b876b3c1690b b876b3c1690b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:29:59 mothur_lefse False Installed iuc 7691a4b846fc 7691a4b846fc Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:30:43 mothur_libshuff False Installed iuc cda3d2247a7b cda3d2247a7b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:31:29 mothur_list_otulabels False Installed iuc 5e366a0379e6 5e366a0379e6 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:32:14 mothur_list_seqs False Installed iuc 6c2a5ff159ff 6c2a5ff159ff Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:32:59 mothur_make_biom False Installed iuc b0605e49d01c b0605e49d01c Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:33:44 mothur_make_contigs False Installed iuc ab12df91b47f ab12df91b47f Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:34:30 mothur_make_design False Installed iuc 185c17f84d91 185c17f84d91 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:35:14 mothur_make_fastq False Installed iuc 97587d4961a0 97587d4961a0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:36:00 mothur_make_group False Installed iuc c7ac82d16b14 c7ac82d16b14 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:36:43 mothur_make_lefse False Installed iuc c714d0aa5afa c714d0aa5afa Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:37:28 mothur_make_lookup False Installed iuc b41d69df69ac b41d69df69ac Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:38:14 mothur_make_shared False Installed iuc fdebbe239529 fdebbe239529 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:39:01 mothur_make_sra False Installed iuc 2341a1066c67 2341a1066c67 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:39:48 mothur_mantel False Installed iuc 1ef479343cfe 1ef479343cfe Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:40:34 mothur_merge_count False Installed iuc 7848890f9df7 7848890f9df7 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:41:17 mothur_merge_files False Installed iuc 129646af86bc 129646af86bc Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:42:05 mothur_merge_groups False Installed iuc 41bba0dfdbe0 41bba0dfdbe0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:42:49 mothur_merge_sfffiles False Installed iuc b296d6f25ee3 b296d6f25ee3 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:43:34 mothur_merge_taxsummary False Installed iuc 43b27677d1d0 43b27677d1d0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:44:19 mothur_metastats False Installed iuc 7c209dbe20b8 7c209dbe20b8 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:45:06 mothur_mimarks_attributes False Installed iuc 5106f3ce22a3 5106f3ce22a3 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:45:53 mothur_nmds False Installed iuc f65e0350ef5d f65e0350ef5d Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:46:39 mothur_normalize_shared False Installed iuc 4bdf28c910af 4bdf28c910af Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:47:24 mothur_otu_association False Installed iuc ffbe8c8baaf9 ffbe8c8baaf9 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:48:11 mothur_otu_hierarchy False Installed iuc 0161571cd8f8 0161571cd8f8 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:48:59 mothur_pairwise_seqs False Installed iuc 6adf5871ec0b 6adf5871ec0b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:49:43 mothur_parse_list False Installed iuc accd70ff66e6 accd70ff66e6 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:50:29 mothur_parsimony False Installed iuc dd1a7b862fab dd1a7b862fab Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:51:16 mothur_pca False Installed iuc 9f3da360714c 9f3da360714c Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:52:01 mothur_pcoa False Installed iuc 64f54fb804b3 64f54fb804b3 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:52:47 mothur_pcr_seqs False Installed iuc 4dbfdaaa6a05 4dbfdaaa6a05 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:53:38 mothur_phylo_diversity False Installed iuc ef55ccbfb725 ef55ccbfb725 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:54:25 mothur_phylotype False Installed iuc e301ed7e04d8 e301ed7e04d8 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:55:11 mothur_pre_cluster False Installed iuc ed67052d4285 ed67052d4285 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:55:56 mothur_primer_design False Installed iuc eecf8144be3a eecf8144be3a Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:56:41 mothur_rarefaction_shared False Installed iuc f58d1c616fb7 f58d1c616fb7 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:57:28 mothur_rarefaction_single False Installed iuc 57e3e6bf2e41 57e3e6bf2e41 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:58:13 mothur_remove_dists False Installed iuc b55a870c95aa b55a870c95aa Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:58:59 mothur_remove_groups False Installed iuc fae57cd6cc12 fae57cd6cc12 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 12/11/20 23:59:43 mothur_remove_lineage False Installed iuc c03e5575b636 c03e5575b636 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:00:30 mothur_remove_otulabels False Installed iuc 9557cc0613de 9557cc0613de Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:01:14 mothur_remove_otus False Installed iuc d0b2ec5b9a25 d0b2ec5b9a25 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:02:00 mothur_remove_rare False Installed iuc 33366e3a6099 33366e3a6099 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:02:45 mothur_remove_seqs False Installed iuc 955ae21bc7e1 955ae21bc7e1 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:03:32 mothur_rename_seqs False Installed iuc 0a213cb7cb27 0a213cb7cb27 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:04:16 mothur_reverse_seqs False Installed iuc 0ca1d45851ee 0ca1d45851ee Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:05:02 mothur_screen_seqs False Installed iuc f4d7d5755f01 f4d7d5755f01 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:05:48 mothur_sens_spec False Installed iuc b36825c79054 b36825c79054 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:06:31 mothur_seq_error False Installed iuc c8a364414b34 c8a364414b34 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:07:15 mothur_sffinfo False Installed iuc 3839397c8f28 3839397c8f28 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:08:00 mothur_shhh_flows False Installed iuc 408595fde5c6 408595fde5c6 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:08:47 mothur_shhh_seqs False Installed iuc e963609595cc e963609595cc Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:09:39 mothur_sort_seqs False Installed iuc d4c2eccb4f69 d4c2eccb4f69 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:10:27 mothur_split_abund False Installed iuc d665c913e26b d665c913e26b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:11:12 mothur_split_groups False Installed iuc 6d3d0936f910 6d3d0936f910 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:11:59 mothur_sub_sample False Installed iuc 6c9215917d76 6c9215917d76 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:12:47 mothur_summary_qual False Installed iuc 6bf32768e15b 6bf32768e15b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:13:36 mothur_summary_seqs False Installed iuc 1a8e53763086 1a8e53763086 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:14:22 mothur_summary_shared False Installed iuc 713806caf2cb 713806caf2cb Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:15:11 mothur_summary_single False Installed iuc 88d39b1679df 88d39b1679df Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:15:55 mothur_summary_tax False Installed iuc bbff3370d740 bbff3370d740 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:16:41 mothur_taxonomy_to_krona False Installed iuc ec04a98762ef ec04a98762ef Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:17:25 mothur_tree_shared False Installed iuc bf740ca1752a bf740ca1752a Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:18:11 mothur_trim_flows False Installed iuc 440c8d6fe21a 440c8d6fe21a Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:18:57 mothur_trim_seqs False Installed iuc 29dfb8d90999 29dfb8d90999 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:19:43 mothur_unifrac_unweighted False Installed iuc dd62ea340aa7 dd62ea340aa7 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:20:28 mothur_unifrac_weighted False Installed iuc bf4b64c7d3e8 bf4b64c7d3e8 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:21:13 mothur_unique_seqs False Installed iuc c50d04c78ecb c50d04c78ecb Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:22:00 mothur_venn False Installed iuc b6bf3c22b503 b6bf3c22b503 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:22:43 openbabel_addh False Installed bgruening 6e4b7e0c61a6 6e4b7e0c61a6 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:23:28 openbabel_change_title False Installed bgruening 01ab890bf0ad 01ab890bf0ad ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:24:12 openbabel_compound_convert False Installed bgruening e2c36f62e22f e2c36f62e22f ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:24:56 openbabel_filter False Installed bgruening df4dc55197dd df4dc55197dd ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:25:41 openbabel_genprop False Installed bgruening b249bf9be0d1 b249bf9be0d1 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:26:27 openbabel_obgrep False Installed bgruening 274193d6c443 274193d6c443 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:27:14 openbabel_remduplicates False Installed bgruening b2569e22b40c b2569e22b40c ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:28:00 openbabel_remions False Installed bgruening 4e3b2049a4d3 4e3b2049a4d3 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:28:45 openbabel_remove_protonation_state False Installed bgruening e376ba0fcde0 e376ba0fcde0 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:29:29 openbabel_remsmall False Installed bgruening d7f0ca1f2669 d7f0ca1f2669 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:30:14 openbabel_spectrophore_search False Installed bgruening 330514267c57 330514267c57 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:31:01 openbabel_structure_distance_finder False Installed bgruening 2c5c7da26e08 2c5c7da26e08 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:31:48 openbabel_subsearch False Installed bgruening c19608db6b15 c19608db6b15 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:32:37 openbabel_svg_depiction False Installed bgruening 7672039a0bb0 7672039a0bb0 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:33:24 prepare_ligands_for_docking False Installed bgruening 5486f7a2b0cb 5486f7a2b0cb ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:34:17 sicer False Installed devteam 5c2cc3b58c7d 5c2cc3b58c7d Peak Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:35:07 variant_analyzer False Installed iuc 3f1dbd2c59bf 3f1dbd2c59bf Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 33 13/11/20 00:36:06 vsearch False Installed iuc 9495df9dd6ef 9495df9dd6ef Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 34 14/11/20 14:25:16 last False Installed iuc 3de2195f32c0 3de2195f32c0 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:32:22 diffbind False Installed bgruening 163688bb8f73 163688bb8f73 Peak Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:33:18 emboss_5 False Installed devteam ce385837c160 ce385837c160 EMBOSS toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:33:58 ggplot2_heatmap False Installed iuc a4d83ba2a1bc a4d83ba2a1bc Graph/Display Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:34:40 ggplot2_histogram False Installed iuc 497d700a5229 497d700a5229 Graph/Display Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:35:24 ggplot2_pca False Installed iuc 90928b255abb 90928b255abb Graph/Display Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:36:05 ggplot2_point False Installed iuc a36551483a8f a36551483a8f Graph/Display Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:36:45 ggplot2_violin False Installed iuc d8305f18060e d8305f18060e Graph/Display Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:37:39 hyphy_absrel False Installed iuc 6a457678efcb 6a457678efcb Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:38:24 hyphy_bgm False Installed iuc ac0b16f873f7 ac0b16f873f7 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:39:11 hyphy_busted False Installed iuc 9c62228ef17c 9c62228ef17c Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:40:02 hyphy_fade False Installed iuc c1244c2d8bbc c1244c2d8bbc Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:40:52 hyphy_fel False Installed iuc c32f3d3e8a92 c32f3d3e8a92 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:41:44 hyphy_fubar False Installed iuc a6da5885846e a6da5885846e Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:42:35 hyphy_gard False Installed iuc 6223845127ea 6223845127ea Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:43:23 hyphy_meme False Installed iuc f9988f5f30e0 f9988f5f30e0 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:44:11 hyphy_prime False Installed iuc 6fede7bd6c8f 6fede7bd6c8f Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:45:02 hyphy_relax False Installed iuc ba548f24669a ba548f24669a Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:45:51 hyphy_slac False Installed iuc b0b16acfcbe3 b0b16acfcbe3 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:46:39 hyphy_sm19 False Installed iuc 92ef8f2da655 92ef8f2da655 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:47:21 meme_meme False Installed iuc 9dd5373f6a5a 9dd5373f6a5a Motif Tools toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:48:06 migmap False Installed iuc 29ec7b3a458b 29ec7b3a458b RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:48:53 multiqc False Installed iuc c19b16e5729c c19b16e5729c Quality Control toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:49:55 pygenometracks False Installed iuc 2824d77cd8f8 2824d77cd8f8 Graph/Display Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:50:39 sarscov2formatter False Installed iuc e3a7995dce75 e3a7995dce75 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:51:17 unicycler False Installed iuc 9e3e80cc4ad4 9e3e80cc4ad4 Assembly toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 35 21/11/20 14:51:57 vg_convert False Installed iuc 7366704232b6 7366704232b6 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:31:28 annotatemyids False Installed iuc 44018dd6b447 44018dd6b447 Annotation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:32:30 circos False Installed iuc df7356989ac1 df7356989ac1 Graph/Display Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:33:18 data_manager_gemini_database_downloader False Installed iuc 52b6a4d98009 52b6a4d98009 None toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:34:08 data_manager_humann2_database_downloader False Installed iuc ff9cf22838d4 ff9cf22838d4 None toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:34:54 data_manager_metaphlan2_database_downloader False Installed iuc 83f07f40b200 83f07f40b200 None toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:35:45 deseq2 False Installed iuc de44f8eff84a de44f8eff84a RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:36:38 featurecounts False Installed iuc ea04b737afa0 ea04b737afa0 RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:37:30 hisat2 False Installed iuc d4b55e2beb12 d4b55e2beb12 Mapping toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:38:20 idr False Installed iuc de7795890bc5 de7795890bc5 RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:39:01 idr_download_by_ids False Installed iuc 97f70f7ed077 97f70f7ed077 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:39:58 kraken2 False Installed iuc 4a9da2b6c2e3 4a9da2b6c2e3 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:40:47 mothur_chop_seqs False Installed iuc 35fd955898e0 35fd955898e0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:41:41 mothur_make_contigs False Installed iuc 829bb93d3add 829bb93d3add Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 36 28/11/20 14:42:41 multiqc False Installed iuc f7985e0479b9 f7985e0479b9 Quality Control toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 37 05/12/20 14:35:44 feelnc False Installed iuc 095162ba8e90 095162ba8e90 RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 37 05/12/20 14:36:33 rgrnastar False Installed iuc e132e7d02a3e e132e7d02a3e Mapping toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 37 05/12/20 14:37:20 rna_starsolo False Installed iuc 00fbfac99d39 00fbfac99d39 Mapping toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 37 05/12/20 14:38:05 snpsift False Installed iuc 2e497a770bca 2e497a770bca Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:39:09 dropletutils False Installed iuc 8855361fcfc5 8855361fcfc5 Single-cell toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:39:56 hicexplorer_chicaggregatestatistic False Installed bgruening 989cec209ba2 989cec209ba2 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:40:38 hicexplorer_chicdifferentialtest False Installed bgruening 8c5cecbfc3aa 8c5cecbfc3aa HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:41:22 hicexplorer_chicplotviewpoint False Installed bgruening 46793007f090 46793007f090 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:42:05 hicexplorer_chicqualitycontrol False Installed bgruening 44d6bef89faa 44d6bef89faa HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:42:48 hicexplorer_chicsignificantinteractions False Installed bgruening 6bc82c6d6620 6bc82c6d6620 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:43:34 hicexplorer_chicviewpoint False Installed bgruening 889194374660 889194374660 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:44:18 hicexplorer_chicviewpointbackgroundmodel False Installed bgruening 83570b36593e 83570b36593e HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:45:00 hicexplorer_hicadjustmatrix False Installed bgruening 794bd416f6c3 794bd416f6c3 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:46:39 hicexplorer_hicaggregatecontacts False Installed bgruening 8286e361f89c 8286e361f89c HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:47:25 hicexplorer_hicaverageregions False Installed bgruening 2818b428a5c5 2818b428a5c5 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:49:25 hicexplorer_hicbuildmatrix False Installed bgruening 921a2da49a0c 921a2da49a0c HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:50:46 hicexplorer_hiccomparematrices False Installed bgruening c48c29d59359 c48c29d59359 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:51:30 hicexplorer_hiccompartmentspolarization False Installed bgruening 3afa7d456f61 3afa7d456f61 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:52:29 hicexplorer_hicconvertformat False Installed bgruening 835d4d727688 835d4d727688 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:53:36 hicexplorer_hiccorrectmatrix False Shed-tools error bgruening 835d4d727688 5443b2b1165f Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:55:26 hicexplorer_hiccorrelate False Installed bgruening 1099d84fcc21 1099d84fcc21 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:56:09 hicexplorer_hicdetectloops False Installed bgruening f16ab52334dd f16ab52334dd HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:56:55 hicexplorer_hicfindrestrictionsites False Installed bgruening 3f552d62a93a 3f552d62a93a HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:58:32 hicexplorer_hicfindtads False Installed bgruening 78fb5e286609 78fb5e286609 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:59:17 hicexplorer_hicinfo False Installed bgruening 615e9d59a682 615e9d59a682 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 14:59:59 hicexplorer_hicmergeloops False Installed bgruening 8169710bd2fb 8169710bd2fb HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:02:20 hicexplorer_hicmergematrixbins False Installed bgruening 9e357a8b2ec3 9e357a8b2ec3 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:03:03 hicexplorer_hicnormalize False Installed bgruening b9d7410b6593 b9d7410b6593 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:04:54 hicexplorer_hicpca False Installed bgruening 0ba4f56a3613 0ba4f56a3613 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:05:37 hicexplorer_hicplotaverageregions False Installed bgruening 8f4b98b0f9a9 8f4b98b0f9a9 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:07:02 hicexplorer_hicplotdistvscounts False Installed bgruening c8a6f89921dc c8a6f89921dc HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:08:45 hicexplorer_hicplotmatrix False Installed bgruening 5308ca68ef3d 5308ca68ef3d HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:09:30 hicexplorer_hicplotsvl False Installed bgruening 1923cc7e6bc2 1923cc7e6bc2 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:11:18 hicexplorer_hicplotviewpoint False Installed bgruening 76ad9e40883d 76ad9e40883d HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:12:01 hicexplorer_hicquickqc False Installed bgruening b8755bb5bc56 b8755bb5bc56 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:14:22 hicexplorer_hicsummatrices False Installed bgruening d78ae621fc63 d78ae621fc63 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:16:00 hicexplorer_hictransform False Installed bgruening dc25d1f9927b dc25d1f9927b HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:16:41 hicexplorer_hicvalidatelocations False Installed bgruening 362942f48dd2 362942f48dd2 HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:17:17 mothur_align_check False Installed iuc b2bc37b60346 b2bc37b60346 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:17:53 mothur_align_seqs False Installed iuc 72276610cdfa 72276610cdfa Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:18:29 mothur_amova False Installed iuc 389ac95dc2f5 389ac95dc2f5 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:19:03 mothur_anosim False Installed iuc 87c5f82dac4c 87c5f82dac4c Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:19:39 mothur_bin_seqs False Installed iuc 49a970c244c2 49a970c244c2 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:20:13 mothur_biom_info False Installed iuc 223e748e0268 223e748e0268 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:20:48 mothur_chimera_bellerophon False Installed iuc b732e27030e8 b732e27030e8 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:21:22 mothur_chimera_ccode False Installed iuc 983b440a26b2 983b440a26b2 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:21:58 mothur_chimera_check False Installed iuc c4572980d8f9 c4572980d8f9 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:22:33 mothur_chimera_perseus False Installed iuc 17df89a5847b 17df89a5847b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:23:09 mothur_chimera_pintail False Installed iuc d06d799b19ae d06d799b19ae Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:23:43 mothur_chimera_slayer False Installed iuc 0fde524609b1 0fde524609b1 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:24:18 mothur_chimera_uchime False Installed iuc 89ae96c8d333 89ae96c8d333 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:24:52 mothur_chimera_vsearch False Installed iuc 12e856482d26 12e856482d26 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:25:27 mothur_chop_seqs False Installed iuc bfb14e1053a1 bfb14e1053a1 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:26:01 mothur_classify_otu False Installed iuc 86b2201a1f4b 86b2201a1f4b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:26:36 mothur_classify_seqs False Installed iuc 8ca80de3f4ef 8ca80de3f4ef Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:27:11 mothur_classify_tree False Installed iuc 17081663ab68 17081663ab68 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:27:45 mothur_clearcut False Installed iuc a735e855f28f a735e855f28f Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:28:20 mothur_cluster False Installed iuc 1b695ad32179 1b695ad32179 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:28:55 mothur_cluster_classic False Installed iuc 97ac7726c985 97ac7726c985 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:29:29 mothur_cluster_fragments False Installed iuc f49de3951b73 f49de3951b73 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:30:04 mothur_cluster_split False Installed iuc a54f91ad1c84 a54f91ad1c84 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:30:38 mothur_collect_shared False Installed iuc d7de4aa1fdd1 d7de4aa1fdd1 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:31:14 mothur_collect_single False Installed iuc acfb60d5d435 acfb60d5d435 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:31:47 mothur_consensus_seqs False Installed iuc e14fb5184328 e14fb5184328 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:32:21 mothur_cooccurrence False Installed iuc 512d7ce50a57 512d7ce50a57 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:32:57 mothur_corr_axes False Installed iuc 9db54b02c49d 9db54b02c49d Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:33:31 mothur_count_groups False Installed iuc a0fc4eb349af a0fc4eb349af Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:34:06 mothur_count_seqs False Installed iuc 014583f8e83b 014583f8e83b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:34:40 mothur_create_database False Installed iuc 3cd1ccb4d58b 3cd1ccb4d58b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:35:15 mothur_degap_seqs False Installed iuc 1cbf0af70205 1cbf0af70205 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:35:48 mothur_deunique_seqs False Installed iuc 276c9f17a9a2 276c9f17a9a2 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:36:23 mothur_deunique_tree False Installed iuc 1ace9d6863aa 1ace9d6863aa Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:36:57 mothur_dist_seqs False Installed iuc 10f5ecfab7bb 10f5ecfab7bb Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:37:31 mothur_dist_shared False Installed iuc 6290d3234345 6290d3234345 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:38:06 mothur_fastq_info False Installed iuc 25f02dced96c 25f02dced96c Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:38:39 mothur_filter_seqs False Installed iuc 89b9efa3c1f0 89b9efa3c1f0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:39:14 mothur_filter_shared False Installed iuc 382b60f3756e 382b60f3756e Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:39:48 mothur_get_communitytype False Installed iuc 79dc573692a4 79dc573692a4 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:40:23 mothur_get_coremicrobiome False Installed iuc 618612060af3 618612060af3 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:40:57 mothur_get_dists False Installed iuc d1fba6b01a90 d1fba6b01a90 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:41:31 mothur_get_group False Installed iuc f220bbab51e1 f220bbab51e1 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:42:04 mothur_get_groups False Installed iuc dd84e5f5eeaa dd84e5f5eeaa Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:42:39 mothur_get_label False Installed iuc 07d9a6a72e6d 07d9a6a72e6d Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:43:14 mothur_get_lineage False Installed iuc 65853cd9ac99 65853cd9ac99 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:43:48 mothur_get_mimarkspackage False Installed iuc 9983b77b0532 9983b77b0532 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:44:22 mothur_get_otulabels False Installed iuc 6b173f5aa3ca 6b173f5aa3ca Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:44:57 mothur_get_otulist False Installed iuc ef6e35325002 ef6e35325002 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:45:32 mothur_get_oturep False Installed iuc 1e1a6eaae624 1e1a6eaae624 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:46:06 mothur_get_otus False Installed iuc 71d3e589c0b1 71d3e589c0b1 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:46:39 mothur_get_rabund False Installed iuc 7792e8e95112 7792e8e95112 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:47:13 mothur_get_relabund False Installed iuc 6b3130958acc 6b3130958acc Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:47:47 mothur_get_sabund False Installed iuc 132ec4ee9d17 132ec4ee9d17 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:48:23 mothur_get_seqs False Installed iuc fc4b74b7f345 fc4b74b7f345 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:48:57 mothur_get_sharedseqs False Installed iuc 414307889d75 414307889d75 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:49:32 mothur_heatmap_bin False Installed iuc 921a072b8552 921a072b8552 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:50:06 mothur_heatmap_sim False Installed iuc 24328bd746b5 24328bd746b5 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:50:42 mothur_homova False Installed iuc ca2b0847c8a2 ca2b0847c8a2 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:51:16 mothur_indicator False Installed iuc a224c578d941 a224c578d941 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:51:50 mothur_lefse False Installed iuc 008cb5a481f2 008cb5a481f2 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:52:24 mothur_libshuff False Installed iuc 1fe5098be27a 1fe5098be27a Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:52:59 mothur_list_otulabels False Installed iuc c2d81e2bf502 c2d81e2bf502 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:53:33 mothur_list_seqs False Installed iuc 3612e382d294 3612e382d294 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:54:09 mothur_make_biom False Installed iuc ecd90b4198a2 ecd90b4198a2 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:54:43 mothur_make_contigs False Installed iuc 00dd059b77e5 00dd059b77e5 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:55:17 mothur_make_design False Installed iuc 4228d1b7aa01 4228d1b7aa01 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:55:51 mothur_make_fastq False Installed iuc e6a7eaf1923d e6a7eaf1923d Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:56:26 mothur_make_group False Installed iuc 7ea39cdd3c5d 7ea39cdd3c5d Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:57:00 mothur_make_lefse False Installed iuc b009f1b8e922 b009f1b8e922 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:57:35 mothur_make_lookup False Installed iuc d20ab289b0c0 d20ab289b0c0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:58:08 mothur_make_shared False Installed iuc 5eaf2d7253f6 5eaf2d7253f6 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:58:45 mothur_make_sra False Installed iuc abb205c9b967 abb205c9b967 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:59:19 mothur_mantel False Installed iuc ea41c6924945 ea41c6924945 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 15:59:53 mothur_merge_count False Installed iuc 9696e3b3a098 9696e3b3a098 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:00:28 mothur_merge_files False Installed iuc f5dba396fe63 f5dba396fe63 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:01:02 mothur_merge_groups False Installed iuc 23d11599dfaf 23d11599dfaf Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:01:36 mothur_merge_sfffiles False Installed iuc 4484fe89e1a5 4484fe89e1a5 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:02:10 mothur_merge_taxsummary False Installed iuc 41f056a2ca71 41f056a2ca71 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:02:45 mothur_metastats False Installed iuc 6adb9311e99d 6adb9311e99d Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:03:20 mothur_mimarks_attributes False Installed iuc bfbd98549bc4 bfbd98549bc4 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:03:53 mothur_nmds False Installed iuc f36dc56e8a2b f36dc56e8a2b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:04:29 mothur_normalize_shared False Installed iuc a89fbfe8386f a89fbfe8386f Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:05:02 mothur_otu_association False Installed iuc 0037bed5bf77 0037bed5bf77 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:05:38 mothur_otu_hierarchy False Installed iuc 98abd0047263 98abd0047263 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:06:11 mothur_pairwise_seqs False Installed iuc bc53948e3666 bc53948e3666 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:06:47 mothur_parse_list False Installed iuc 94d78559a361 94d78559a361 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:07:21 mothur_parsimony False Installed iuc 70d555c67aec 70d555c67aec Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:08:01 mothur_pca False Installed iuc ee26037477a1 ee26037477a1 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:08:35 mothur_pcoa False Installed iuc 539f247ff952 539f247ff952 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:09:12 mothur_pcr_seqs False Installed iuc 482d26a40589 482d26a40589 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:09:45 mothur_phylo_diversity False Installed iuc 20b1d5bb66d0 20b1d5bb66d0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:10:19 mothur_phylotype False Installed iuc 12e24ffced04 12e24ffced04 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:10:52 mothur_pre_cluster False Installed iuc 872dbea91d49 872dbea91d49 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:11:28 mothur_primer_design False Installed iuc aa4dcd3099fe aa4dcd3099fe Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:12:02 mothur_rarefaction_shared False Installed iuc 76149f899b5c 76149f899b5c Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:12:39 mothur_rarefaction_single False Installed iuc ebb853546cac ebb853546cac Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:13:13 mothur_remove_dists False Installed iuc ad18e40e8569 ad18e40e8569 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:13:49 mothur_remove_groups False Installed iuc b0748ba87fba b0748ba87fba Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:14:23 mothur_remove_lineage False Installed iuc 5a41ab037c7c 5a41ab037c7c Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:14:58 mothur_remove_otulabels False Installed iuc 1f6046c0efdd 1f6046c0efdd Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:15:32 mothur_remove_otus False Installed iuc 6bdb704814f4 6bdb704814f4 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:16:09 mothur_remove_rare False Installed iuc 7b6e00f6c21f 7b6e00f6c21f Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:16:42 mothur_remove_seqs False Installed iuc 9480bbc368c0 9480bbc368c0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:17:17 mothur_rename_seqs False Installed iuc ac151f3a8f94 ac151f3a8f94 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:17:51 mothur_reverse_seqs False Installed iuc be74be7f5d90 be74be7f5d90 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:18:35 mothur_screen_seqs False Installed iuc c1feef4d5e34 c1feef4d5e34 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:19:10 mothur_sens_spec False Installed iuc 27171cf0b8ba 27171cf0b8ba Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:19:47 mothur_seq_error False Installed iuc cd31c11bcc25 cd31c11bcc25 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:20:22 mothur_sffinfo False Installed iuc 8b42e4ec39df 8b42e4ec39df Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:20:59 mothur_shhh_flows False Installed iuc fcb3fa45b93e fcb3fa45b93e Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:21:33 mothur_shhh_seqs False Installed iuc e7327eaaab37 e7327eaaab37 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:22:08 mothur_sort_seqs False Installed iuc 56bf9112c46b 56bf9112c46b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:22:41 mothur_split_abund False Installed iuc 246519916e6a 246519916e6a Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:23:17 mothur_split_groups False Installed iuc 53cbf80d4a65 53cbf80d4a65 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:23:51 mothur_sub_sample False Installed iuc 893d9058d563 893d9058d563 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:24:27 mothur_summary_qual False Installed iuc 656ffc277a38 656ffc277a38 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:25:00 mothur_summary_seqs False Installed iuc 4af62516059b 4af62516059b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:25:36 mothur_summary_shared False Installed iuc 8c18ced5e8c3 8c18ced5e8c3 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:26:10 mothur_summary_single False Installed iuc 782564664543 782564664543 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:26:45 mothur_summary_tax False Installed iuc c85146fe9890 c85146fe9890 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:27:19 mothur_taxonomy_to_krona False Installed iuc 696ed5c6d1f0 696ed5c6d1f0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:27:55 mothur_tree_shared False Installed iuc ae1468c3e1fa ae1468c3e1fa Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:28:28 mothur_trim_flows False Installed iuc 1f336ed182b8 1f336ed182b8 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:29:04 mothur_trim_seqs False Installed iuc 38eea52b9ef7 38eea52b9ef7 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:29:39 mothur_unifrac_unweighted False Installed iuc 42ae7755f3c1 42ae7755f3c1 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:30:13 mothur_unifrac_weighted False Installed iuc 09f802a2c3fa 09f802a2c3fa Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:30:47 mothur_unique_seqs False Installed iuc 71788e5ced45 71788e5ced45 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:31:22 mothur_venn False Installed iuc 139bdc1c3b48 139bdc1c3b48 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 38 12/12/20 16:32:06 repeat_masker False Installed bgruening bfc70c8cc5ca bfc70c8cc5ca Annotation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 39 19/12/20 14:43:22 hicexplorer_hiccorrectmatrix False Installed bgruening 5443b2b1165f 5443b2b1165f HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 40 26/12/20 14:48:34 hyphy_absrel False Installed iuc d7c7ef3353fe d7c7ef3353fe Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 40 26/12/20 14:49:24 hyphy_bgm False Installed iuc 63b9f220f585 63b9f220f585 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 40 26/12/20 14:50:16 hyphy_busted False Installed iuc 75b6fe730cee 75b6fe730cee Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 40 26/12/20 14:51:02 hyphy_fade False Installed iuc 3b8114109e84 3b8114109e84 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 40 26/12/20 14:51:58 hyphy_fel False Installed iuc 31b7af192fd3 31b7af192fd3 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 40 26/12/20 14:52:49 hyphy_fubar False Installed iuc c8f912a7a967 c8f912a7a967 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 40 26/12/20 14:53:40 hyphy_gard False Installed iuc b0af57c1a968 b0af57c1a968 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 40 26/12/20 14:54:31 hyphy_meme False Installed iuc 82a3221ca3aa 82a3221ca3aa Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 40 26/12/20 14:55:20 hyphy_prime False Installed iuc 82665e97c156 82665e97c156 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 40 26/12/20 14:56:07 hyphy_relax False Installed iuc b8bdfac5a326 b8bdfac5a326 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 40 26/12/20 14:57:06 hyphy_slac False Installed iuc 4b63a5c3c6da 4b63a5c3c6da Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 40 26/12/20 14:57:57 hyphy_sm19 False Installed iuc 77d74f012ecc 77d74f012ecc Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 41 02/01/21 14:53:37 busco False Installed iuc 602fb8e63aa7 602fb8e63aa7 Annotation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 41 02/01/21 14:54:20 column_maker False Installed devteam 9cd341095afd 9cd341095afd Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 41 02/01/21 14:55:23 jbrowse False Installed iuc 8774b28235bb 8774b28235bb Graph/Display Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 41 02/01/21 14:56:12 maker False Installed iuc 5201ec38c01f 5201ec38c01f Annotation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 41 02/01/21 14:57:00 maker_map_ids False Installed iuc f1912d5575df f1912d5575df Annotation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 41 02/01/21 14:57:49 sina False Installed iuc 56d7dc39eec8 56d7dc39eec8 Multiple Alignments toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:04:37 anndata_export False Installed iuc c0b037b12765 c0b037b12765 Single-cell toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:05:25 anndata_import False Installed iuc cfc3f5a57dc6 cfc3f5a57dc6 Single-cell toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:06:10 anndata_inspect False Installed iuc 038e32885fec 038e32885fec Single-cell toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:06:56 anndata_manipulate False Installed iuc b85871dd69f9 b85871dd69f9 Single-cell toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:07:32 deseq2 False Installed iuc 6a3a025714d3 6a3a025714d3 RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:08:22 dropletutils False Installed iuc 2c1200fba922 2c1200fba922 Single-cell toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:09:14 hyphy_absrel False Installed iuc b89cac5156ec b89cac5156ec Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:10:03 hyphy_bgm False Installed iuc cebcce34d63b cebcce34d63b Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:10:54 hyphy_busted False Installed iuc 6acfd47732d1 6acfd47732d1 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:11:44 hyphy_fade False Installed iuc 29515b569f8b 29515b569f8b Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:12:36 hyphy_fel False Installed iuc e961403fdba3 e961403fdba3 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:13:31 hyphy_fubar False Installed iuc 80c9e5256a0d 80c9e5256a0d Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:14:22 hyphy_gard False Installed iuc 6a726db04d4b 6a726db04d4b Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:15:10 hyphy_meme False Installed iuc d9dc61719379 d9dc61719379 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:15:59 hyphy_prime False Installed iuc 76f42c7f9b7b 76f42c7f9b7b Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:16:50 hyphy_relax False Installed iuc 63f85ef1a3d5 63f85ef1a3d5 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:17:40 hyphy_slac False Installed iuc ae4e61b62996 ae4e61b62996 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:18:26 hyphy_sm19 False Installed iuc 466217f0aa76 466217f0aa76 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:19:02 maker False Installed iuc d46d803ca6cc d46d803ca6cc Annotation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:19:38 maker_map_ids False Installed iuc e408aa831db3 e408aa831db3 Annotation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:20:22 modify_loom False Installed iuc 59be31ac9dc3 59be31ac9dc3 Single-cell toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:21:05 ncbi_eutils_ecitmatch False Installed iuc 4211384042fa 4211384042fa Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:21:48 ncbi_eutils_efetch False Installed iuc 2180fafdfe60 2180fafdfe60 Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:22:31 ncbi_eutils_egquery False Installed iuc 85d9183d1200 85d9183d1200 Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:23:14 ncbi_eutils_einfo False Installed iuc ad0e3818b6ae ad0e3818b6ae Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:24:01 ncbi_eutils_elink False Installed iuc 5c42fe46188f 5c42fe46188f Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:24:44 ncbi_eutils_epost False Installed iuc 19d3a5740988 19d3a5740988 Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:25:25 ncbi_eutils_esearch False Installed iuc e88866c4f3e7 e88866c4f3e7 Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:26:10 ncbi_eutils_esummary False Installed iuc ff3a5e980fab ff3a5e980fab Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:26:50 rnaspades False Installed iuc 03fd468e158f 03fd468e158f Assembly toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:27:40 samtools_view False Installed iuc b72793637686 b72793637686 SAM/BAM toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 42 09/01/21 15:28:25 tbprofiler False Installed iuc 037a11682176 037a11682176 Annotation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:10:26 bowtie2 False Installed devteam 09b2cdb7ace5 09b2cdb7ace5 deepTools toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:11:22 hyphy_absrel False Installed iuc 3b8b5bde0bd9 3b8b5bde0bd9 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:12:11 hyphy_bgm False Installed iuc 082d47606949 082d47606949 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:13:02 hyphy_busted False Installed iuc 2228dcc23dd9 2228dcc23dd9 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:13:55 hyphy_fade False Installed iuc 751948c21000 751948c21000 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:14:48 hyphy_fel False Installed iuc ccf8f1712632 ccf8f1712632 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:15:38 hyphy_fubar False Installed iuc af40a8b95f8d af40a8b95f8d Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:16:28 hyphy_gard False Installed iuc a185b079b095 a185b079b095 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:17:18 hyphy_meme False Installed iuc a4bf56abff97 a4bf56abff97 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:18:02 hyphy_prime False Installed iuc a8f760e7c322 a8f760e7c322 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:18:51 hyphy_relax False Installed iuc 169f4d983656 169f4d983656 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:19:41 hyphy_slac False Installed iuc 08449da86cdf 08449da86cdf Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:20:25 hyphy_sm19 False Installed iuc 051642420aec 051642420aec Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:21:07 metaspades False Installed nml 2ecf5a570907 2ecf5a570907 Assembly toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:22:03 pileup_interval False Installed devteam 9c1c0b947e46 9c1c0b947e46 SAM/BAM Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:22:54 rgrnastar False Installed iuc 7ed2edc1337f 7ed2edc1337f Mapping toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:23:46 rna_starsolo False Installed iuc ec9cbd6b9a49 ec9cbd6b9a49 Mapping toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:24:32 ruvseq False Installed iuc fed9d0350d72 fed9d0350d72 RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 43 16/01/21 15:25:23 velvetoptimiser False Installed simon-gladman 4a53b89fa703 4a53b89fa703 Assembly toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:47:07 bandage False Installed iuc 94fe43e75ddc 94fe43e75ddc Graph/Display Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:47:52 chembl False Installed bgruening a43a00845834 a43a00845834 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:48:34 column_maker False Installed devteam 13b6f0007d9e 13b6f0007d9e Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:49:27 hisat2 False Installed iuc 26371a1df031 26371a1df031 Mapping toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:50:02 mothur_align_check False Installed iuc 2f668a63a256 2f668a63a256 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:50:38 mothur_align_seqs False Installed iuc abf7c15ecfef abf7c15ecfef Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:51:14 mothur_amova False Installed iuc 58b8ae43d27f 58b8ae43d27f Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:51:50 mothur_anosim False Installed iuc 4a283edb151c 4a283edb151c Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:52:24 mothur_bin_seqs False Installed iuc 65000a433c3b 65000a433c3b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:52:57 mothur_biom_info False Installed iuc 31fa2d557ff2 31fa2d557ff2 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:53:32 mothur_chimera_bellerophon False Installed iuc 14a7c1eca23d 14a7c1eca23d Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:54:08 mothur_chimera_ccode False Installed iuc 751904c1033d 751904c1033d Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:54:41 mothur_chimera_check False Installed iuc 74dfe7be1563 74dfe7be1563 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:55:16 mothur_chimera_perseus False Installed iuc 6db50600493e 6db50600493e Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:55:50 mothur_chimera_pintail False Installed iuc 5f66e6f7f6c0 5f66e6f7f6c0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:56:25 mothur_chimera_slayer False Installed iuc ab328c924a02 ab328c924a02 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:56:59 mothur_chimera_uchime False Installed iuc 0706d327ecae 0706d327ecae Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:57:45 mothur_chimera_vsearch False Installed iuc de3cfb122105 de3cfb122105 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:58:20 mothur_chop_seqs False Installed iuc e1dd67d13282 e1dd67d13282 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:58:55 mothur_classify_otu False Installed iuc 02446d12c359 02446d12c359 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 14:59:29 mothur_classify_seqs False Installed iuc 09bf9e496c64 09bf9e496c64 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:00:05 mothur_classify_tree False Installed iuc 5d8809423177 5d8809423177 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:00:39 mothur_clearcut False Installed iuc ad924a6328cc ad924a6328cc Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:01:15 mothur_cluster False Installed iuc 528f950d1044 528f950d1044 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:01:48 mothur_cluster_classic False Installed iuc 9bae6b20ed44 9bae6b20ed44 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:02:23 mothur_cluster_fragments False Installed iuc 08b0e9f01d65 08b0e9f01d65 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:02:58 mothur_cluster_split False Installed iuc 1b7fd1678230 1b7fd1678230 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:03:33 mothur_collect_shared False Installed iuc 21a043c3ae00 21a043c3ae00 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:04:08 mothur_collect_single False Installed iuc c9d3eed082fc c9d3eed082fc Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:04:43 mothur_consensus_seqs False Installed iuc 6f281dc9d01c 6f281dc9d01c Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:05:18 mothur_cooccurrence False Installed iuc ffdcb7942343 ffdcb7942343 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:05:53 mothur_corr_axes False Installed iuc 03b02c255008 03b02c255008 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:06:27 mothur_count_groups False Installed iuc 03c86648a52e 03c86648a52e Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:07:01 mothur_count_seqs False Installed iuc 7a6f9c899221 7a6f9c899221 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:07:35 mothur_create_database False Installed iuc 16f6d606521a 16f6d606521a Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:08:11 mothur_degap_seqs False Installed iuc 6f08af23888a 6f08af23888a Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:08:45 mothur_deunique_seqs False Installed iuc f6c604b2793e f6c604b2793e Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:09:18 mothur_deunique_tree False Installed iuc d247213cebfc d247213cebfc Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:09:53 mothur_dist_seqs False Installed iuc 0554c9338ca0 0554c9338ca0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:10:26 mothur_dist_shared False Installed iuc f25598da7174 f25598da7174 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:11:01 mothur_fastq_info False Installed iuc a630c5167f5d a630c5167f5d Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:11:35 mothur_filter_seqs False Installed iuc 3524ca06478e 3524ca06478e Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:12:10 mothur_filter_shared False Installed iuc 2d1dbf69f589 2d1dbf69f589 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:12:45 mothur_get_communitytype False Installed iuc 10c5aa12a1d5 10c5aa12a1d5 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:13:19 mothur_get_coremicrobiome False Installed iuc da05ce41f8f0 da05ce41f8f0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:13:54 mothur_get_dists False Installed iuc 10005fd5ad53 10005fd5ad53 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:14:30 mothur_get_group False Installed iuc 65d9f4688890 65d9f4688890 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:15:08 mothur_get_groups False Installed iuc 03af14e245fb 03af14e245fb Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:15:45 mothur_get_label False Installed iuc ee13e5a4f9f3 ee13e5a4f9f3 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:16:23 mothur_get_lineage False Installed iuc 0bbfc05d924e 0bbfc05d924e Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:17:03 mothur_get_mimarkspackage False Installed iuc 2d19319f528a 2d19319f528a Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:17:41 mothur_get_otulabels False Installed iuc fbd1d5bf02bf fbd1d5bf02bf Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:18:20 mothur_get_otulist False Installed iuc 85f75125d861 85f75125d861 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:19:03 mothur_get_oturep False Installed iuc 305ce07a4b16 305ce07a4b16 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:19:45 mothur_get_otus False Installed iuc dbb1bc225df1 dbb1bc225df1 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:20:28 mothur_get_rabund False Installed iuc 4a52424269e1 4a52424269e1 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:21:16 mothur_get_relabund False Installed iuc 1593a3542944 1593a3542944 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:22:01 mothur_get_sabund False Installed iuc c550ce2ebe1f c550ce2ebe1f Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:22:46 mothur_get_seqs False Installed iuc f5cb275acba9 f5cb275acba9 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:23:29 mothur_get_sharedseqs False Installed iuc f8bf3dd4db47 f8bf3dd4db47 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:24:15 mothur_heatmap_bin False Installed iuc aeacbc9d5333 aeacbc9d5333 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:25:00 mothur_heatmap_sim False Installed iuc 7f5707dd6073 7f5707dd6073 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:25:46 mothur_homova False Installed iuc 89054fe2207f 89054fe2207f Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:26:29 mothur_indicator False Installed iuc 1c6dadf7bc72 1c6dadf7bc72 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:27:23 mothur_lefse False Installed iuc ccd1ce71c11f ccd1ce71c11f Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:28:15 mothur_libshuff False Installed iuc 1cd0f3241d5b 1cd0f3241d5b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:29:06 mothur_list_otulabels False Installed iuc 1c8906cc1ddd 1c8906cc1ddd Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:29:54 mothur_list_seqs False Installed iuc dd84878a5f99 dd84878a5f99 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:30:43 mothur_make_biom False Installed iuc 55e975c9a012 55e975c9a012 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:31:34 mothur_make_contigs False Installed iuc 4e9136c2c4c3 4e9136c2c4c3 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:32:25 mothur_make_design False Installed iuc 6ec3ec95ae68 6ec3ec95ae68 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:33:15 mothur_make_fastq False Installed iuc f09c0a3bf8b9 f09c0a3bf8b9 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:34:06 mothur_make_group False Installed iuc 37af7f0540e5 37af7f0540e5 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:34:57 mothur_make_lefse False Installed iuc 470c067fc0a0 470c067fc0a0 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:35:49 mothur_make_lookup False Installed iuc 23c1af22331b 23c1af22331b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:36:41 mothur_make_shared False Installed iuc 0851ae17c58e 0851ae17c58e Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:37:35 mothur_make_sra False Installed iuc 88fa82b36a72 88fa82b36a72 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:38:26 mothur_mantel False Installed iuc b0f1e033e18d b0f1e033e18d Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:39:18 mothur_merge_count False Installed iuc 6e3d1e4c9786 6e3d1e4c9786 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:40:10 mothur_merge_files False Installed iuc 7bd37d6decd9 7bd37d6decd9 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:41:03 mothur_merge_groups False Installed iuc ddd068a49efe ddd068a49efe Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:41:54 mothur_merge_sfffiles False Installed iuc b562d71b9508 b562d71b9508 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:42:44 mothur_merge_taxsummary False Installed iuc 733bfc5872b1 733bfc5872b1 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:43:36 mothur_metastats False Installed iuc 19836a38dc20 19836a38dc20 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:44:25 mothur_mimarks_attributes False Installed iuc b9fe5cf8f2bc b9fe5cf8f2bc Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:45:14 mothur_nmds False Installed iuc a81680d1db78 a81680d1db78 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:46:02 mothur_normalize_shared False Installed iuc 5e94c135ef00 5e94c135ef00 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:46:49 mothur_otu_association False Installed iuc a02117aa58a5 a02117aa58a5 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:47:38 mothur_otu_hierarchy False Installed iuc f9326e93f5c3 f9326e93f5c3 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:48:26 mothur_pairwise_seqs False Installed iuc cfe04aa12a39 cfe04aa12a39 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:49:13 mothur_parse_list False Installed iuc 408650f291f7 408650f291f7 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:50:02 mothur_parsimony False Installed iuc aff64115d95f aff64115d95f Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:50:50 mothur_pca False Installed iuc 46689a444f2b 46689a444f2b Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:51:37 mothur_pcoa False Installed iuc 5bc3e30e1d9e 5bc3e30e1d9e Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:52:26 mothur_pcr_seqs False Installed iuc 7dba7376870c 7dba7376870c Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:53:14 mothur_phylo_diversity False Installed iuc c76d9ea84d39 c76d9ea84d39 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:54:01 mothur_phylotype False Installed iuc 4d219b4dfd6a 4d219b4dfd6a Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:54:49 mothur_pre_cluster False Installed iuc 05183ee20cf8 05183ee20cf8 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:55:37 mothur_primer_design False Installed iuc 0b63f5faf6e5 0b63f5faf6e5 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:56:24 mothur_rarefaction_shared False Installed iuc 2175b62675ed 2175b62675ed Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:57:11 mothur_rarefaction_single False Installed iuc af521db77c56 af521db77c56 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:58:00 mothur_remove_dists False Installed iuc 56ad298415d8 56ad298415d8 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:58:47 mothur_remove_groups False Installed iuc 498dc0671d9e 498dc0671d9e Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 15:59:35 mothur_remove_lineage False Installed iuc 947faa8b3205 947faa8b3205 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:00:23 mothur_remove_otulabels False Installed iuc b9e2724e9fc7 b9e2724e9fc7 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:01:10 mothur_remove_otus False Installed iuc 0e73681a7cdc 0e73681a7cdc Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:01:58 mothur_remove_rare False Installed iuc 9ac808d4e0b5 9ac808d4e0b5 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:02:45 mothur_remove_seqs False Installed iuc 5097ac2cbfc3 5097ac2cbfc3 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:03:32 mothur_rename_seqs False Installed iuc 583af69719db 583af69719db Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:04:21 mothur_reverse_seqs False Installed iuc 7378ce8fb5c1 7378ce8fb5c1 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:05:08 mothur_screen_seqs False Installed iuc 63b74bfc8052 63b74bfc8052 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:05:55 mothur_sens_spec False Installed iuc 5ff10ccd7100 5ff10ccd7100 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:06:43 mothur_seq_error False Installed iuc 5a7674ac2c59 5a7674ac2c59 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:07:30 mothur_sffinfo False Installed iuc 09e3b0966a11 09e3b0966a11 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:08:17 mothur_shhh_flows False Installed iuc dfaf60f40e94 dfaf60f40e94 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:09:06 mothur_shhh_seqs False Installed iuc d7e469b059da d7e469b059da Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:09:53 mothur_sort_seqs False Installed iuc fc60d2e290a4 fc60d2e290a4 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:10:40 mothur_split_abund False Installed iuc cd7b11709aa9 cd7b11709aa9 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:11:28 mothur_split_groups False Installed iuc 618bf5d295e7 618bf5d295e7 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:12:15 mothur_sub_sample False Installed iuc 67cb43432196 67cb43432196 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:13:02 mothur_summary_qual False Installed iuc 86a40294e149 86a40294e149 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:13:50 mothur_summary_seqs False Installed iuc 609770e516fa 609770e516fa Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:14:37 mothur_summary_shared False Installed iuc 545234c1d925 545234c1d925 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:15:25 mothur_summary_single False Installed iuc 2344ed181ae6 2344ed181ae6 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:16:14 mothur_summary_tax False Installed iuc a7e1d78c70f5 a7e1d78c70f5 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:17:00 mothur_taxonomy_to_krona False Installed iuc a97107cc4c93 a97107cc4c93 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:17:49 mothur_tree_shared False Installed iuc 43e2715e98c9 43e2715e98c9 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:18:36 mothur_trim_flows False Installed iuc 1fead600dbd4 1fead600dbd4 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:19:25 mothur_trim_seqs False Installed iuc bf67e22a405f bf67e22a405f Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:20:13 mothur_unifrac_unweighted False Installed iuc 2933ee6251d8 2933ee6251d8 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:21:01 mothur_unifrac_weighted False Installed iuc 88c441e56578 88c441e56578 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:21:48 mothur_unique_seqs False Installed iuc d466580cd706 d466580cd706 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 45 30/01/21 16:22:36 mothur_venn False Installed iuc 4db54b1c1d83 4db54b1c1d83 Mothur toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:37:09 bcftools_call False Installed iuc 072f606e2e69 072f606e2e69 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:37:48 bcftools_cnv False Installed iuc 01d6b7d6365e 01d6b7d6365e Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:38:30 bcftools_concat False Installed iuc d40d4bf05718 d40d4bf05718 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:39:18 bcftools_consensus False Installed iuc d6dc477167f8 d6dc477167f8 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:39:58 bcftools_csq False Installed iuc fdd127bd4a32 fdd127bd4a32 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:40:39 bcftools_merge False Installed iuc e03f2f3ac3a9 e03f2f3ac3a9 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:41:21 bcftools_norm False Installed iuc c077f71d351f c077f71d351f Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:41:57 bcftools_plugin_color_chrs False Installed iuc c39113e2ae34 c39113e2ae34 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:42:37 bcftools_plugin_frameshifts False Installed iuc eb22990a2be9 eb22990a2be9 Variant Calling toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:43:21 dada2_assigntaxonomyaddspecies False Installed iuc 5b5a7af9fbb4 5b5a7af9fbb4 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:44:11 dada2_dada False Installed iuc 18a502a9d287 18a502a9d287 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:44:59 dada2_filterandtrim False Installed iuc f732237754fc f732237754fc Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:45:47 dada2_learnerrors False Installed iuc 8c202e741d68 8c202e741d68 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:46:35 dada2_makesequencetable False Installed iuc 1c9b3bcd4261 1c9b3bcd4261 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:47:23 dada2_mergepairs False Installed iuc 306a40d4bb8f 306a40d4bb8f Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:48:12 dada2_plotcomplexity False Installed iuc ac72310b038a ac72310b038a Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:49:03 dada2_plotqualityprofile False Installed iuc f947b4bb5107 f947b4bb5107 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:49:49 dada2_removebimeradenovo False Installed iuc 04144473e59e 04144473e59e Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:50:36 dada2_seqcounts False Installed iuc d943081510da d943081510da Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:51:21 diff False Installed bgruening 95a9dc82fc9a 95a9dc82fc9a Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:52:40 humann2 False Installed iuc bb13650e8115 bb13650e8115 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:53:51 humann2_associate False Installed iuc e57b437186b3 e57b437186b3 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:55:07 humann2_barplot False Installed iuc 56cb2b0269d1 56cb2b0269d1 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:56:18 humann2_genefamilies_genus_level False Installed iuc 79cd822debef 79cd822debef Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:57:34 humann2_join_tables False Installed iuc 300fd72ce167 300fd72ce167 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:58:49 humann2_reduce_table False Installed iuc 7f7cc8d4d6b7 7f7cc8d4d6b7 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 14:59:56 humann2_regroup_table False Installed iuc 88ff1d78fd30 88ff1d78fd30 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 15:01:10 humann2_rename_table False Installed iuc 252ae00df89c 252ae00df89c Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 15:02:19 humann2_renorm_table False Installed iuc cd235981c423 cd235981c423 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 15:03:33 humann2_rna_dna_norm False Installed iuc 6893a2b1da17 6893a2b1da17 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 15:04:49 humann2_split_stratified_table False Installed iuc 28763c8b43f8 28763c8b43f8 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 15:06:02 humann2_split_table False Installed iuc 63cc5fd0f8d6 63cc5fd0f8d6 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 15:07:18 humann2_strain_profiler False Installed iuc 1595f7cadbf9 1595f7cadbf9 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 15:08:31 humann2_unpack_pathways False Installed iuc 3115a530686e 3115a530686e Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 15:09:16 sra_tools False Installed iuc e08a7ad4378b e08a7ad4378b Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 46 06/02/21 15:09:56 transdecoder False Installed iuc d0d4cef4f967 d0d4cef4f967 RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:36:57 cp_cellprofiler False Installed bgruening e917a2424690 e917a2424690 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:37:39 cp_common False Installed bgruening e7273daa5ae2 e7273daa5ae2 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:38:22 cp_convert_objects_to_image False Installed bgruening df3ad3ba5c6f df3ad3ba5c6f Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:39:04 cp_display_data_on_image False Installed bgruening 2484086dee41 2484086dee41 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:39:45 cp_enhance_or_suppress_features False Installed bgruening f2ed92b011a9 f2ed92b011a9 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:40:27 cp_export_to_spreadsheet False Installed bgruening f8fa0f6718a3 f8fa0f6718a3 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:41:08 cp_gray_to_color False Installed bgruening 31d195bedf6d 31d195bedf6d Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:41:48 cp_identify_primary_objects False Installed bgruening 993faa34333b 993faa34333b Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:42:30 cp_image_math False Installed bgruening c09dcda1143f c09dcda1143f Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:43:11 cp_mask_image False Installed bgruening 3a05117669cf 3a05117669cf Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:43:52 cp_measure_granularity False Installed bgruening a1a961c46d4b a1a961c46d4b Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:44:33 cp_measure_image_area_occupied False Installed bgruening 20dbb1f7ec7b 20dbb1f7ec7b Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:45:14 cp_measure_image_intensity False Installed bgruening 5499dc6f8ac1 5499dc6f8ac1 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:45:53 cp_measure_image_quality False Installed bgruening e972e07c7845 e972e07c7845 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:46:31 cp_measure_object_intensity False Installed bgruening 980aed9e8fd5 980aed9e8fd5 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:47:10 cp_measure_object_size_shape False Installed bgruening 79e10d12d90a 79e10d12d90a Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:47:50 cp_measure_texture False Installed bgruening 035a58c7f54a 035a58c7f54a Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:48:29 cp_relate_objects False Installed bgruening 8083a87d2fdf 8083a87d2fdf Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:49:11 cp_save_images False Installed bgruening 4ecf93628f97 4ecf93628f97 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:49:54 filter_tabular False Installed iuc 6544e4b87a4f 6544e4b87a4f Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:50:40 iedb_api False Installed iuc 7ed6dda64a81 7ed6dda64a81 Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:51:16 jbrowse False Installed iuc 6cd09d7b5f37 6cd09d7b5f37 Graph/Display Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:51:56 medaka_consensus False Installed iuc fbf007713188 fbf007713188 Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:52:39 medaka_consensus_pipeline False Installed iuc d915879a88bc d915879a88bc Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:53:25 medaka_variant False Installed iuc aabb4e1c0b7b aabb4e1c0b7b Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:54:05 medaka_variant_pipeline False Installed iuc ea1833858055 ea1833858055 Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:54:53 minimap2 False Installed iuc 77b2770508f6 77b2770508f6 Mapping toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:55:37 query_tabular False Installed iuc 83069b38aa85 83069b38aa85 Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:56:15 sqlite_to_tabular False Installed iuc bce29ec10b78 bce29ec10b78 Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:56:56 umi_tools_count False Installed iuc 8250ea3a1501 8250ea3a1501 FASTA/FASTQ toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:57:42 umi_tools_dedup False Installed iuc 7fa28eb10fed 7fa28eb10fed FASTA/FASTQ toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:58:24 umi_tools_extract False Installed iuc 6a675c3aa610 6a675c3aa610 FASTA/FASTQ toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:59:03 umi_tools_group False Installed iuc bc082a79d655 bc082a79d655 FASTA/FASTQ toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 47 13/02/21 14:59:46 umi_tools_whitelist False Installed iuc 49bfe13676a1 49bfe13676a1 FASTA/FASTQ toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 48 20/02/21 14:37:50 anndata_export False Installed iuc c5ac926c838f c5ac926c838f Single-cell toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 48 20/02/21 14:38:38 anndata_import False Installed iuc ae1e5d9d8972 ae1e5d9d8972 Single-cell toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 48 20/02/21 14:39:20 anndata_inspect False Installed iuc 383dcb0500f9 383dcb0500f9 Single-cell toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 48 20/02/21 14:40:05 anndata_manipulate False Installed iuc 8db95f488f0f 8db95f488f0f Single-cell toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 48 20/02/21 14:40:52 canu False Installed bgruening 5732f959936a 5732f959936a Assembly toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 48 20/02/21 14:41:36 ctb_rdkit_descriptors False Installed bgruening a1c53f0533b0 a1c53f0533b0 ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 48 20/02/21 14:42:14 enumerate_charges False Installed bgruening bbbf5fb356dd bbbf5fb356dd ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 48 20/02/21 14:43:01 kraken2 False Installed iuc e674066930b2 e674066930b2 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 48 20/02/21 14:43:49 modify_loom False Installed iuc 7784821452ac 7784821452ac Single-cell toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 48 20/02/21 14:44:31 roary False Installed iuc 78608ec02d62 78608ec02d62 Annotation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 48 20/02/21 14:45:12 sdf_to_tab False Installed bgruening 351fbd750a6d 351fbd750a6d ChemicalToolBox toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:39:36 column_maker False Installed devteam 427903d47026 427903d47026 Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:40:21 cp_cellprofiler False Installed bgruening 0e4dccaafef5 0e4dccaafef5 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:41:07 cp_common False Installed bgruening 670975e92458 670975e92458 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:41:53 cp_convert_objects_to_image False Installed bgruening cdf8e3c57dae cdf8e3c57dae Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:42:38 cp_display_data_on_image False Installed bgruening 6a7da2e5f696 6a7da2e5f696 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:43:25 cp_enhance_or_suppress_features False Installed bgruening 11f177b1a59e 11f177b1a59e Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:44:13 cp_export_to_spreadsheet False Installed bgruening d0178bdcd00e d0178bdcd00e Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:44:55 cp_gray_to_color False Installed bgruening ad271f78a87a ad271f78a87a Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:45:42 cp_identify_primary_objects False Installed bgruening b6eec6087271 b6eec6087271 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:46:25 cp_image_math False Installed bgruening 6100a22bf4f2 6100a22bf4f2 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:47:14 cp_mask_image False Installed bgruening b178453ea8d1 b178453ea8d1 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:48:00 cp_measure_granularity False Installed bgruening ac5bea85a391 ac5bea85a391 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:48:41 cp_measure_image_area_occupied False Installed bgruening 91e03287f285 91e03287f285 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:49:28 cp_measure_image_intensity False Installed bgruening 8536b1ae0254 8536b1ae0254 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:50:14 cp_measure_image_quality False Installed bgruening 6f4715b8540a 6f4715b8540a Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:50:58 cp_measure_object_intensity False Installed bgruening 407925835dd9 407925835dd9 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:51:43 cp_measure_object_size_shape False Installed bgruening acf3aa487283 acf3aa487283 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:52:26 cp_measure_texture False Installed bgruening 80b200ae516b 80b200ae516b Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:53:10 cp_relate_objects False Installed bgruening 3a3033222f61 3a3033222f61 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:53:52 cp_save_images False Installed bgruening 33f4fa1413fb 33f4fa1413fb Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:54:40 hyphy_absrel False Installed iuc d033ffc1c161 d033ffc1c161 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:55:27 hyphy_bgm False Installed iuc df8c64576038 df8c64576038 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:56:20 hyphy_busted False Installed iuc 12bc58a60606 12bc58a60606 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:57:06 hyphy_fade False Installed iuc 270763dcdfb4 270763dcdfb4 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:57:55 hyphy_fel False Installed iuc 86ea61f31779 86ea61f31779 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:58:43 hyphy_fubar False Installed iuc 271afda54a6d 271afda54a6d Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 14:59:27 hyphy_gard False Installed iuc 02b8758214b0 02b8758214b0 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 15:00:11 hyphy_meme False Installed iuc 6433eab14244 6433eab14244 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 15:00:58 hyphy_prime False Installed iuc bdcfaa985c16 bdcfaa985c16 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 15:01:46 hyphy_relax False Installed iuc 7cd99ec269ee 7cd99ec269ee Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 15:02:33 hyphy_slac False Installed iuc a2e3319aca46 a2e3319aca46 Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 15:03:23 hyphy_sm19 False Installed iuc 4636d51b049c 4636d51b049c Phylogenetics toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 15:04:00 idr_download_by_ids False Installed iuc 80af973c5277 80af973c5277 Imaging toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 15:04:36 medaka_consensus False Installed iuc eb1f4ba66dc6 eb1f4ba66dc6 Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 15:05:08 medaka_consensus_pipeline False Installed iuc 2c72b8c09a70 2c72b8c09a70 Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 15:05:56 medaka_variant False Installed iuc edf6d4003fad edf6d4003fad Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 15:06:31 medaka_variant_pipeline False Installed iuc 1040a307be0c 1040a307be0c Nanopore toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 15:07:09 ncbi_eutils_efetch False Installed iuc 4194e47b45d4 4194e47b45d4 Get Data toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 15:07:52 scpipe False Installed iuc a3b3ec00bf8f a3b3ec00bf8f RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 49 27/02/21 15:08:29 split_file_on_column False Installed bgruening 37a53100b67e 37a53100b67e Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 50 06/03/21 14:41:52 gfa_to_fa False Installed iuc e33c82b63727 e33c82b63727 Convert Formats toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 50 06/03/21 14:42:44 multiqc False Installed iuc 75c93c70d094 75c93c70d094 Quality Control toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 50 06/03/21 14:43:33 staramr False Installed nml 4b9a8031ab74 4b9a8031ab74 Metagenomic Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 51 13/03/21 14:40:26 column_maker False Installed devteam 02026300aa45 02026300aa45 Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 51 13/03/21 14:41:14 diff False Installed bgruening 156d0908e232 156d0908e232 Text Manipulation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:42:49 abyss False Errored iuc fa5259cc561b fa5259cc561b Staging Installation Assembly toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:43:02 busco False Errored iuc cf13a1e03e5b cf13a1e03e5b Staging Installation Annotation toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:43:15 describe_samples False Errored iuc 6d6982a1d1d0 6d6982a1d1d0 Staging Installation RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:43:29 dexseq False Errored iuc 62adf13b86ea 62adf13b86ea Staging Installation RNA Analysis toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:43:42 fastqe False Errored iuc 819b8c1657d5 819b8c1657d5 Staging Installation FASTQ Quality Control toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:43:55 hicexplorer_chicaggregatestatistic False Errored bgruening b53973719d7b b53973719d7b Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:44:08 hicexplorer_chicdifferentialtest False Errored bgruening 975b6a67e4b0 975b6a67e4b0 Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:44:21 hicexplorer_chicplotviewpoint False Errored bgruening 031872f8e2e0 031872f8e2e0 Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:44:34 hicexplorer_chicqualitycontrol False Errored bgruening db4a82804126 db4a82804126 Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:44:47 hicexplorer_chicsignificantinteractions False Errored bgruening 6001400eed99 6001400eed99 Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:45:01 hicexplorer_chicviewpoint False Errored bgruening dbfd2cfc0f66 dbfd2cfc0f66 Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:45:14 hicexplorer_chicviewpointbackgroundmodel False Errored bgruening 628259b7ffb4 628259b7ffb4 Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:45:27 hicexplorer_hicadjustmatrix False Errored bgruening a7fd644deda6 a7fd644deda6 Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:45:40 hicexplorer_hicaggregatecontacts False Errored bgruening ee370ade24cd ee370ade24cd Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:45:53 hicexplorer_hicaverageregions False Errored bgruening 03d7978293fe 03d7978293fe Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:46:06 hicexplorer_hicbuildmatrix False Errored bgruening 9edf8894a22d 9edf8894a22d Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:46:19 hicexplorer_hiccomparematrices False Errored bgruening 80abd5e2922a 80abd5e2922a Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:46:32 hicexplorer_hiccompartmentspolarization False Errored bgruening ed3dea19c464 ed3dea19c464 Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:46:46 hicexplorer_hicconvertformat False Errored bgruening 3e598b8e72e7 3e598b8e72e7 Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:46:59 hicexplorer_hiccorrectmatrix False Errored bgruening e4cb7809df61 e4cb7809df61 Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:47:12 hicexplorer_hiccorrelate False Errored bgruening 340aa8042c7f 340aa8042c7f Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:47:24 hicexplorer_hicdetectloops False Errored bgruening c3f9037423bd c3f9037423bd Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:47:37 hicexplorer_hicfindrestrictionsites False Errored bgruening 8823a9d45ed0 8823a9d45ed0 Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:47:50 hicexplorer_hicfindtads False Errored bgruening d404277cc87a d404277cc87a Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt
Update 52 20/03/21 14:48:03 hicexplorer_hicinfo False Errored bgruening 3a74a441b11f 3a74a441b11f Staging Installation HiCExplorer toolshed.g2.bx.psu.edu /home/runner/galaxy_tool_automation/update_build_/install_log.txt