-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathdev-all.i.xml
More file actions
2478 lines (2462 loc) · 119 KB
/
Copy pathdev-all.i.xml
File metadata and controls
2478 lines (2462 loc) · 119 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xml" href="https://training.galaxyproject.org/training-material/feed.xslt.xml"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<generator uri="https://jekyllrb.com/">Jekyll</generator>
<link href="https://training.galaxyproject.org/training-material/feeds/dev-all.i.xml" rel="self"/>
<link href="https://training.galaxyproject.org/training-material/" rel="alternate"/>
<updated>2026-08-03T00:59:01+00:00</updated>
<id>https://training.galaxyproject.org/training-material/feeds/dev-all.i.xml</id>
<title>GTN Dev All Updates</title>
<subtitle>The latest events, tutorials, slides, blog posts, FAQs, workflows, and contributors in the GTN.</subtitle>
<logo>https://training.galaxyproject.org/training-material/assets/images/GTN-60px.png</logo>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-application-components/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-application-components/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 08 - Galaxy Application Components: Models, Managers, and Services</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-tests/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-tests/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 16 - Galaxy Testing</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-dependency-injection/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-dependency-injection/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 06 - Dependency Injection in Galaxy</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-production/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-production/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 15 - Galaxy Production Deployment</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-client/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-client/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 12 - Galaxy Client Architecture</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-files/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-files/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 04 - Galaxy Files and Directory Structure</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-ecosystem/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-ecosystem/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 01 - Galaxy Ecosystem and Projects</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<author>
<name>Björn Grüning</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
<category term="contributions:authorship:bgruening"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-markdown/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-markdown/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 11 - Galaxy Markdown Architecture</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-file-sources/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-file-sources/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 10 - Galaxy File Sources Architecture</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<author>
<name>David López</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/davelopez/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
<category term="contributions:authorship:davelopez"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-tasks/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-tasks/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 07 - Galaxy Task Management with Celery</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-dependencies/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-dependencies/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 13 - Galaxy Dependencies Management</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-plugins/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-plugins/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 09 - Galaxy Plugin Architecture</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-startup/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-startup/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 14 - Galaxy Startup Process</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-principles/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-principles/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 03 - Galaxy Architecture Principles</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-project-management/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-project-management/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 02 - Galaxy Project Management and Contribution</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2026-02-19T09:49:54+00:00</published>
<updated>2026-02-19T09:49:54+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-frameworks/slides.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/architecture-frameworks/slides.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_slides"/>
<summary>layout: introduction_slides
</summary>
<title>🖼️ New Slide: Architecture 05 - Galaxy Web Frameworks</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
</entry>
<entry>
<published>2025-12-04T15:16:45+00:00</published>
<updated>2025-12-04T15:16:45+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-from-notebook/tutorial.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-from-notebook/tutorial.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_hands_on"/>
<summary>With the advance of python and Jupyter Notebooks, many astronomers have started using them for their data analysis pipelines. In response, members of the astronomy and data science communities have developed nb2galaxy – a module of the nb2workflow library – that allows for a quick and easy conversion of Jupyter Notebooks into Galaxy tools. While originally motivated by astronomical use cases, the tool is broadly applicable. This tutorial is therefore aimed at developers and researchers across disciplines who are interested in Galaxy.
</summary>
<title>📚 New Tutorial: nb2workflow: Generating Galaxy Tools From Jupyter Notebooks</title>
<author>
<name>Denys Savchenko</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/dsavchenko/</uri>
</author>
<author>
<name>Andrei Variu</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/Andrei-EPFL/</uri>
</author>
<contributor>
<name>Andrei Variu</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/Andrei-EPFL/</uri>
</contributor>
<contributor>
<name>Denys Savchenko</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/dsavchenko/</uri>
</contributor>
<contributor>
<name>Yvan Le Bras</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/</uri>
</contributor>
<contributor>
<name>Saskia Hiltemann</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/</uri>
</contributor>
<category term="contributions:authorship:dsavchenko"/>
<category term="contributions:authorship:Andrei-EPFL"/>
<category term="contributions:funding:eurosciencegateway"/>
<category term="contributions:funding:oscars"/>
<category term="contributions:funding:acme"/>
<category term="contributions:editing:Andrei-EPFL"/>
<category term="contributions:reviewing:dsavchenko"/>
<category term="contributions:reviewing:yvanlebras"/>
<category term="contributions:reviewing:shiltemann"/>
</entry>
<entry>
<published>2025-03-24T08:45:40+00:00</published>
<updated>2025-03-24T08:45:40+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/onedata-dev-instance/tutorial.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/onedata-dev-instance/tutorial.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="storage"/>
<category term="new tutorial_hands_on"/>
<summary>Prerequisites
</summary>
<title>📚 New Tutorial: Setting up a dev Onedata instance</title>
<author>
<name>Łukasz Opioła</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/lopiola/</uri>
</author>
<contributor>
<name>Martin Čech</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/martenson/</uri>
</contributor>
<contributor>
<name>Björn Grüning</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/</uri>
</contributor>
<contributor>
<name>Armin Dadras</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/dadrasarmin/</uri>
</contributor>
<category term="contributions:authorship:lopiola"/>
<category term="contributions:funding:eurosciencegateway"/>
<category term="contributions:reviewing:martenson"/>
<category term="contributions:reviewing:bgruening"/>
<category term="contributions:reviewing:dadrasarmin"/>
</entry>
<entry>
<published>2024-12-04T09:59:04+00:00</published>
<updated>2024-12-04T09:59:04+00:00</updated>
<id>https://training.galaxyproject.org/training-material/learning-pathways/dev_tools_training.html</id>
<link href="https://training.galaxyproject.org/training-material/learning-pathways/dev_tools_training.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="learning-pathway"/>
<category term="subdomain"/>
<category term="community"/>
<category term="tool development"/>
<category term="3-day course"/>
<category term="dev"/>
<category term="new learning-pathway"/>
<summary>Discover Galaxy's communities and learn how to create your subdomain and enrich it by writing, testing and submiting your tools on Galaxy. This learning pathway
will guide you through all the steps required to build a tool for Galaxy with Planemo for batch tools and how write an interactive tool.
</summary>
<title>🛤️ New Learning pathway: Tool development for a nice & shiny subdomain</title>
<author>
<name>GTN</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/</uri>
<email>galaxytrainingnetwork@gmail.com</email>
</author>
</entry>
<entry>
<published>2024-03-06T08:37:45+00:00</published>
<updated>2024-03-06T08:37:45+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-annotation/tutorial.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-annotation/tutorial.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_hands_on"/>
<summary>Galaxy offers thousands of tools. Many of these tools either have incomplete metadata or are not yet linked to sources of high-quality metadata such as bio.tools.
</summary>
<title>📚 New Tutorial: Adding and updating best practice metadata for Galaxy tools using the bio.tools registry</title>
<author>
<name>Bérénice Batut</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/</uri>
</author>
<author>
<name>Johan Gustafsson</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/supernord/</uri>
</author>
<author>
<name>Paul Zierep</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/</uri>
</author>
<contributor>
<name>Wendi Bacon</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/</uri>
</contributor>
<contributor>
<name>Saskia Hiltemann</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/</uri>
</contributor>
<contributor>
<name>Helena Rasche</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/</uri>
</contributor>
<contributor>
<name>Paul Zierep</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/</uri>
</contributor>
<contributor>
<name>Johan Gustafsson</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/supernord/</uri>
</contributor>
<contributor>
<name>Bérénice Batut</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/</uri>
</contributor>
<category term="contributions:authorship:bebatut"/>
<category term="contributions:authorship:supernord"/>
<category term="contributions:authorship:paulzierep"/>
<category term="contributions:editing:nomadscientist"/>
<category term="contributions:reviewing:shiltemann"/>
<category term="contributions:reviewing:hexylena"/>
<category term="contributions:reviewing:paulzierep"/>
<category term="contributions:reviewing:supernord"/>
<category term="contributions:reviewing:bebatut"/>
</entry>
<entry>
<published>2023-05-18T00:00:00+00:00</published>
<updated>2023-05-18T00:00:00+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-from-scratch/recordings/#tutorial-recording-18-may-2023</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-from-scratch/recordings/?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news#tutorial-recording-18-may-2023"/>
<category term="dev"/>
<category term="new "/>
<summary>A 50M long recording is now available.
</summary>
<title>🎥 New Recording: Recording of Creating Galaxy tools from Conda Through Deployment</title>
<author>
<name>Cristóbal Gallardo</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/</uri>
</author>
<author>
<name>Alex Ostrovsky</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/astrovsky01/</uri>
</author>
<category term="contributions:authorship:gallardoalba"/>
<category term="contributions:authorship:astrovsky01"/>
</entry>
<entry>
<published>2022-07-15T10:22:17+00:00</published>
<updated>2022-07-15T10:22:17+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/writing_tests/tutorial.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/writing_tests/tutorial.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_hands_on"/>
<summary>The Galaxy code base contains thousands of tests that include tests of different types (unit vs. functional vs. end-to-end; client vs. backend, etc.) that are supported by a variety of testing frameworks and libraries. In this tutorial, we will offer a small, yet representative sample of the types of tests you might write, as well as the concepts and issues you may need to be familiar with when writing tests for Galaxy code, whether as part of a new feature you are implementing, or as a standalone contribution to Galaxy’s testing code.
</summary>
<title>📚 New Tutorial: Writing Automated Tests for Galaxy</title>
<author>
<name>John Davis</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jdavcs/</uri>
</author>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<contributor>
<name>Helena Rasche</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/</uri>
</contributor>
<contributor>
<name>Saskia Hiltemann</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/</uri>
</contributor>
<contributor>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</contributor>
<contributor>
<name>John Davis</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jdavcs/</uri>
</contributor>
<category term="contributions:authorship:jdavcs"/>
<category term="contributions:authorship:jmchilton"/>
<category term="contributions:reviewing:hexylena"/>
<category term="contributions:reviewing:shiltemann"/>
<category term="contributions:reviewing:jmchilton"/>
<category term="contributions:reviewing:jdavcs"/>
</entry>
<entry>
<published>2022-06-23T11:09:29+00:00</published>
<updated>2022-06-23T11:09:29+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/bioblend-api/tutorial.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/bioblend-api/tutorial.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_hands_on"/>
<summary>BioBlend (Sloggett et al. 2013) is a Python library to enable simple interaction with Galaxy (Afgan et al. 2018) via the command line or scripts.
</summary>
<title>📚 New Tutorial: Scripting Galaxy using the API and BioBlend</title>
<author>
<name>Nicola Soranzo</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/</uri>
</author>
<contributor>
<name>Clare Sloggett</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/claresloggett/</uri>
</contributor>
<contributor>
<name>Nitesh Turaga</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/nturaga/</uri>
</contributor>
<contributor>
<name>Helena Rasche</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/</uri>
</contributor>
<contributor>
<name>Nicola Soranzo</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/</uri>
</contributor>
<contributor>
<name>Saskia Hiltemann</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/</uri>
</contributor>
<contributor>
<name>Nate Coraor</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/</uri>
</contributor>
<category term="contributions:authorship:nsoranzo"/>
<category term="contributions:editing:claresloggett"/>
<category term="contributions:editing:nturaga"/>
<category term="contributions:editing:hexylena"/>
<category term="contributions:reviewing:nsoranzo"/>
<category term="contributions:reviewing:hexylena"/>
<category term="contributions:reviewing:shiltemann"/>
<category term="contributions:reviewing:natefoo"/>
</entry>
<entry>
<published>2022-03-11T00:00:00+00:00</published>
<updated>2022-03-11T00:00:00+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-from-scratch/recordings/#tutorial-recording-11-march-2022</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-from-scratch/recordings/?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news#tutorial-recording-11-march-2022"/>
<category term="dev"/>
<category term="new "/>
<summary>A 40M long recording is now available.
</summary>
<title>🎥 New Recording: Recording of Creating Galaxy tools from Conda Through Deployment</title>
<author>
<name>Cristóbal Gallardo</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/</uri>
</author>
<category term="contributions:authorship:gallardoalba"/>
</entry>
<entry>
<published>2022-03-02T09:20:19+00:00</published>
<updated>2022-03-02T09:20:19+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/interactive-tools/tutorial.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/interactive-tools/tutorial.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_hands_on"/>
<summary><!–
</summary>
<title>📚 New Tutorial: Galaxy Interactive Tools</title>
<author>
<name>Estelle Ancelet</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/eancelet/</uri>
</author>
<author>
<name>Yvan Le Bras</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/</uri>
</author>
<author>
<name>Cameron Hyde</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/neoformit/</uri>
</author>
<author>
<name>Lain Pavot</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/Lain-inrae/</uri>
</author>
<author>
<name>Anthony Bretaudeau</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/</uri>
</author>
<author>
<name>Helena Rasche</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/</uri>
</author>
<author>
<name>Marie Josse</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/</uri>
</author>
<contributor>
<name>Helena Rasche</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/</uri>
</contributor>
<contributor>
<name>Cameron Hyde</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/neoformit/</uri>
</contributor>
<contributor>
<name>Marius van den Beek</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/</uri>
</contributor>
<contributor>
<name>Lain Pavot</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/Lain-inrae/</uri>
</contributor>
<contributor>
<name>Saskia Hiltemann</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/</uri>
</contributor>
<contributor>
<name>Björn Grüning</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/</uri>
</contributor>
<contributor>
<name>Tunc Kayikcioglu</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/tuncK/</uri>
</contributor>
<contributor>
<name>Marie Josse</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/</uri>
</contributor>
<contributor>
<name>Anthony Bretaudeau</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/</uri>
</contributor>
<category term="contributions:authorship:eancelet"/>
<category term="contributions:authorship:yvanlebras"/>
<category term="contributions:authorship:neoformit"/>
<category term="contributions:authorship:Lain-inrae"/>
<category term="contributions:authorship:abretaud"/>
<category term="contributions:authorship:hexylena"/>
<category term="contributions:authorship:Marie59"/>
<category term="contributions:reviewing:hexylena"/>
<category term="contributions:reviewing:neoformit"/>
<category term="contributions:reviewing:mvdbeek"/>
<category term="contributions:reviewing:Lain-inrae"/>
<category term="contributions:reviewing:shiltemann"/>
<category term="contributions:reviewing:bgruening"/>
<category term="contributions:reviewing:tuncK"/>
<category term="contributions:reviewing:Marie59"/>
<category term="contributions:reviewing:abretaud"/>
</entry>
<entry>
<published>2022-02-28T15:26:33+00:00</published>
<updated>2022-02-28T15:26:33+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/debugging/faqs/selenium_error.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/debugging/faqs/selenium_error.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="faqs"/>
<category term="dev"/>
<category term="new faq"/>
<summary>If you get the following error:
</summary>
<title>❓ New FAQ: When I try to run a Selenium test, I get an error</title>
<author>
<name>Assunta DeSanto</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/assuntad23/</uri>
</author>
<category term="contributions:authorship:assuntad23"/>
</entry>
<entry>
<published>2022-02-28T15:26:33+00:00</published>
<updated>2022-02-28T15:26:33+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/replace_manual_install.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/replace_manual_install.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="faqs"/>
<category term="dev"/>
<category term="new faq"/>
<summary>
</summary>
<title>❓ New FAQ: Is the ToolFactory a complete replacement for manual tool building?</title>
<author>
<name>Ross Lazarus</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/fubar2/</uri>
</author>
<category term="contributions:authorship:fubar2"/>
</entry>
<entry>
<published>2022-02-28T15:26:33+00:00</published>
<updated>2022-02-28T15:26:33+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/planemo_multiple.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/planemo_multiple.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="faqs"/>
<category term="dev"/>
<category term="new faq"/>
<summary>
</summary>
<title>❓ New FAQ: Only one Planemo test runs at a time. Why doesn't the server allow more than one at once?</title>
<author>
<name>Ross Lazarus</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/fubar2/</uri>
</author>
<category term="contributions:authorship:fubar2"/>
</entry>
<entry>
<published>2022-02-28T15:26:33+00:00</published>
<updated>2022-02-28T15:26:33+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/debugging/faqs/no_tests_no_yarn.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/debugging/faqs/no_tests_no_yarn.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="faqs"/>
<category term="dev"/>
<category term="new faq"/>
<summary>Make sure you have executed scripts/common_startup.sh and have activated the virtual environment (. .venv/vin/activate) in your current terminal session.
</summary>
<title>❓ New FAQ: I cannot run client tests because yarn is not installed.</title>
<author>
<name>Saskia Hiltemann</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/</uri>
</author>
<category term="contributions:authorship:shiltemann"/>
</entry>
<entry>
<published>2022-02-28T15:26:33+00:00</published>
<updated>2022-02-28T15:26:33+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/local_install.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/local_install.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="faqs"/>
<category term="dev"/>
<category term="new faq"/>
<summary>You can but it can’t really be very useful. The ToolFactory is a Galaxy tool, but it installs newly generated tools automatically into the local Galaxy server. This is not normally possible because a tool cannot escape Galaxy’s job execution environment isolation. The ToolFactory needs to write to the normally forbidden server’s configuration so the new tool appears in the tool menu and is installed in the TFtools directory which is a subdirectory of the Galaxy tools directory.
</summary>
<title>❓ New FAQ: Why do I need that big (~5GB!) complicated Docker thing - can I just install the ToolFactory into our local galaxy server from the toolshed?</title>
<author>
<name>Ross Lazarus</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/fubar2/</uri>
</author>
<category term="contributions:authorship:fubar2"/>
</entry>
<entry>
<published>2022-02-28T15:26:33+00:00</published>
<updated>2022-02-28T15:26:33+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/job_grey.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/job_grey.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="faqs"/>
<category term="dev"/>
<category term="new faq"/>
<summary>
</summary>
<title>❓ New FAQ: First job I submitted remains grey or running for a long time - is it broken?</title>
<author>
<name>Ross Lazarus</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/fubar2/</uri>
</author>
<category term="contributions:authorship:fubar2"/>
</entry>
<entry>
<published>2022-02-28T15:26:33+00:00</published>
<updated>2022-02-28T15:26:33+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-from-scratch/faqs/get_planemo.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-from-scratch/faqs/get_planemo.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="faqs"/>
<category term="dev"/>
<category term="new faq"/>
<summary>
</summary>
<title>❓ New FAQ: Where can I get planemo?</title>
<author>
<name>Alex Ostrovsky</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/astrovsky01/</uri>
</author>
<author>
<name>Dave B.</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/davebx/</uri>
</author>
<author>
<name>Matthias Bernt</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/bernt-matthias/</uri>
</author>
<category term="contributions:authorship:astrovsky01"/>
<category term="contributions:authorship:davebx"/>
<category term="contributions:authorship:bernt-matthias"/>
</entry>
<entry>
<published>2022-02-28T15:26:33+00:00</published>
<updated>2022-02-28T15:26:33+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/formats.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/formats.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="faqs"/>
<category term="dev"/>
<category term="new faq"/>
<summary>
</summary>
<title>❓ New FAQ: What file/data formats are defined for I/O in Galaxy?</title>
<author>
<name>Ross Lazarus</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/fubar2/</uri>
</author>
<category term="contributions:authorship:fubar2"/>
</entry>
<entry>
<published>2022-02-28T15:26:33+00:00</published>
<updated>2022-02-28T15:26:33+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/error_compose.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/error_compose.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="faqs"/>
<category term="dev"/>
<category term="new faq"/>
<summary>
</summary>
<title>❓ New FAQ: `docker-compose up` fails with error `/usr/bin/start.sh: line 133: /galaxy/.venv/bin/uwsgi: No such file or directory`</title>
<author>
<name>Ross Lazarus</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/fubar2/</uri>
</author>
<category term="contributions:authorship:fubar2"/>
</entry>
<entry>
<published>2022-02-28T15:26:33+00:00</published>
<updated>2022-02-28T15:26:33+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/error_closure_args.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/error_closure_args.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="faqs"/>
<category term="dev"/>
<category term="new faq"/>
<summary>Did your code declare the args vector with something like args = commandArgs(trailingOnly=TRUE) before it tried to access args[1] ?
</summary>
<title>❓ New FAQ: My Rscript tool generates a strange R error on STDOUT about an invalid operation on a closure called 'args' ?</title>
<author>
<name>Ross Lazarus</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/fubar2/</uri>
</author>
<category term="contributions:authorship:fubar2"/>
</entry>
<entry>
<published>2022-02-28T15:26:33+00:00</published>
<updated>2022-02-28T15:26:33+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/collections_test.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-generators/faqs/collections_test.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="faqs"/>
<category term="dev"/>
<category term="new faq"/>
<summary>
</summary>
<title>❓ New FAQ: I want to use a collection for outputs but it always passes the test even when the script fails. Why?</title>
<author>
<name>Ross Lazarus</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/fubar2/</uri>
</author>
<category term="contributions:authorship:fubar2"/>
</entry>
<entry>
<published>2022-02-28T15:26:33+00:00</published>
<updated>2022-02-28T15:26:33+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-from-scratch/faqs/bioconda_files_exist.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-from-scratch/faqs/bioconda_files_exist.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="faqs"/>
<category term="dev"/>
<category term="new faq"/>
<summary>The recipe has already been added previously. If you want to create the recipe from scratch you may just do this in another directory below recipes/.
</summary>
<title>❓ New FAQ: The folder `recipes/belerophon/` and the file `meta.yaml` already exist in bioconda?</title>
<author>
<name>Alex Ostrovsky</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/astrovsky01/</uri>
</author>
<author>
<name>Dave B.</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/davebx/</uri>
</author>
<author>
<name>Matthias Bernt</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/bernt-matthias/</uri>
</author>
<category term="contributions:authorship:astrovsky01"/>
<category term="contributions:authorship:davebx"/>
<category term="contributions:authorship:bernt-matthias"/>
</entry>
<entry>
<published>2021-06-24T09:10:40+00:00</published>
<updated>2021-06-24T09:10:40+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/faqs/contributing.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/faqs/contributing.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="faqs"/>
<category term="dev"/>
<category term="new faq"/>
<summary>Contributing to Galaxy is a multi-step process, this will guide you through it.</summary>
<title>❓ New FAQ: How to Contribute to Galaxy</title>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<author>
<name>Helena Rasche</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/</uri>
</author>
<category term="contributions:authorship:jmchilton"/>
<category term="contributions:authorship:hexylena"/>
</entry>
<entry>
<published>2021-06-15T15:07:18+00:00</published>
<updated>2021-06-15T15:07:18+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-from-scratch/tutorial.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/tool-from-scratch/tutorial.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_hands_on"/>
<summary>Tools wrappers allow any command line runnable code or programs to be run inside a galaxy environment.
</summary>
<title>📚 New Tutorial: Creating Galaxy tools from Conda Through Deployment</title>
<author>
<name>Alex Ostrovsky</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/astrovsky01/</uri>
</author>
<author>
<name>Dave B.</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/davebx/</uri>
</author>
<author>
<name>Matthias Bernt</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/bernt-matthias/</uri>
</author>
<contributor>
<name>Helena Rasche</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/</uri>
</contributor>
<contributor>
<name>Saskia Hiltemann</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/</uri>
</contributor>
<contributor>
<name>Gildas Le Corguillé</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/lecorguille/</uri>
</contributor>
<contributor>
<name>Anthony Bretaudeau</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/</uri>
</contributor>
<contributor>
<name>Marius van den Beek</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/</uri>
</contributor>
<contributor>
<name>Dave B.</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/davebx/</uri>
</contributor>
<contributor>
<name>Alex Ostrovsky</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/astrovsky01/</uri>
</contributor>
<contributor>
<name>Matthias Bernt</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/bernt-matthias/</uri>
</contributor>
<category term="contributions:authorship:astrovsky01"/>
<category term="contributions:authorship:davebx"/>
<category term="contributions:authorship:bernt-matthias"/>
<category term="contributions:reviewing:hexylena"/>
<category term="contributions:reviewing:shiltemann"/>
<category term="contributions:reviewing:lecorguille"/>
<category term="contributions:reviewing:abretaud"/>
<category term="contributions:reviewing:mvdbeek"/>
<category term="contributions:reviewing:davebx"/>
<category term="contributions:reviewing:astrovsky01"/>
<category term="contributions:reviewing:bernt-matthias"/>
</entry>
<entry>
<published>2021-06-15T10:13:45+00:00</published>
<updated>2021-06-15T10:13:45+00:00</updated>
<id>https://training.galaxyproject.org/training-material/topics/dev/tutorials/debugging/tutorial.html</id>
<link href="https://training.galaxyproject.org/training-material/topics/dev/tutorials/debugging/tutorial.html?utm_source=matrix&utm_medium=newsbot&utm_campaign=matrix-news"/>
<category term="dev"/>
<category term="new tutorial_hands_on"/>
<summary>In this tutorial we will demonstrate how to find and fix common types of bugs you may encounter as a contributor to Galaxy. We will step you through the process of finding and fixing a bug - from locating specific errors in the logs of Galaxy’s GitHub Actions, to identifying their cause, developing a solution and committing your edits
</summary>
<title>📚 New Tutorial: Debugging Galaxy</title>
<author>
<name>Assunta DeSanto</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/assuntad23/</uri>
</author>
<author>
<name>John Davis</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jdavcs/</uri>
</author>
<author>
<name>John Chilton</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/</uri>
</author>
<contributor>
<name>Björn Grüning</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/</uri>
</contributor>
<contributor>
<name>Helena Rasche</name>
<uri>https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/</uri>
</contributor>
<contributor>