-
Notifications
You must be signed in to change notification settings - Fork 13
/
videos.yaml
4435 lines (4367 loc) · 130 KB
/
videos.yaml
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
admin/ansible-galaxy/tutorial:
description: null
force_archive_materials: true
materials:
- link: topics/admin/tutorials/ansible-galaxy/tutorial.html
title: Tutorial (All Parts)
type: Tutorial
- link: topics/admin/tutorials/database/slides.html
title: Database Slides
type: Slides
- link: topics/admin/tutorials/systemd-supervisor/slides.html
title: systemd Slides
type: Slides
- link: topics/admin/tutorials/production/slides.html
title: Moving Towards Production Slides
type: Slides
tags:
- admin
type: Tutorial
versions:
- captions:
- natefoo
- hexylena
date: '2022-03-01'
galaxy_version: '21.05'
length: 2H50M
link: LPK8rP_qUiA
speakers:
- natefoo
- hexylena
- captions:
- natefoo
- hexylena
date: '2021-06-28'
galaxy_version: '21.05'
length: 2H47M
link: zT70luZqPOU
speakers:
- natefoo
- captions:
- shiltemann
- hexylena
date: '2021-02-15'
galaxy_version: '21.01'
length: 53M
link: il83uApg7Hc
speakers:
- hexylena
admin/ansible/slides:
description: null
materials:
- link: topics/admin/tutorials/ansible/slides.html
type: Slides
tags:
- admin
type: Lecture
versions:
- captions:
- martenson
date: '2021-02-15'
galaxy_version: '21.01'
length: 5M
link: KFpbfmN0OTE
speakers:
- jdavcs
admin/ansible/tutorial:
description: null
materials:
- link: topics/admin/tutorials/ansible/tutorial.html
type: Tutorial
tags:
- admin
type: Tutorial
versions:
- captions:
- martenson
date: '2021-02-15'
galaxy_version: '21.01'
length: 61M
link: 2KdT0sYKUeE
speakers:
- martenson
admin/connect-to-compute-cluster/combined:
description: null
materials:
- link: topics/admin/tutorials/connect-to-compute-cluster/slides.html
type: Slides
- link: topics/admin/tutorials/connect-to-compute-cluster/tutorial.html
type: Tutorial
tags:
- admin
type: Tutorial
versions:
- captions:
- cat-bro
- shiltemann
date: '2021-02-15'
galaxy_version: '21.01'
length: 31M
link: R0NbHscL3jA
speakers:
- hexylena
admin/cvmfs/slides:
description: null
materials:
- link: topics/admin/tutorials/cvmfs/slides.html
type: Slides
tags:
- admin
type: Tutorial
versions:
- captions:
- galaxycommunity
date: '2021-02-15'
galaxy_version: '21.01'
length: 3M
link: g_cavAO-fBM
speakers:
- awspolly
admin/cvmfs/tutorial:
description: null
materials:
- link: topics/admin/tutorials/cvmfs/tutorial.html
type: Tutorial
tags:
- admin
type: Tutorial
versions:
- captions:
- slugger70
date: '2021-02-15'
galaxy_version: '21.01'
length: 23M
link: X3iFMZP_fQ8
speakers:
- slugger70
admin/data-library/tutorial:
description: null
materials:
- link: topics/admin/tutorials/data-library/tutorial.html
type: Tutorial
tags:
- admin
type: Tutorial
versions:
- captions:
- hexylena
- shiltemann
date: '2021-02-15'
galaxy_version: '21.01'
length: 22M
link: 6BWu29Oiihw
speakers:
- shiltemann
admin/gxadmin/slides:
description: null
materials:
- link: topics/admin/tutorials/gxadmin/slides.html
type: Slides
- link: topics/admin/tutorials/gxadmin/tutorial.html
type: Exercise
tags:
- admin
type: Tutorial
versions:
- captions:
- galaxycommunity
date: '2021-02-15'
galaxy_version: '21.01'
length: 2M
link: QFwOgDyFSSA
speakers:
- awspolly
admin/interactive-tools:
description: null
materials:
- link: topics/admin/tutorials/interactive-tools/slides.html
type: Slides
- link: topics/admin/tutorials/interactive-tools/tutorial.html
type: Tutorial
tags:
- admin
type: Tutorial
versions:
- captions:
- abretaud
- hexylena
date: '2021-02-15'
galaxy_version: '21.01'
length: 44M
link: lACsIhnbTbE
speakers:
- abretaud
admin/job-destinations/tutorial:
description: null
materials:
- link: topics/admin/tutorials/job-destinations/tutorial.html
type: Tutorial
tags:
- admin
type: Tutorial
versions:
- captions:
- shiltemann
date: '2021-02-15'
galaxy_version: '21.01'
length: 31M
link: qX8GjTJwnAk
speakers:
- hexylena
admin/job-metrics/tutorial:
description: null
materials:
- link: topics/admin/tutorials/connect-to-compute-cluster/tutorial.html
type: Tutorial
tags:
- admin
title: Recording Job Metrics
type: Tutorial
versions:
- captions:
- beatrizserrano
date: '2021-02-15'
galaxy_version: '21.01'
length: 6M
link: 7CYI5yw9MN8
speakers:
- hexylena
admin/maintenance/slides:
description: null
materials:
- link: topics/admin/tutorials/maintenance/slides.html
type: Slides
tags:
- admin
type: Lecture
versions:
- captions:
- galaxycommunity
date: '2021-02-15'
galaxy_version: '21.01'
length: 2M
link: 41_3WHXZA-o
speakers:
- awspolly
admin/monitoring/slides:
description: null
materials:
- link: topics/admin/tutorials/monitoring/slides.html
type: Slides
tags:
- admin
type: Lecture
versions:
- captions:
- galaxycommunity
date: '2021-02-15'
galaxy_version: '21.01'
length: 2M
link: qcp9lEUxCGI
speakers: []
admin/monitoring/tutorial:
description: null
materials:
- link: topics/admin/tutorials/monitoring/tutorial.html
type: Tutorial
tags:
- admin
type: Tutorial
versions:
- captions:
- shiltemann
- hexylena
date: '2021-02-15'
galaxy_version: '21.01'
length: 73M
link: drUaYQtMBLY
speakers: []
admin/object-store/exercise:
description: null
materials:
- link: topics/admin/tutorials/object-store/tutorial.html
type: Exercise
tags:
- admin
type: Tutorial
versions:
- captions:
- cat-bro
date: '2021-02-15'
galaxy_version: '21.01'
length: 18M
link: Hv2bvjk5sjE
speakers:
- gmauro
admin/pulsar/slides:
description: null
materials:
- link: topics/admin/tutorials/pulsar/slides-plain.html
type: Slides
tags:
- admin
type: Lecture
versions:
- captions:
- shiltemann
date: '2021-02-15'
galaxy_version: '21.01'
length: 14M
link: M1-Z_2tuQPI
speakers:
- slugger70
admin/pulsar/tutorial:
description: null
materials:
- link: topics/admin/tutorials/pulsar/tutorial.html
type: Tutorial
tags:
- admin
type: Tutorial
versions:
- captions:
- hexylena
date: '2021-06-28'
galaxy_version: '21.05'
length: 1H28M
link: f0QdF8NDhsM
speakers:
- slugger70
- captions:
- simonbray
- slugger70
date: '2021-02-15'
galaxy_version: '21.01'
length: 57M
link: a7fKJT4Fs9k
speakers:
- slugger70
admin/apptainer/tutorial:
description: Running jobs in Apptainer
materials:
- link: topics/admin/tutorials/apptainer/tutorial.html
type: Tutorial
tags:
- admin
type: Tutorial
versions:
- captions:
- gallardoalba
- slugger70
date: '2021-06-28'
galaxy_version: '21.05'
length: 43M
link: q6Dt7j713tI
speakers:
- slugger70
- captions:
- hexylena
- cat-bro
date: '2021-02-15'
galaxy_version: '21.01'
length: 16M
link: airzg4-ETEs
speakers:
- hexylena
admin/tiaas/tutorial:
description: null
materials:
- link: topics/admin/tutorials/tiaas/tutorial.html
type: Tutorial
tags:
- admin
type: Tutorial
versions:
- captions:
- hexylena
- shiltemann
date: '2021-02-15'
galaxy_version: '21.01'
length: 24M
link: tz0ZbK_8Vcc
speakers:
- hexylena
admin/tool-management/slides:
description: null
materials:
- link: topics/admin/tutorials/tool-management/slides.html
type: Slides
- link: topics/admin/tutorials/tool-management/tutorial.html
type: Tutorial
tags:
- admin
type: Lecture
versions:
- captions:
- cat-bro
date: '2021-06-28'
galaxy_version: '21.05'
length: 17M
link: 8Rdho_eUeKc
speakers:
- cat-bro
admin/tool-management/tutorial:
description: null
materials:
- link: topics/admin/tutorials/tool-management/slides.html
type: Slides
- link: topics/admin/tutorials/tool-management/tutorial.html
type: Tutorial
tags:
- admin
type: Tutorial
versions:
- captions:
- cat-bro
date: '2021-06-28'
galaxy_version: '21.05'
length: 27M
link: pda0v9b3vO4
speakers:
- cat-bro
- captions:
- eancelet
date: '2021-02-15'
galaxy_version: '21.01'
length: 47M
link: 7Qqwrzn--YI
speakers:
- cat-bro
admin/tus/tutorial:
description: "Here you\u2019ll learn to setup TUS an open source resumable file\
\ upload server to process uploads for Galaxy. We use an external process here\
\ to offload the main Galaxy processes for more important work and not impact\
\ the entire system during periods of heavy uploading.\n"
materials:
- link: topics/admin/tutorials/tus/tutorial.html
type: Tutorial
tags:
- admin
type: Tutorial
versions:
- captions:
- hexylena
date: '2022-03-11'
galaxy_version: '22.01'
length: 7M
link: v5sbIqF_0qo
speakers:
- hexylena
admin/upgrading/tutorial:
description: null
materials:
- link: topics/admin/tutorials/upgrading/tutorial.html
type: tutorial
tags:
- admin
type: Tutorial
versions:
- captions:
- slugger70
- hexylena
date: '2021-02-15'
galaxy_version: '21.01'
length: 36M
link: OnL47MvXjoo
speakers:
- slugger70
admin/users-groups-quotas/slides:
description: null
materials:
- link: topics/admin/tutorials/users-groups-quotas/slides.html
type: Slides
tags:
- admin
type: Lecture
versions:
- captions:
- galaxycommunity
date: '2021-02-15'
galaxy_version: '21.01'
length: 4M
link: crywu31L8qg
speakers:
- awspolly
admin/week-overview-slides:
description: null
materials:
- link: topics/admin/tutorials/ansible-galaxy/slides.html
type: Week Overview Slides
support_channel: admin_ansible-galaxy
tags:
- admin
title: Admin Training Week Overview
type: Tutorial
versions:
- captions:
- shiltemann
date: '2021-02-15'
galaxy_version: '21.01'
length: 4M
link: JN-C5UbHthY
speakers:
- hexylena
admin/welcome:
description: 'This supplementary welcome will give you additional details that are
needed for the week.
Please note that when you use the mentioned /completed command, you do not need
to specify a history URL. Just `/completed` is sufficient.
'
materials: []
support_channel: event-gat
tags:
- admin
title: Admin Welcome
type: Lecture
versions:
- captions:
- hexylena
date: '2021-02-15'
galaxy_version: '21.01'
length: 4M
link: JN-C5UbHthY
speakers:
- hexylena
- martenson
- slugger70
- nsoranzo
- shiltemann
- gmauro
- cat-bro
assembly/assembly-with-preprocessing:
description: This tutorial guides you through the preprocessing of sequencing data
of bronchoalveolar lavage fluid (BALF) samples obtained from early COVID-19 patients
in China. Since such samples are expected to be contaminated signficantly with
human sequenced reads, the goal is to enrich the data for SARS-CoV-2 reads by
identifying and discarding reads of human origin before trying to assemble the
viral genome sequence.
materials:
- link: topics/assembly/tutorials/assembly-with-preprocessing/slides.html
type: Slides
- link: topics/assembly/tutorials/assembly-with-preprocessing/tutorial.html
type: Tutorial
tags:
- assembly
type: Tutorial
versions:
- captions:
- mtekman
date: '2021-02-15'
galaxy_version: '21.01'
length: 25M
link: jNFLYhjgJPs
speakers:
- gallardoalba
assembly/largegenome/tutorial:
description: In this tutorial, we will walk you through an assembly of a large genome, such as a plant or animal genome.
materials:
- link: topics/assembly/tutorials/largegenome/tutorial.html
title: Large genome assembly and polishing
type: Tutorial
tags: [assembly]
type: Tutorial
versions:
- link: BM70nvwWjOY
captions: [annasyme]
speakers:
- annasyme
length: 25M
date: '2023-05-16'
galaxy_version: '23.01'
assembly/chloroplast-assembly/tutorial:
description: In this tutorial, you will assemble a chloroplast genome using a combination
of short and long read data.
materials:
- link: topics/assembly/tutorials/chloroplast-assembly/tutorial.html
title: Chloroplast genome assembly
type: Tutorial
tags:
- assembly
type: Lecture & Tutorial
versions:
- captions:
- annasyme
date: '2021-02-15'
galaxy_version: '21.01'
length: 35M
link: eyfCyINTD_E
speakers:
- annasyme
assembly/general-introduction/slides:
description: This lecture walks you through the basic concepts involved in assembling
a genome from short-read sequencing data.
materials:
- link: topics/assembly/tutorials/general-introduction/slides.html
title: An Introduction to Genome Assembly
type: Slides
tags:
- assembly
type: Lecture
versions:
- captions:
- shiltemann
- hexylena
date: '2021-02-15'
galaxy_version: '21.01'
length: 25M
link: -EX_G1griZE
speakers:
- slugger70
assembly/vgp_genome_assembly-workflow:
description: 'This demo walks you through running the VGP Genome Assembly workflows,
rather than the whole tutorial (as most GTN videos do)
'
materials:
- link: topics/assembly/tutorials/vgp_genome_assembly/tutorial.html
title: Full Tutorial (Step-by-step, not workflow-based like video)
type: Tutorial
- external: true
link: https://www.dropbox.com/sh/ayix345v11n69es/AABJerasUhiD4JfSgS3g0kS7a?dl=0&preview=VGP-Gtapas-2022.pdf
type: Non-GTN Lecture
tags:
- assembly
title: Running the VGP Genome Assembly workflows
type: Demo
versions:
- captions: [delphine-l]
date: '2022-03-13'
galaxy_version: '21.09'
length: 10M
link: 0EoBDiyd-84
speakers:
- delphine-l
climate/fates/slides:
description: This lecture provides a brief overview of FATES
materials:
- link: topics/climate/tutorials/fates/slides.html
title: Functionally Assembled Terrestrial Ecosystem Simulator (FATES)
type: Slides
tags:
- climate
type: Lecture
versions:
- captions:
- annefou
date: '2021-02-15'
galaxy_version: '21.01'
length: 7M
link: Z57C7MQG95s
speakers:
- awspolly
climate/fates/tutorial:
description: This tutorial will walk you through a Galaxy analysis step by step
materials:
- link: topics/climate/tutorials/fates/tutorial.html
title: Functionally Assembled Terrestrial Ecosystem Simulator (FATES)
type: Tutorial
tags:
- climate
type: Tutorial
versions:
- captions:
- s3by01
date: '2021-02-15'
galaxy_version: '21.01'
length: 1H20M
link: 0LsEx11eLiI
speakers:
- annefou
climate/pangeo-notebook/tutorial:
description: "In this tutorial, we will learn about Xarray, one of the most used\
\ Python\nlibrary from the Pangeo ecosystem.\n\nWe will be using data from Copernicus\
\ Atmosphere Monitoring Service and\nmore precisely PM2.5 (Particle Matter < 2.5\
\ \u03BCm) 4 days forecast from\nDecember, 22 2021. Parallel data analysis with\
\ Pangeo is not covered in\nthis tutorial.\n"
materials:
- link: topics/climate/tutorials/pangeo-notebook/tutorial.html
title: Pangeo Notebook in Galaxy - Introduction to Xarray
type: Tutorial
tags:
- climate
type: Tutorial
versions:
- captions:
- annefou
date: '2022-03-03'
galaxy_version: '21.09'
length: 17M
link: XFF2yRcYGp0
speakers:
- annefou
climate/pangeo/tutorial:
description: 'In this tutorial, you will learn how to manipulate netCDF data files
using Xarray Galaxy Tools. NetCDF stands for network Common Data Form and is one
of the most popular file format in climate science. It is used for storing multidimensional
scientific data variables such as temperature or humidity, and metadata can be
added to facilitate sharing of netCDF data. netCDF is widely used outside the
Climate Science community and each community has its own set of conventions, especially
for metadata. The Climate and Forecast metadata convention, also called CF-convention
is used by the Climate community and is designed to promote the processing and
sharing of netCDF files.'
materials:
- link: topics/climate/tutorials/pangeo/tutorial.html
title: Pangeo ecosystem 101 for everyone - Introduction to Xarray Galaxy Tools
type: Tutorial
tags:
- climate
type: Tutorial
versions:
- captions:
- annefou
date: '2022-03-03'
galaxy_version: '21.09'
length: 1H20M
link: V43jEJfa6hY
speakers:
- annefou
community/welcome:
description: This short video gives an overview of the worldwide Galaxy community,
and different ways you can get involved! <strong>Video created by Beatriz Serrano-Solano</strong>.
materials:
- external: true
link: https://galaxyproject.org
title: galaxyproject.org
type: GalaxyProject Home
- external: true
link: https://galaxyproject.org/use/
title: Find a Galaxy server near you!
type: Galaxy servers
- external: true
link: https://training.galaxyproject.org
title: Start learning Galaxy
type: Galaxy Training Network
- external: true
link: https://help.galaxyproject.org/
title: Galaxy Help Forum
type: Support
- external: true
link: https://www.zotero.org/groups/1732893/galaxy
title: Zotero
type: Galaxy Publications
- external: true
link: https://galaxyproject.org/community/
title: Find and Join a community
type: Galaxy Communities
- external: true
link: https://galaxyproject.org/events/
title: Galaxy Event Horizon
type: Events
- external: true
link: https://galaxyproject.org/mailing-lists/
title: Stay informed of Galaxy activity!
type: Mailing Lists
- external: true
link: https://galaxyproject.org/community/wg/
title: Find and join a WG
type: Galaxy Working Groups
- external: true
link: https://github.com/galaxyproject
title: galaxyproject
type: GitHub
- external: true
link: https://gitter.im/galaxyproject/Lobby
title: Start talking with the Galaxy Community!
type: Gitter Chat
- external: true
link: https://gitter.im/Galaxy-Training-Network/Lobby
title: Join the training discussion here!
type: GTN Gitter
- external: true
link: https://galaxyproject.org/events/2021-02-papercuts/
title: Monthly Collaboration Fest
type: PaperCuts
- external: true
link: https://github.com/galaxyproject/training-material/issues/1712
title: Everybody Welcome!
type: GTN CoFest
- external: true
link: https://twitter.com/galaxyproject
title: follow @galaxyproject
type: GalaxyProject Twitter
- external: true
link: https://twitter.com/gxytraining
title: follow the GTN @gxytraining
type: GTN Twitter
tags:
- community
title: Meet & Join the Galaxy Community!
type: Welcome
versions:
- captions:
- shiltemann
date: '2021-02-15'
galaxy_version: '21.01'
length: 5M
link: -1MPdxmRs8U
speakers:
- galaxycommunity
computational-chemistry/htmd-analysis/tutorial:
description: "Molecular dynamics (MD) is a method to simulate molecular motion by\
\ iterative application of Newton\u2019s laws of motion. This tutorial provides\
\ an introduction to using high-throughput molecular dynamics to study protein-ligand\
\ interaction, as applied to the N-terminal domain of Hsp90 (heat shock protein\
\ 90)."
materials:
- link: topics/computational-chemistry/tutorials/htmd-analysis/tutorial.html
title: High Throughput Molecular Dynamics and Analysis
type: Tutorial
tags:
- computational-chemistry
type: Tutorial
versions:
- captions:
- simonbray
date: '2021-02-15'
galaxy_version: '21.01'
length: 1H40M
link: LjW3nES04bI
speakers:
- simonbray
- chrisbarnettster
contributing/create-new-tutorial-slides/slides:
description: 'This lecture goes through the process of how to create a slide deck,
common things you should bear in mind while you''re writing them, and how to enable
the amazing slides-to-video features for your slide decks! This video itself was
produced automatically from the GTN''s slide decks, anyone making edits to these
slides will cause them to be rebuilt, making organising videos for events easier
than ever.
'
materials:
- link: topics/contributing/tutorials/create-new-tutorial-slides/slides.html
title: Creating Slides for the GTN
type: Slides
tags:
- contributing
type: Lecture
versions:
- captions:
- galaxycommunity
date: '2021-02-15'
galaxy_version: '21.01'
length: 5M
link: Gm1MKAwuLxg
speakers:
- awspolly
contributing/create-new-tutorial/tutorial:
description: This tutorial will go through all of the steps of creating a simple
tutorial and contributing it to the GTN.
materials:
- link: topics/contributing/tutorials/create-new-tutorial/tutorial.html
title: Creating a new tutorial
type: Tutorial
- link: topics/contributing/tutorials/create-new-tutorial-content/tutorial.html
title: Creating content in Markdown
type: Related tutorial
tags:
- contributing
type: Tutorial
versions:
- captions:
- EngyNasr
date: '2021-02-15'
galaxy_version: '21.01'
length: 42M
link: Vw9h5kvRH2k
speakers:
- bebatut
contributing/gitpod/tutorial:
description: This tutorial will show you how you can preview your contributions
to the GTN online using GitPod.
materials:
- link: topics/contributing/tutorials/gitpod/tutorial.html
title: Running the GTN website online using GitPod
type: Tutorial
tags:
- contributing
type: Tutorial
versions:
- captions:
- shiltemann
date: '2021-02-15'
galaxy_version: '21.01'
length: 20M
link: _-wnsPttBCo
speakers:
- shiltemann
course/welcome-admin:
description: null
tags:
- event
title: 'Admin Training 2021: Welcome & Course Logistics'
type: Tutorial
versions:
- captions:
- hexylena
date: '2021-02-15'
galaxy_version: '21.01'
length: 9M
link: 1aWBg1aK-OQ
speakers:
- hexylena
course/welcome-gcc2021:
description: Start here; we will go over all the important things to know to get
the most out of this workshop
materials:
- external: true
link: https://docs.google.com/presentation/d/11iR7mjnyhl2OX9KDmeE6TrArYeEUwVnnV3cFMFWMBwI/edit?usp=sharing
type: Slides
tags:
- event
title: 'GCC2021 Training: Welcome & Course Logistics'
type: Lecture
versions:
- captions:
- shiltemann
- hexylena
date: '2021-02-15'
galaxy_version: '21.01'
length: 15M
link: 5kjIn1ci4qw
speakers:
- hexylena
- shiltemann
course/welcome-smorg2022:
description: Start here! We will go over all the important things you need to know
about this week!
materials:
- external: true
link: https://docs.google.com/presentation/d/e/2PACX-1vQakH_LxLGS5PurJSrmPQH7VY8_UOKpAbUtwsUjpid42QQW5Ds2sH8uD2QQc8rfjH1D0OWpTeSBb8OT/pub?start=false&loop=false&delayms=3000
type: Slides
support_channel: general
tags:
- event
title: Start Here! Welcome & Course Logistics
type: Welcome
versions:
- captions:
- shiltemann
date: '2022-03-10'
length: 15M
link: dU8Cc8z64l0
speakers:
- shiltemann
- hexylena
course/welcome-smorg2023:
description: Start here! We will go over all the important things you need to know
about this week!
materials:
- external: true
link: https://docs.google.com/presentation/d/e/2PACX-1vTbVLWzFsiBXaPbGeSdZs2PutWQMHJm2tnttFQPO2ZWujfipZKUDJUCGLMwRMZ5k8o7oST7R_vX2x91/pub?start=false&loop=false&delayms=3000
type: Slides
support_channel: general
tags:
- event
title: Start Here! Welcome & Course Logistics
type: Welcome
versions:
- captions:
- shiltemann
date: '2023-05-16'
length: 15M
link: _Gr-filBzp4
speakers:
- shiltemann
- hexylena
data-science/r-advanced/tutorial:
description: An advanced tutorial covering downstream analysis of RNA-seq data using
R.
materials:
- link: topics/data-science/tutorials/r-advanced/tutorial.html
title: Advanced R in Galaxy
type: Tutorial
tags:
- data-science
type: Tutorial
versions:
- captions:
- ksuderman
- nagoue
date: '2021-02-15'
galaxy_version: '21.01'
length: 1H
link: _hWBGdlICqg
speakers:
- fpsom
data-science/r-basics/tutorial:
description: This tutorial will provide an introduction to using R with Rstudio
in Galaxy.
materials:
- link: topics/data-science/tutorials/r-basics/tutorial.html
title: R basics in Galaxy
type: Tutorial
tags:
- data-science