-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xml
2766 lines (2698 loc) · 249 KB
/
index.xml
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" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>CDSB</title>
<link>http://comunidadbioinfo.github.io/</link>
<atom:link href="http://comunidadbioinfo.github.io/index.xml" rel="self" type="application/rss+xml" />
<description>CDSB</description>
<generator>Source Themes Academic (https://sourcethemes.com/academic/)</generator><language>en-us</language><copyright>© 2018-2024</copyright><lastBuildDate>Thu, 08 Aug 2024 00:00:00 +0000</lastBuildDate>
<image>
<url>http://comunidadbioinfo.github.io/images/logo_hu887f29129fe527571c16cff89573bbf0_57814_300x300_fit_lanczos_2.png</url>
<title>CDSB</title>
<link>http://comunidadbioinfo.github.io/</link>
</image>
<item>
<title>CDSB Workshop 2024: Developing R/Bioconductor packages</title>
<link>http://comunidadbioinfo.github.io/post/cdsb-2024-workshop/</link>
<pubDate>Thu, 08 Aug 2024 00:00:00 +0000</pubDate>
<guid>http://comunidadbioinfo.github.io/post/cdsb-2024-workshop/</guid>
<description><table>
<thead>
<tr>
<th>TIB2024</th>
<th>RMB</th>
<th>NNB</th>
<th>CCG-UNAM</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="http://www.nnb.unam.mx/TIB2022/" target="_blank" rel="noopener"><img src="https://congresos.nnb.unam.mx/tib2019/wp-content/uploads/sites/4/2019/03/NNB-TIB-Logo.png" width="50px" /></a></td>
<td>
<a href="https://www.redmexicanadebioinformatica.org/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/RMB_Logo-horizontal.png" width="150px" /></a></td>
<td>
<a href="http://www.nnb.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/logo-principal.png" width="150px" /></a></td>
<td>
<a href="http://www.ccg.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/CCG_Logo_HR.png" width="150px" /></a></td>
</tr>
</tbody>
</table>
<h4 id="community-of-software-developers-in-bioinformatics-cdsb">Community of Software Developers in Bioinformatics (CDSB)</h4>
<p>We are delighted to announce that
<a href="https://twitter.com/CDSBMexico" target="_blank" rel="noopener">CDSB</a>, along with the
<a href="https://twitter.com/RBioinformatica" target="_blank" rel="noopener">Mexican Bioinformatics Network</a> (RMB in Spanish) and the
<a href="https://twitter.com/nnb_unam" target="_blank" rel="noopener">National Node of Bioinformatics at UNAM</a> (NNB-CCG), is organizing the summer workshop
<a href="https://comunidadbioinfo.github.io/cdsb2024" target="_blank" rel="noopener">Developing R/Bioconductor packages</a> as part of the
<a href="https://www.nnb.unam.mx/EBM2024/" target="_blank" rel="noopener">National Bioinformatics Meeting Mexico 2024</a>.</p>
<ul>
<li>Level: Intermediate-Advanced.</li>
<li>Language: Spanish.</li>
<li>Where: This workshop will be held online on Zoom.</li>
<li>When: October 28-31 2024, 9:00am - 5:00pm (Mexico City timezone).</li>
<li>
<a href="https://www.nnb.unam.mx/EBM2024/registro/" target="_blank" rel="noopener">Registration</a></li>
<li>Twitter: @CDSBMexico</li>
<li>Facebook: @CDSBMexico</li>
<li>GitHub: <a href="https://github.com/ComunidadBioInfo/cdsb2024">https://github.com/ComunidadBioInfo/cdsb2024</a></li>
<li>Workshop webpage: <a href="https://comunidadbioinfo.github.io/cdsb2024">https://comunidadbioinfo.github.io/cdsb2024</a></li>
<li>
<a href="http://bit.ly/calendarcdsb2024" target="_blank" rel="noopener">Calendar</a></li>
</ul>
<h2 id="what-are-you-going-to-learn">What are you going to learn?</h2>
<p>You will learn the crucial steps to develop an R package and some good practices for code generation. With the integration of these tools, you will have the opportunity to create your first package and contribute to the developers community.</p>
<h2 id="who-is-it-for">Who is it for?</h2>
<p>This course is aimed at people who want to learn how to develop packages using R/Bioconductor tools.</p>
<h2 id="pre-requirements">Pre-requirements</h2>
<p>This workshop is <strong>Advanced</strong>, so you’ll need some <strong>background knowledge</strong>:</p>
<ul>
<li>Basic knowledge of RStudio:
<ul>
<li>Rscripts creation, RStudio console management, display space management.</li>
</ul>
</li>
<li>Intermediate knowledge of R:
<ul>
<li>Managing variables, reading files, creating and managing data frames and lists.</li>
<li>Generation of graphs.</li>
<li>How to install packages from CRAN and Bioconductor.</li>
</ul>
</li>
</ul>
<p><strong>Technical requirements</strong></p>
<ul>
<li>Computer with at least 4Gb of memory.</li>
<li>Access to a Linux terminal.</li>
<li>Have R and RStudio installed in their latest version.</li>
</ul>
<h2 id="instructors">Instructors</h2>
<p><strong>Instructors</strong></p>
<ul>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/josschavezf/" target="_blank" rel="noopener">Dra. Joselyn Cristina Chávez Fuentes</a>: Postdoctoral Fellow at Icahn School of Medicine at Mount Sinai.</li>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/mirnavrl/" target="_blank" rel="noopener">Dra. Mirna Vázquez Rosas Landa</a>: Associate Professor at Instituto de Ciencias de Mar y Limnología de la UNAM.</li>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/amedina/" target="_blank" rel="noopener">Dra. Alejandra Medina Rivera</a>: Associate Professor at Laboratorio Internacional de Investigación de Medicina Genómica, UNAM.</li>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/erickcufe/" target="_blank" rel="noopener">M.C. Erick Cuevas Fernández</a>: PhD Student at Universidad Nacional Autónoma de México.</li>
</ul>
<h2 id="program">Program</h2>
<p><strong>Day 1:</strong> Project-oriented workflows:</p>
<ul>
<li>Introduction to project-oriented workflows.</li>
<li>Safe paths.</li>
<li>Good practices for maintaining your workspace.</li>
<li>Modifying the R startup files.</li>
<li>New features of RStudio, Quarto.</li>
</ul>
<p><strong>Day 2:</strong> Creating R packages Part I</p>
<ul>
<li>Version control with GitHub and RStudio.</li>
<li>Troubleshooting with Rstudio package versions.</li>
<li>Infrastructure of an R/Bioconductor package.</li>
<li>Talk: Converting your analysis workflow into an R/Bioconductor package.</li>
<li>Documentation of functions.</li>
<li>Social session: Getting to know the community.</li>
</ul>
<p><strong>Day 3:</strong> Writting R/Bioconductor packages Part II</p>
<ul>
<li>Design of tests.</li>
<li>Vignettes.</li>
<li>Compilation and installation of packages.</li>
<li>Collaborative projects Part I.</li>
</ul>
<p><strong>Day 4:</strong> Collaborative projects</p>
<ul>
<li>Collaborative projects Part II.</li>
<li>Projects presentation.</li>
<li>Closure.</li>
</ul>
<p>Looking forward to see you!</p>
<h2 id="organizers">Organizers</h2>
<p>
<a href="https://comunidadbioinfo.github.io/es/" target="_blank" rel="noopener"><img src="https://comunidadbioinfo.github.io/images/logo_hu887f29129fe527571c16cff89573bbf0_57814_0x70_resize_lanczos_2.png" width="250px" /></a></p>
<p>
<a href="http://www.nnb.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/logo-principal.png" width="250px" /></a></p>
<p>
<a href="http://www.ccg.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/CCG_Logo_HR.png" width="250px" /></a></p>
<h2 id="with-the-support-of">With the support of:</h2>
<p>
<a href="https://www.redmexicanadebioinformatica.org/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/RMB_Logo-horizontal.png" width="250px" /></a></p>
</description>
</item>
<item>
<title>CDSB Workshop 2023: Writting R/Bioconductor packages for scRNAseq analysis.</title>
<link>http://comunidadbioinfo.github.io/post/cdsb-2023-workshop/</link>
<pubDate>Mon, 29 May 2023 00:00:00 +0000</pubDate>
<guid>http://comunidadbioinfo.github.io/post/cdsb-2023-workshop/</guid>
<description><table>
<thead>
<tr>
<th>TIB2023</th>
<th>RMB</th>
<th>NNB</th>
<th>CCG-UNAM</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="http://www.nnb.unam.mx/TIB2022/" target="_blank" rel="noopener"><img src="https://congresos.nnb.unam.mx/tib2019/wp-content/uploads/sites/4/2019/03/NNB-TIB-Logo.png" width="50px" /></a></td>
<td>
<a href="https://www.redmexicanadebioinformatica.org/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/RMB_Logo-horizontal.png" width="150px" /></a></td>
<td>
<a href="http://www.nnb.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/logo-principal.png" width="150px" /></a></td>
<td>
<a href="http://www.ccg.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/CCG_Logo_HR.png" width="150px" /></a></td>
</tr>
</tbody>
</table>
<h4 id="community-of-software-developers-in-bioinformatics-cdsb">Community of Software Developers in Bioinformatics (CDSB)</h4>
<p>We are delighted to announce that
<a href="https://twitter.com/CDSBMexico" target="_blank" rel="noopener">CDSB</a>, along with the
<a href="https://twitter.com/RBioinformatica" target="_blank" rel="noopener">Mexican Bioinformatics Network</a> (RMB in Spanish) and the
<a href="https://twitter.com/nnb_unam" target="_blank" rel="noopener">National Node of Bioinformatics at UNAM</a> (NNB-CCG), is organizing the summer workshop
<a href="https://comunidadbioinfo.github.io/cdsb2023" target="_blank" rel="noopener">Writting R/Bioconductor packages for scRNAseq analysis</a> as part of the
<a href="https://www.nnb.unam.mx/EBM2023/" target="_blank" rel="noopener">National Bioinformatics Meeting Mexico 2023</a>.</p>
<ul>
<li>Level: Intermediate-Advanced.</li>
<li>Language: Spanish.</li>
<li>Where: This workshop will be held online on Zoom.</li>
<li>When: 07-11 August 2023, 9:00am - 5:00pm (Mexico City timezone).</li>
<li>
<a href="https://www.nnb.unam.mx/EBM2023/registro/" target="_blank" rel="noopener">Registration</a></li>
<li>Twitter: @CDSBMexico</li>
<li>Facebook: @CDSBMexico</li>
<li>GitHub: <a href="https://github.com/ComunidadBioInfo/cdsb2023">https://github.com/ComunidadBioInfo/cdsb2023</a></li>
<li>Workshop webpage: <a href="https://comunidadbioinfo.github.io/cdsb2023">https://comunidadbioinfo.github.io/cdsb2023</a></li>
<li>
<a href="http://bit.ly/calendarcdsb2023" target="_blank" rel="noopener">Calendar</a></li>
</ul>
<h2 id="what-are-you-going-to-learn">What are you going to learn?</h2>
<p>In recent years, the generation of scRNAseq data has become very important in biomedical research; however, the tools needed for its analysis are still under development.</p>
<p>In this workshop, we will review the existing statistical tools to analyze scRNAseq data using Bioconductor, how to document your analysis and check some tools for interpreting results.</p>
<p>At the same time, you will learn the crucial steps to develop an R package and some good practices for code generation. With the integration of these tools, you will have the opportunity to create your first package and contribute to the developers community.</p>
<h2 id="who-is-it-for">Who is it for?</h2>
<p>This course is aimed at people who want to learn how to develop packets to analyze scRNAseq data using R/Bioconductor tools.</p>
<h2 id="pre-requirements">Pre-requirements</h2>
<p>This workshop is <strong>Advanced</strong>, so you’ll need some <strong>background knowledge</strong>:</p>
<ul>
<li>Basic knowledge of RNAseq.</li>
<li>Basic knowledge of RStudio:
<ul>
<li>Rscripts creation, RStudio console management, display space management.</li>
</ul>
</li>
<li>Intermediate knowledge of R:
<ul>
<li>Managing variables, reading files, creating and managing data frames and lists.</li>
<li>Generation of graphs.</li>
<li>How to install packages from CRAN and Bioconductor.</li>
</ul>
</li>
</ul>
<p><strong>Technical requirements</strong></p>
<ul>
<li>Computer with at least 8Gb of memory.</li>
<li>Access to a Linux terminal.</li>
<li>Have R and RStudio installed in their latest version.</li>
</ul>
<h2 id="instructors">Instructors</h2>
<p><strong>Instructors</strong></p>
<ul>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/josschavezf/" target="_blank" rel="noopener">Dra. Joselyn Cristina Chávez Fuentes</a>: Postdoctoral Fellow at Icahn School of Medicine at Mount Sinai.</li>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/yalbibalderas/" target="_blank" rel="noopener">Dra. Yalbi Balderas Martínez</a>: Investigator at Instituto Nacional de Enfermedades Respiratorias Ismael Cosío Villegas.</li>
<li>
<a href="https://comunidadbioinfo.github.io/authors/lcollado/" target="_blank" rel="noopener">Dr. Leonardo Collado Torres</a>: Investigator at Lieber Institute for Brain Development.</li>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/erickcufe/" target="_blank" rel="noopener">M.C. Erick Cuevas Fernández</a>: PhD Student at Universidad Nacional Autónoma de México.</li>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/mirnavrl/" target="_blank" rel="noopener">Dra. Mirna Vázquez Rosas Landa</a>: Associate Professor at Instituto de Ciencias de Mar y Limnología de la UNAM.</li>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/amedina/" target="_blank" rel="noopener">Dra. Alejandra Medina Rivera</a>: Associate Professor at Laboratorio Internacional de Investigación de Medicina Genómica, UNAM.</li>
</ul>
<p><strong>Invited speakers</strong></p>
<ul>
<li>Dra. Evelia Lorena Coss Navarrete</li>
<li>M.C. José Antonio Ovando Ricárdez</li>
<li>M.C. Andrés Arredondo Cruz</li>
</ul>
<p><strong>TAs</strong></p>
<ul>
<li>M. C. Diego Ramírez</li>
<li>M. C. Luis Alberto Meza</li>
</ul>
<h2 id="program">Program</h2>
<p><strong>Day 1:</strong> scRNAseq analysis workflow Part I</p>
<ul>
<li>Presentation of the CDSB.</li>
<li>Structure and importing of data.</li>
<li>Quality control.</li>
<li>Normalization.</li>
</ul>
<p><strong>Day 2:</strong> scRNAseq analysis workflow Part II</p>
<ul>
<li>Selection of highly variable genes.</li>
<li>Dimension reduction.</li>
<li>Clustering.</li>
<li>Marker genes.</li>
<li>Annotation of cellular types.</li>
</ul>
<p><strong>Day 3:</strong> Writting R/Bioconductor packages Part I</p>
<ul>
<li>New features of RStudio, Quarto.</li>
<li>Version control with GitHub and RStudio.</li>
<li>Troubleshooting with Rstudio package versions.</li>
<li>Infrastructure of an R/Bioconductor package.</li>
<li>Talk: Converting your analysis workflow into an R/Bioconductor package.</li>
<li>Documentation of functions.</li>
<li>Social session: Getting to know the community.</li>
</ul>
<p><strong>Day 4:</strong> Writting R/Bioconductor packages Part II</p>
<ul>
<li>Design of tests.</li>
<li>Vignettes.</li>
<li>Compilation and installation of packages.</li>
<li>Collaborative projects Part I.</li>
</ul>
<p><strong>Day 5:</strong> Collaborative projects</p>
<ul>
<li>Collaborative projects Part II.</li>
<li>Projects presentation.</li>
<li>Closure.</li>
</ul>
<p>Looking forward to see you!</p>
<h2 id="organizers">Organizers</h2>
<p>
<a href="https://comunidadbioinfo.github.io/es/" target="_blank" rel="noopener"><img src="https://comunidadbioinfo.github.io/images/logo_hu887f29129fe527571c16cff89573bbf0_57814_0x70_resize_lanczos_2.png" width="250px" /></a></p>
<p>
<a href="http://www.nnb.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/logo-principal.png" width="250px" /></a></p>
<p>
<a href="http://www.ccg.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/CCG_Logo_HR.png" width="250px" /></a></p>
<h2 id="with-the-support-of">With the support of:</h2>
<p>
<a href="https://www.redmexicanadebioinformatica.org/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/RMB_Logo-horizontal.png" width="250px" /></a></p>
</description>
</item>
<item>
<title>CDSB Workshop 2022: Advanced analysis of metagenomes. Creating workflows with R/Bioconductor.</title>
<link>http://comunidadbioinfo.github.io/post/cdsb-2022-workshops/</link>
<pubDate>Wed, 11 May 2022 00:00:00 +0000</pubDate>
<guid>http://comunidadbioinfo.github.io/post/cdsb-2022-workshops/</guid>
<description><table>
<thead>
<tr>
<th>TIB2022</th>
<th>RMB</th>
<th>NNB</th>
<th>CCG-UNAM</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="http://www.nnb.unam.mx/TIB2022/" target="_blank" rel="noopener"><img src="https://congresos.nnb.unam.mx/tib2019/wp-content/uploads/sites/4/2019/03/NNB-TIB-Logo.png" width="50px" /></a></td>
<td>
<a href="https://www.redmexicanadebioinformatica.org/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/RMB_Logo-horizontal.png" width="150px" /></a></td>
<td>
<a href="http://www.nnb.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/logo-principal.png" width="150px" /></a></td>
<td>
<a href="http://www.ccg.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/CCG_Logo_HR.png" width="150px" /></a></td>
</tr>
</tbody>
</table>
<h4 id="community-of-software-developers-in-bioinformatics-cdsb">Community of Software Developers in Bioinformatics (CDSB)</h4>
<p>We are delighted to announce that
<a href="https://twitter.com/CDSBMexico" target="_blank" rel="noopener">CDSB</a>, along with the
<a href="https://twitter.com/RBioinformatica" target="_blank" rel="noopener">Mexican Bioinformatics Network</a> (RMB in Spanish) and the
<a href="https://twitter.com/nnb_unam" target="_blank" rel="noopener">National Node of Bioinformatics at UNAM</a> (NNB-CCG), is organizing the summer workshop
<a href="https://comunidadbioinfo.github.io/cdsb2022" target="_blank" rel="noopener">Advanced analysis of metagenomes. Creating workflows with R/Bioconductor</a> as part of the
<a href="https://www.nnb.unam.mx/EBM2022/" target="_blank" rel="noopener">National Bioinformatics Meeting Mexico 2022</a>.</p>
<ul>
<li>Level: Advanced.</li>
<li>Language: Spanish.</li>
<li>Where: This workshop will be held online on Zoom.</li>
<li>When: 01-05 August 2022, 9:00am - 5:00pm (Mexico City timezone).</li>
<li>
<a href="https://www.nnb.unam.mx/EBM2022/registro/" target="_blank" rel="noopener">Registration</a></li>
<li>Twitter: @CDSBMexico</li>
<li>Facebook: @CDSBMexico</li>
<li>GitHub: <a href="https://github.com/ComunidadBioInfo/cdsb2022">https://github.com/ComunidadBioInfo/cdsb2022</a></li>
<li>Workshop webpage: <a href="https://comunidadbioinfo.github.io/cdsb2022">https://comunidadbioinfo.github.io/cdsb2022</a></li>
<li>
<a href="http://bit.ly/calendarcdsb2022" target="_blank" rel="noopener">Calendar</a></li>
</ul>
<h2 id="what-are-you-going-to-learn">What are you going to learn?</h2>
<p>In recent years metagenomics has gained importance for discovering new groups of microorganisms and metabolic pathways. In this workshop, we will review the latest methods for analyzing metagenomic data, using free software tools and specialized R packages freely available via Bioconductor.</p>
<p>During this workshop, you will learn to reconstruct genomes from metagenomes using different free software tools. We will review different binning and metabolic prediction strategies, and we will identify areas of opportunity for software development in metagenomics; you will also learn how to document your code using RMarkdown.</p>
<h2 id="who-is-it-for">Who is it for?</h2>
<p>This course is designed for people who want to learn how to reconstruct genomes from metagenomes, make metabolic predictions, and contribute to the development of bioinformatics tools in this area. Participants who wish to register for the workshop must know Linux, R, NGS sequence quality analysis, and metagenomic assembly.</p>
<h2 id="pre-requirements">Pre-requirements</h2>
<ul>
<li>Basic knowledge of metagenome sequencing and assembly
<ul>
<li>Know what reads are.</li>
<li>Quality control of NGS sequences.</li>
<li>Assembly of metagenomes.</li>
</ul>
</li>
<li>Basic knowledge of RStudio.</li>
</ul>
<p><strong>Technical requirements</strong></p>
<ul>
<li>Computer with at least 8Gb of memory.</li>
<li>Access to a Linux terminal.</li>
<li>Have R and RStudio installed in their latest version.</li>
</ul>
<h2 id="instructors">Instructors</h2>
<p><strong>Instructors</strong></p>
<ul>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/mirnavrl/" target="_blank" rel="noopener">Dra. Mirna Vázquez Rosas Landa</a>: Estancia Postdoctoral en la Universidad de Texas en Austin.</li>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/josschavezf/" target="_blank" rel="noopener">Dra. Joselyn Chávez Fuentes</a>: Estancia Postdoctoral en Icahn School of Medicine at Mount Sinai.</li>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/erickcufe/" target="_blank" rel="noopener">M.C. Erick Cuevas Fernández</a>: Estudiante de Doctorado en la Universidad Nacional Autónoma de México.</li>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/amedina/" target="_blank" rel="noopener">Dra. Alejandra Medina Rivera</a>: Investigadora Asociada en el Laboratorio Internacional de Investigación de Medicina Genómica, UNAM.</li>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/yalbibalderas/" target="_blank" rel="noopener">Dra. Yalbi Balderas Martínez</a>: Investigadora en el Instituto Nacional de Enfermedades Respiratorias Ismael Cosío Villegas.</li>
</ul>
<p><strong>Invited speakers</strong></p>
<ul>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/brettbaker/" target="_blank" rel="noopener">Dr. Brett Baker</a></li>
<li>
<a href="https://comunidadbioinfo.github.io/es/authors/valeriedeanda/" target="_blank" rel="noopener">Dra. Valerie De Anda</a></li>
<li>
<a href="https://comunidadbioinfo.github.io/authors/lcollado/" target="_blank" rel="noopener">Dr. Leonardo Collado-Torres</a></li>
</ul>
<h2 id="program">Program</h2>
<p><strong>Day 1:</strong> Generating reports and workflows with R markdown</p>
<ul>
<li>Presentation to CDSB.</li>
<li>Talk: The latest version of the tree of life.</li>
<li>Version control with GitHub and RStudio.</li>
<li>Report generation with R markdown.</li>
</ul>
<p><strong>Day 2:</strong> Reconstruction of genomes</p>
<ul>
<li>Talk: Turning your analysis flow into a R/Bioconductor package.</li>
<li>Talk: Bioconductor packages related to metagenomics.</li>
<li>Reconstruction of genomes.</li>
</ul>
<p><strong>Day 3:</strong> Metabolic reconstruction and phylogenetic inference</p>
<ul>
<li>Taxonomic assignment.</li>
<li>Analysis of metabolic pathways.</li>
<li>MEBs</li>
<li>Social session: Building the community.</li>
</ul>
<p><strong>Day 4:</strong></p>
<ul>
<li>Collaborative metagenome projects.</li>
</ul>
<p><strong>Day 5:</strong></p>
<ul>
<li>Collaborative metagenome projects.</li>
<li>Project presentation.</li>
<li>Closure.</li>
</ul>
<p>Looking forward to see you!</p>
<h2 id="organizers">Organizers</h2>
<p>
<a href="https://comunidadbioinfo.github.io/" target="_blank" rel="noopener"><img src="https://comunidadbioinfo.github.io/images/logo_hu887f29129fe527571c16cff89573bbf0_57814_0x70_resize_lanczos_2.png" width="250px" /></a></p>
<p>
<a href="http://www.nnb.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/logo-principal.png" width="250px" /></a></p>
<p>
<a href="http://www.ccg.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/CCG_Logo_HR.png" width="250px" /></a></p>
<p>
<a href="http://www.unam.mx/" target="_blank" rel="noopener"><img src="https://www.zaragoza.unam.mx/portal/wp-content/Portal2015/Descargas/logo_unam_azul.jpg" width="250px"></a></p>
<h2 id="with-the-support-of">With the support of:</h2>
<p>
<a href="https://www.redmexicanadebioinformatica.org/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/RMB_Logo-horizontal.png" width="250px" /></a></p>
<p>
<a href="https://bioconductor.org" target="_blank" rel="noopener"><img src="https://bioconductor.org/images/logo_bioconductor.gif" width="250px" /></a></p>
</description>
</item>
<item>
<title>Workshops CDSB 2021: RStudio workflows and scRNA-seq with Bioconductor</title>
<link>http://comunidadbioinfo.github.io/post/cdsb-2021-workshops/</link>
<pubDate>Fri, 18 Jun 2021 00:00:00 +0000</pubDate>
<guid>http://comunidadbioinfo.github.io/post/cdsb-2021-workshops/</guid>
<description><p>We are delighted to announce that
<a href="https://twitter.com/CDSBMexico" target="_blank" rel="noopener">CDSB</a>, along with the
<a href="https://twitter.com/RBioinformatica" target="_blank" rel="noopener">Mexican Bioinformatics Network</a> (RMB in Spanish) and the
<a href="https://twitter.com/nnb_unam" target="_blank" rel="noopener">National Node of Bioinformatics at UNAM</a> (NNB-CCG), is organizing two week-long workshops this summer as part of the
<a href="http://congresos.nnb.unam.mx/EBM2021/" target="_blank" rel="noopener">National Bioinformatics Meeting Mexico 2021</a>. These are:</p>
<ul>
<li>
<a href="https://comunidadbioinfo.github.io/cdsb2021_workflows/" target="_blank" rel="noopener">Workflows with RStudio and creating <code>shiny</code> apps</a></li>
<li>
<a href="https://comunidadbioinfo.github.io/cdsb2021_scRNAseq/" target="_blank" rel="noopener">Analysis of scRNA-seq data with Bioconductor</a></li>
</ul>
<p>These workshops will be held online on August 9 to 13, 2021 and you can
<a href="http://congresos.nnb.unam.mx/EBM2021/" target="_blank" rel="noopener"><strong>register here</strong></a>.</p>
<p>We are looking forward to seeing you soon!</p>
<p><img src="http://comunidadbioinfo.github.io/post/2021-01-27-cs_and_s_event_fund_award/english_cs_and_s_award.jpeg" alt="CS and S Event Fund Thank you!"></p>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">This summer CDSB organizes 2 workshops as part of the National Bioinformatics Meeting Mexico 2021<br><br>Join us! <a href="https://twitter.com/hashtag/rstats?src=hash&amp;ref_src=twsrc%5Etfw">#rstats</a> <a href="https://twitter.com/Bioconductor?ref_src=twsrc%5Etfw">@Bioconductor</a><br><br>🗓️ August 2-13<br>🙏🏽 <a href="https://twitter.com/codeforsociety?ref_src=twsrc%5Etfw">@codeforsociety</a> <a href="https://twitter.com/RConsortium?ref_src=twsrc%5Etfw">@RConsortium</a><br>Org <a href="https://twitter.com/RBioinformatica?ref_src=twsrc%5Etfw">@RBioinformatica</a><a href="https://twitter.com/nnb_unam?ref_src=twsrc%5Etfw">@nnb_unam</a><br>Register<a href="https://t.co/UJ1FAnxp52">https://t.co/UJ1FAnxp52</a><a href="https://t.co/tTwX0RAm0K">https://t.co/tTwX0RAm0K</a> <a href="https://t.co/mUZ7DeSudB">pic.twitter.com/mUZ7DeSudB</a></p>&mdash; ComunidadBioInfo (@CDSBMexico) <a href="https://twitter.com/CDSBMexico/status/1411088526444269569?ref_src=twsrc%5Etfw">July 2, 2021</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</description>
</item>
<item>
<title>CS&S Event Fund award announcement</title>
<link>http://comunidadbioinfo.github.io/post/cs_and_s_event_fund_award/</link>
<pubDate>Wed, 27 Jan 2021 00:00:00 +0000</pubDate>
<guid>http://comunidadbioinfo.github.io/post/cs_and_s_event_fund_award/</guid>
<description><p>We are delighted to announce that
<a href="https://eventfund.codeforscience.org/" target="_blank" rel="noopener">Code for Science and Society</a> has selected our application for their first cohort of Event Fund grant recipients as announced on
<a href="https://eventfund.codeforscience.org/announcing/" target="_blank" rel="noopener">January 25, 2021</a>. The CS&amp;S Event Fund program is made possible through award number GBMF8449 from the Gordon and Betty Moore Foundation (<a href="https://doi.org/10.37807/GBMF8449)">https://doi.org/10.37807/GBMF8449)</a>.</p>
<p>Thanks to this support,
<a href="https://twitter.com/CDSBMexico" target="_blank" rel="noopener">CDSB</a> along with the
<a href="https://twitter.com/RBioinformatica" target="_blank" rel="noopener">Mexican Bioinformatics Network</a> (RMB in Spanish) and the
<a href="https://twitter.com/nnb_unam" target="_blank" rel="noopener">National Node of Bioinformatics at UNAM</a> (NNB-CCG) will be able to carry out a series of short courses throughout 2021 (including one event from December 2020) that will end with the National Bioinformatics Meeting 2021 that will be composed of 6 week-long courses.</p>
<p>If you are interested in taking part in the short courses, please check the
<a href="https://www.redmexicanadebioinformatica.org/category/eventos-es/" target="_blank" rel="noopener">RMB website</a> for how to register.</p>
<blockquote class="twitter-tweet"><p lang="es" dir="ltr">Felicidades <a href="https://twitter.com/ErickCuevasF?ref_src=twsrc%5Etfw">@ErickCuevasF</a> y <a href="https://twitter.com/josschavezf1?ref_src=twsrc%5Etfw">@josschavezf1</a> por completar el primer mini curso de R de este ciclo ^^<br><br>Son organizados por la CDSB y <a href="https://twitter.com/RBioinformatica?ref_src=twsrc%5Etfw">@RBioinformatica</a> <a href="https://twitter.com/nnb_unam?ref_src=twsrc%5Etfw">@nnb_unam</a> con apoyo de <a href="https://twitter.com/codeforsociety?ref_src=twsrc%5Etfw">@codeforsociety</a> y <a href="https://twitter.com/MooreFound?ref_src=twsrc%5Etfw">@MooreFound</a><br><br>El resto del calendario propuesto está disponible acá <a href="https://twitter.com/hashtag/rstatsES?src=hash&amp;ref_src=twsrc%5Etfw">#rstatsES</a> <a href="https://t.co/Gx1WHdnKgp">https://t.co/Gx1WHdnKgp</a></p>&mdash; ComunidadBioInfo (@CDSBMexico) <a href="https://twitter.com/CDSBMexico/status/1340104365156290560?ref_src=twsrc%5Etfw">December 19, 2020</a></blockquote>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<p>As stated in our application, our goals are:</p>
<blockquote>
<p>Over the years, the workshops organized by NNB-CCG and, more recently, with the support of RMB have helped introduce an average of 40 participants per workshop every year into the world of open-source data analysis applied to bioinformatics. Many students, researchers, and industry members have found these workshops highly valuable to acquire skills at relatively low costs that empower them to succeed in the world of biological data. There are now participants who attend the introductory workshops one year and come back the next year for either other introductory workshops or those focusing on advanced material, which is where the CDSB steps in.</p>
<p>CDSB has fostered the inclusion and collaboration of Latin American participants in the R and Bioconductor communities in the past three years. During the summer, one week CDSB courses (2018, 2019, and 2020) focused on developing advanced R programming skills. Supplemented by a Slack workspace, CDSB has set up the foundation for an inclusive community that supports and fosters collaboration, respect, and community building, as noted at <a href="https://www.r-consortium.org/blog/2020/03/18/cdsb-diversity-and-outreach-hotspot-in-mexico">https://www.r-consortium.org/blog/2020/03/18/cdsb-diversity-and-outreach-hotspot-in-mexico</a> and BioC2020, JSM2020 and CDSB2020 presentations at <a href="https://speakerdeck.com/lcolladotor">https://speakerdeck.com/lcolladotor</a> (CDSB2020 video about CDSB in Spanish: <a href="https://www.youtube.com/watch?v=rtP4zmbR3p4)">https://www.youtube.com/watch?v=rtP4zmbR3p4)</a>.</p>
<p>With the proposed short courses, RMB and CDSB, together with NNB-CCG, will provide a structured path to advance on software developing skills in R, and in bioinformatics, throughout the year. This will have a strong impact on integrating more members into the community. In our experience, many people in Latin America underestimate their programming abilities and avoid advanced courses that would provide them with additional skills to become tool developers. The proposed program will allow us to integrate people in different programming knowledge stages to the CDSB, reassess their programming skills, or improve them to get to the next stage. Our series of events will culminate with week-long workshops in the summer at the National Bioinformatics Meeting 2021.</p>
</blockquote>
<p>We greatly appreciate all the support and trust that has been placed on our CDSB + RMB + NNB-CCG team.</p>
<p>Thank you!</p>
<p>⭐️ co-founder; 💫 board member</p>
<ul>
<li>Leonardo Collado Torres, CDSB ⭐️💫</li>
<li>Joselyn Chavez, CDSB 💫</li>
<li>Alejandro Reyes, CDSB ⭐️💫</li>
<li>Erick Cuevas Fernández, CDSB 💫</li>
<li>Irma Martínez, Education coordinator at Mexican Bioinformatics Network (RMB in Spanish), National Bioinformatics Node representative (NNB in Spanish)</li>
<li>Alejandra Medina Rivera, CDSB ⭐️💫, President RMB</li>
<li>Shirley Alquicira, Project Manager at RMB, NNB</li>
<li>Yalbi Balderas, Members Committee Coordinator at RMB</li>
</ul>
<p><img src="http://comunidadbioinfo.github.io/post/2021-01-27-cs_and_s_event_fund_award/english_cs_and_s_award.jpeg" alt="CS and S Event Fund Thank you!"></p>
</description>
</item>
<item>
<title>The impact of CDSB on me</title>
<link>http://comunidadbioinfo.github.io/post/the_impact_of_cdsb_on_me/</link>
<pubDate>Fri, 21 Aug 2020 00:00:00 +0000</pubDate>
<guid>http://comunidadbioinfo.github.io/post/the_impact_of_cdsb_on_me/</guid>
<description><p><em>By
<a href="https://erickcufe.github.io" target="_blank" rel="noopener">Erick Cuevas Fernández</a>, M. Sc., Bioinformatician. Universidad Nacional Autonoma de Mexico. Universidad Autonoma del Estado de Morelos. Systems Biology and Translational Medicine Laboratory.
<a href="https://twitter.com/ErickCuevasF" target="_blank" rel="noopener">@ErickCuevasF</a></em></p>
<p>In 2018 I heard of a
<a href="http://congresos.nnb.unam.mx/TIB2018/r-bioconductor-developers-workshop-2018/" target="_blank" rel="noopener">workshop</a> where
<a href="https://www.roswellpark.org/martin-morgan" target="_blank" rel="noopener">Martin Morgan</a> was performing in Mexico, at that time I had only a few months learning to use R, and I did not know who Martin Morgan was and had vague notions of Bioconductor. That year I started taking the
<a href="http://congresos.nnb.unam.mx/TIB2018/" target="_blank" rel="noopener">international bioinformatics workshops</a>.</p>
<p>It was thanks to taking the
<a href="http://congresos.nnb.unam.mx/TIB2019/cdsb-workshop-how-to-build-and-create-tidy-tools/" target="_blank" rel="noopener">2019 CDSB workshop</a> that I was able to have a new international panorama of R development, know that there were events such as useR, BioC, rstudio :: global(), etc., It was highly motivated that a Mexican community was doing a effort to spread knowledge, inspire and expand the perspective of collaboration and development of free software to Mexicans.
As a graduate student and with the science cuts that are becoming more frequent in Mexico, it is difficult to travel to another country to attend a workshop or a congress, due to the issue of VISA, passport, paying for a flight, accommodation, meals and registration. That is why the CDSB workshop of international quality accessible by its location and cost are valued to many Mexican students. And not only that, the same CDSB helps and promotes the
<a href="https://www.r-consortium.org/blog/2020/03/18/cdsb-diversity-and-outreach-hotspot-in-mexico" target="_blank" rel="noopener">application for scholarships</a> for Mexican students in workshops and congresses for R developers in other countries.</p>
<p><img src="http://comunidadbioinfo.github.io/post/2020-08-21-the_impact_of_cdsb_on_me/2018.jpg" alt="TIBs 2018, Cuernavaca, Morelos, Mexico"></p>
<p>This 2020 with the pandemic and the promotion of the CDSB, was that I had the opportunity to attend the
<a href="https://bioc2020.bioconductor.org/" target="_blank" rel="noopener">BioC2020</a>. The dedication and effort of each speaker to explain a relevant and specialized topic was amazing. The knowledge that was displayed in just one hour was shocking. Despite having been virtually, it was to admire Bioconductor&rsquo;s commitment so that each exhibitor will generate interaction with all attendees. The inclusion and support of the Bioconductor community is impressive, willing to cooperate and help. Regardless of their age, nationality, gender, or grade, they all intended to help, cooperate, and share. There was a huge emotion to see Mexicans displaying their own packages, people you know physically, students like me.
At the end of the workshop I finished with a feeling of happiness, enthusiasm, inspiration, wanting to learn and share.</p>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/BioC2020?src=hash&amp;ref_src=twsrc%5Etfw">#BioC2020</a> <a href="https://twitter.com/CDSBMexico?ref_src=twsrc%5Etfw">@CDSBMexico</a> My first BioC, I really enjoyed it a lot, opened up a universe for me. I feel responsible and enthusiastic to share what I have learned in my academic community and continue learning. I look forward to exhibiting my first first pack in BioC2021 next year <a href="https://t.co/1K9dscoB1e">pic.twitter.com/1K9dscoB1e</a></p>&mdash; Erick Cuevas (@ErickCuevasF) <a href="https://twitter.com/ErickCuevasF/status/1289292982550556672?ref_src=twsrc%5Etfw">July 31, 2020</a></blockquote>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<p>The
<a href="https://comunidadbioinfo.github.io/post/cdsb2020-building-workflows-with-rstudio-and-scrnaseq-with-bioconductor/#.XmJT-Z-YU1I" target="_blank" rel="noopener">CDSB 2020</a> workshop was no exception, the entire community transmitted that spark of enthusiasm, to expand and improve. Of course, the academic content and knowledge that was shown was a lot, such as maintaining the R sessions, working with github, choosing appropriate names for each project, quality testing the functions, debugging, workflows for handling scRNAseq data and an application of it with space expression.</p>
<p>As I think about the CDSB and the international communities that support inclusion and diversity, I think of this excerpt from the poem “sembrando” by the poet Marcos Rafael Blanco Belmonte (originally in Spanish):</p>
<center>
When the world sad, I contemplate,
<p>I toil and set myself a hard task</p>
<p>and I know that my poor example is worth a lot</p>
<p>Although poor and humble it seems and be</p>
<p>We must fight for all those who do not fight!</p>
<p>We must ask for all those who do not implore!</p>
<p>We must make those who do not listen hear us!</p>
<p>We must cry for all those who do not cry!</p>
<p>Have to be like bees in the hive</p>
<p>make sweet honeycombs for everyone.</p>
<p>Have to be like the water that goes serene</p>
<p>giving the whole world fresh streams.</p>
<p>Must imitate the wind, which sows flowers</p>
<p>the same in the mountains as in the plains,</p>
<p>and have to live life sowing loves,</p>
<p>with the sight and the soul always in the height.</p>
<p>The madman said and with noble melancholy</p>
<p>through the scrublands of the mountain he continued to climb,</p>
<p>and when lost in the shadows, he still repeated:</p>
<p>Have to live sowing! Always sowing!&hellip;</p>
</center>
</description>
</item>
<item>
<title>Latin American communities and organizations: useR!2020 video</title>
<link>http://comunidadbioinfo.github.io/post/user_latin_american_community/</link>
<pubDate>Wed, 08 Jul 2020 00:00:00 +0000</pubDate>
<guid>http://comunidadbioinfo.github.io/post/user_latin_american_community/</guid>
<description><p><em>This useR!2020 session and video was organized by
<a href="https://twitter.com/_lacion_" target="_blank" rel="noopener">Laura Acion</a>,
<a href="https://twitter.com/yabellini" target="_blank" rel="noopener">Yanina Bellini Saibene</a>,
<a href="https://twitter.com/PaobCorrales" target="_blank" rel="noopener">Paola Corrales</a>, and
<a href="https://twitter.com/palolili23" target="_blank" rel="noopener">Paloma Rojas Saunero</a>.
<a href="https://twitter.com/lcolladotor" target="_blank" rel="noopener">Leonardo Collado Torres</a> coordinated the blog post submission. This blog post was originally submitted to the
<a href="https://www.r-consortium.org/blog/2020/07/07/latin-american-communities-and-organizations-at-user2020" target="_blank" rel="noopener">R Consortium blog</a> and published there on July 7th 2020.</em></p>
<p>On June 19th 2020 we filmed a video for
<a href="https://user2020.r-project.org/" target="_blank" rel="noopener">useR!2020</a> showcasing the communities and organizations we are involved in that are for Latin Americans or have Latin American participants. In this blog post, we wanted to highlight these initiatives and remind everyone that we are more than happy to help you launch similar initiatives in your local communities.</p>
<img src="https://lh6.googleusercontent.com/Bo9ZwbNi1uLUYehBm3n-OnoJ_QXolp1uY1wotBKqE4U1JY9l_EsughzZmkhPbydxsCP-MmgqEysgfAdMfcIEbPY0uLkVBsPk1LoETPes-zPqqE7Olway4MFuE5XacV6KKXkLBn9o" width="800px"/>
<ul>
<li>
<a href="https://twitter.com/LatinR_Conf" target="_blank" rel="noopener">LatinR</a>:
<a href="https://latin-r.com/en" target="_blank" rel="noopener">LatinR</a> is a trilingual international conference on the use of R in research and development across Latin America. Since launching in 2018, our annual meetings have been a starting point for new packages, local user groups, reading clubs, R-Ladies chapters, translations, and other initiatives in the region.</li>
<li>
<a href="https://twitter.com/conecta_R" target="_blank" rel="noopener">ConectaR</a>: ConectaR 2019 took place during January 24-26, 2019 at the University of Costa Rica, in San José, Costa Rica. It was the first event in Central America endorsed by The R Foundation, and it was held completely in Spanish. You can find more information
<a href="https://journal.r-project.org/archive/2019-2/conectaR.pdf" target="_blank" rel="noopener">here</a>.</li>
<li>
<a href="https://twitter.com/satRdays_org" target="_blank" rel="noopener">satRday</a>:
<a href="https://satrdays.org/" target="_blank" rel="noopener">satRday</a> is a conference about R and its applications, that happens all over the world, and it is organized by the local community. Two satRdays events happened in Latin America: in Santiago - Chile and São Paulo - Brazil. If you want to organize a satRday anywhere in Latin America, please get it touch so we can help each other!</li>
<li>
<a href="https://twitter.com/RLadiesGlobal" target="_blank" rel="noopener">R-Ladies</a>:
<a href="https://rladies.org/" target="_blank" rel="noopener">R-Ladies</a> is a global organisation that promotes gender diversity in the R community. It has 123 active chapters in 51 countries around the world, of which 49 are found across 10 Latin American countries. Some Latin Americans are part of the R-Ladies Global Team, including its leadership. COVID-19 has not stopped us, instead, we have migrated online and fostered alliances among different chapters. All in an effort to give gender minorities in the R community the opportunity to learn R in a safe and supportive environment. Join us!</li>
<li>
<a href="https://twitter.com/rOpenSci" target="_blank" rel="noopener">rOpenSci</a>: R for open science,
<a href="https://ropensci.org/" target="_blank" rel="noopener">rOpenSci</a>, provides free technical review of R packages to improve the quality of open source software in order to maximize readability, usability, usefulness, and minimize redundancy. Their peer-review process will soon be translated to Spanish and you can get involved!</li>
<li>
<a href="https://twitter.com/CDSBMexico" target="_blank" rel="noopener">CDSB</a>: the
<a href="https://comunidadbioinfo.github.io/" target="_blank" rel="noopener">Community of Bioinformatics Software Developers</a> (CDSB in Spanish) was born in 2018 with the goal of helping Latin American R users become R &amp;
<a href="http://bioconductor.org/" target="_blank" rel="noopener">Bioconductor</a> developers and increase the representation of Latinx in these communities. For more information about CDSB check
<a href="http://bit.ly/cdsbpost2020" target="_blank" rel="noopener">bit.ly/cdsbpost2020</a>.</li>
<li>
<a href="https://www.r-consortium.org/projects/r-user-group-support-program" target="_blank" rel="noopener">RUGs</a>: there are several R User Groups in Latin America, some of which are officially sponsored by the
<a href="https://twitter.com/RConsortium" target="_blank" rel="noopener">R Consortium</a>. We believe that creating a welcoming space is crucial for keeping the ideas flowing, which allows for meaningful networking and, consequently, the development of new projects. We can help you start your own group!</li>
<li>
<a href="https://twitter.com/R4DS_es" target="_blank" rel="noopener">R4DS</a> in Spanish + <code>datos</code> package: the resources to learn R in English are many, awesome, online, and free. But in Latin America few people can afford to learn English, and the resources in Spanish are few. To help solve this problem, we community-translated to
<a href="https://es.r4ds.hadley.nz/" target="_blank" rel="noopener">Spanish the “R for Data Science” book</a> and developed a package with the translation of all the datasets used in it:
<a href="https://cran.r-project.org/web/packages/datos/index.html" target="_blank" rel="noopener"><code>datos</code></a>. The workflow to contribute to the package was designed to engage first-time contributors, and is now guiding the development of a new version in Portuguese that will be released in the next few months.</li>
<li>
<a href="https://twitter.com/hashtag/datosdemiercoles" target="_blank" rel="noopener">#DatosDeMiércoles</a> +
<a href="https://twitter.com/hashtag/30diasdegraficos" target="_blank" rel="noopener">#30díasdegráficos</a>: The
<a href="https://twitter.com/R4DS_es" target="_blank" rel="noopener">@R4DS_es</a> Twitter account was created as a way to share projects like the R4DS translation and to develop initiatives to foster the Spanish-speaking R community, like #datosdemieRcoles, the Latin American cousin of
<a href="https://twitter.com/hashtag/tidytuesday" target="_blank" rel="noopener">#TidyTuesday</a>. The idea is not only to use datasets that are in Spanish, but also datasets that are relevant for our Region. This initiative has been complemented with the 30 days plot challenge #30díasdegráficos. If you want to participate proposing a dataset for #datodemiéRcoles, please visit our
<a href="https://github.com/cienciadedatos/datos-de-miercoles" target="_blank" rel="noopener">github repo</a>.</li>
<li>
<a href="https://twitter.com/thecarpentries" target="_blank" rel="noopener">The Carpentries</a>:
<a href="https://carpentries.org/" target="_blank" rel="noopener">The Carpentries</a> builds global capacity in essential data and computational skills for conducting efficient, open, and reproducible research. Building a sustainable and active community in Latin America includes several initiatives: lesson translations, instructor training, workshop coordination, and fundraising. Get in touch with us through the mailing list and the carpentries-es channel at the
<a href="https://swc-slack-invite.herokuapp.com/" target="_blank" rel="noopener">Carpentries Slack workspace</a>.</li>
<li>
<a href="https://twitter.com/ReproHack" target="_blank" rel="noopener">ReproHack</a>:
<a href="https://reprohack.github.io/reprohack-hq/" target="_blank" rel="noopener">ReproHack</a> is a growing community for researchers that are fighting the reproducibility crisis by sharing their experiences across disciplines. It is focused on organizing hackathons where participants attempt to reproduce published research from a list of proposed papers with public code and data. We are planning the first ReproHack in Spanish for October 2020 and you can get in touch with us through
<a href="https://twitter.com/ReproHack" target="_blank" rel="noopener">Twitter</a>.</li>
<li>
<a href="https://twitter.com/AIinclusive" target="_blank" rel="noopener">AI Inclusive</a>:
<a href="https://www.ai-inclusive.org/" target="_blank" rel="noopener">AI Inclusive</a> is an organization that promotes diversity in the AI Community. We want to bring awareness around Artificial Intelligence issues and empower the community so they can enter in the AI field, a field that is not diverse at all. In December 2019, we had our launch events in Rio de Janeiro, Brazil and San Francisco, California. Follow us and join us!</li>
<li>
<a href="https://twitter.com/datalatam" target="_blank" rel="noopener">Data Latam</a>: in May 2016 we started with the first
<a href="http://www.datalatam.com/" target="_blank" rel="noopener">Data Latam podcast</a>, aimed at offering an easy entry point, in Spanish, to those interested in data science. We always ask our interviewees: “How did you get where you are?”, and the diversity of stories has been enormous. Today Data Latam is a Latin American community of professionals and academics, who apply data science in their day to day work and we invite you to participate!</li>
</ul>
<p>What happens in the R Community doesn’t stay in the R Community. All the good practices of inclusive and diverse communities learned in several of the initiatives presented before, generate strong work teams within and beyond the R community. There is still a lot to be done, but what we’ve already achieved is very encouraging and provides a solid foundation for the future.</p>
<p>These initiatives are sustained by many people making a great, mostly volunteer, effort behind the scenes. Some of the challenges that the communities face are translated into multiple positives, sustained, and a lot of invisible hard work. Some of them are: finding international funding due to limited local options, translating content, joining forces across organizations, organizing regional conferences, and becoming active developers of the technology.</p>
<p>The Latin American R community is growing fast and so does the responsibility to make this growth solid and safe. Some of the future work that we, as community builders, look forward to fulfilling are: consolidating regional conferences with support of international sponsors; acquiring funding to sustain translations; amplifying the voices of regional minorities; importing educational material and work opportunities; connecting expats with their local communities; helping other groups such as RUGs and RLadies; connecting with other initiatives such as
<a href="https://twitter.com/R_Forwards" target="_blank" rel="noopener">R-Forwards</a>,
<a href="https://twitter.com/AfricaRUsers" target="_blank" rel="noopener">Africa-R</a>,
<a href="https://twitter.com/miR_community" target="_blank" rel="noopener">MiR</a>, among others; Increase our and other minorities representation in the
<a href="https://www.r-project.org/contributors.html" target="_blank" rel="noopener">R Core Team</a>, the
<a href="https://www.r-project.org/foundation/" target="_blank" rel="noopener">R Foundation</a>, and the
<a href="https://twitter.com/RConsortium" target="_blank" rel="noopener">R Consortium</a>.</p>
<p><strong>Thank you! Please watch our useR! 2020 video on
<a href="https://youtu.be/gtRntU2J3Cg" target="_blank" rel="noopener">YouTube</a>.</strong></p>
<img src="https://lh3.googleusercontent.com/GRMf3aoxL1mUH_3kgme-xhtba7b6JDnOlMFDP2MvtvL0Y3-ciBsqSoHtLmMm5WLXj-DZEJIgzJDhfLIy-UlvgN7FxOm-sTjvfTBFJF-SKZZW9VoftTG70EYnVY4FobOiSi8WX7GR" width="800px"/>
</description>
</item>
<item>
<title>CDSB: the story of a diversity and outreach hotspot in Mexico that hopes to empower local R developers</title>
<link>http://comunidadbioinfo.github.io/post/csdb-story-of-a-diversity-and-outreach-hotspot-in-mexico/</link>
<pubDate>Tue, 17 Mar 2020 00:00:00 +0000</pubDate>
<guid>http://comunidadbioinfo.github.io/post/csdb-story-of-a-diversity-and-outreach-hotspot-in-mexico/</guid>
<description><p><em>This blog post was submitted to the
<a href="https://www.r-consortium.org/blog/2020/03/18/cdsb-diversity-and-outreach-hotspot-in-mexico" target="_blank" rel="noopener">R Consortium blog</a> where it was published on 03/18/2020.</em></p>
<p><img src="http://comunidadbioinfo.github.io/img/2019-08-03-11.52.16.jpg" width="800px" /></p>
<p>I have been attending R conferences since 2008, and while I’ve seen the R community grow rapidly, I generally don’t encounter as many Latin Americans (LatAm) among communities of R developers. Traditionally, a lab lead investigator invested in R or Bioconductor would teach their trainees and students these skills, becoming a local R hotspot. However, that scenario is uncommon in Mexico for several reasons. Recognizing some of these challenges and driven to promote R in our home country and LatAm, in 2017
<a href="https://comunidadbioinfo.github.io/authors/areyes/" target="_blank" rel="noopener">Alejandro Reyes</a> and
<a href="https://comunidadbioinfo.github.io/authors/lcollado/" target="_blank" rel="noopener">I</a> teamed up with
<a href="https://comunidadbioinfo.github.io/authors/amedina/" target="_blank" rel="noopener">Alejandra Medina Rivera</a> and
<a href="https://comunidadbioinfo.github.io/authors/hsalgado/" target="_blank" rel="noopener">Heladia Salgado</a> to eventually launch the Community of Bioinformatics Software Developers (
<a href="https://comunidadbioinfo.github.io" target="_blank" rel="noopener">CDSB</a> in Spanish) in 2018. One of our goals is to facilitate and encourage the transition from R user to R/Bioconductor developer. We have organized yearly one-week long workshops together with
<a href="http://www.nnb.unam.mx/" target="_blank" rel="noopener">NNB-UNAM</a> and
<a href="https://www.redmexicanadebioinformatica.org/" target="_blank" rel="noopener">RMB</a> and just announced our
<a href="https://comunidadbioinfo.github.io/post/cdsb2020-building-workflows-with-rstudio-and-scrnaseq-with-bioconductor/" target="_blank" rel="noopener">2020 workshop</a> (August 3-7 2020 Cuernavaca, Mexico).</p>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">If you are fighting for change, know that even when things feel hard and progress is slow (or seems nonexistent), you are still creating and holding space for those who will come after you. Even if you can’t see it now, the impact of your work will be visible in the future.</p>&mdash; Jen Heemstra (@jenheemstra) <a href="https://twitter.com/jenheemstra/status/1235568526892515329?ref_src=twsrc%5Etfw">March 5, 2020</a></blockquote>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<p>Now unto our third workshop, I feel like we’ve had several success stories.</p>
<p>CDSB2018 alumni wrote a
<a href="https://comunidadbioinfo.github.io/post/r-gene-regulatory-interaction-formulator-for-inquiring-networks/" target="_blank" rel="noopener">blog post</a> about their R GitHub package: <code>rGriffin</code>.
CDSB2018 alumni
<a href="https://comunidadbioinfo.github.io/post/path-from-cdsbmexico-2018-to-bioc2019/" target="_blank" rel="noopener">secured BioC2019 travel scholarships</a> and presented their work.
Three CDSB2018 and 2019 alumni submitted the
<a href="https://comunidadbioinfo.github.io/post/from-bioconductor-users-to-developers-our-first-community-submission/" target="_blank" rel="noopener">first package to Bioconductor (<code>regutools</code>)</a>, representing a significant percent-wise increase in the representation of LatAms in the Bioconductor developers community.</p>
<p><img src="http://comunidadbioinfo.github.io/img/regutools/alumni.png" width="600px" /></p>
<p>We have greatly benefited from the logistics and organization support by
<a href="http://www.nnb.unam.mx/" target="_blank" rel="noopener">NNB-UNAM</a> and
<a href="https://www.redmexicanadebioinformatica.org/" target="_blank" rel="noopener">RMB</a> local teams, allowing us to focus on designing the workshop curriculum and inviting a diverse set of instructors, including
<a href="https://comunidadbioinfo.github.io/authors/mteresa/" target="_blank" rel="noopener">Maria Teresa Ortiz</a> who is an
<a href="https://twitter.com/RLadiesCDMX" target="_blank" rel="noopener">RLadiesCDMX</a> co-founder and has been supporting us from the beginning. However, we face economic challenges as the budget for the national science foundation (CONACyT) has decreased in recent years. The support by the small R conference fund by R Consortium and other sponsors has been instrumental, as well as diversity and travel scholarships some of our instructors have secured at R conferences. We just recently revamped our sponsor page and answered the question:
<a href="https://comunidadbioinfo.github.io/niveles-de-patrocinio/" target="_blank" rel="noopener"><em>why should you support us?</em></a>.</p>
<p>However, while we are just getting started, one of our highlights was born by
<a href="https://ropensci.org/blog/2018/11/01/icebreaker/" target="_blank" rel="noopener">rOpenSci’s icebreaker exercise</a> at CDSB2019. We were able to really build a sense of community and desire to perform outreach activities at our local communities. Particularly, a CDSB2018 and 19 alumni,
<a href="https://comunidadbioinfo.github.io/authors/josschavezf/" target="_blank" rel="noopener">Joselyn Chávez</a>, volunteered to join the CDSB board. At CDSB2019 we also created an #rladies channel in our Slack where at the time we had members of 3/4 Mexico’s RLadies chapters (
<a href="https://twitter.com/RLadies_Qro" target="_blank" rel="noopener">Qro</a>,
<a href="https://twitter.com/RLadiesXalapa" target="_blank" rel="noopener">Xalapa</a>,
<a href="https://twitter.com/RLadiesCDMX" target="_blank" rel="noopener">CDMX</a>) and now have 5/6 (
<a href="https://twitter.com/RLadiesCuerna" target="_blank" rel="noopener">Cuerna</a>,
<a href="https://www.meetup.com/rladies-monterrey/" target="_blank" rel="noopener">Monterrey</a>), as CDSB2018 and CDSB2019 alumni have been co-founders of two chapters:
<a href="https://anabva.github.io/" target="_blank" rel="noopener">Ana Beatriz Villaseñor-Altamirano</a> for Qro and
<a href="https://comunidadbioinfo.github.io/authors/josschavezf/" target="_blank" rel="noopener">Joselyn Chávez</a> for Cuerna.</p>
<p>I am proud and excited of what we have achieved with our one-week long CDSB workshops, but also with how we used the tools we’ve learnt from other communities in order to keep interacting and communicating throughout the rest of the year. Time will tell if our efforts created a ripple that grew into a wave or if we’ll end burning out. Sustainability is a challenge, but we are greatly motivated by the impact we’ve had and can only imagine a brighter future.</p>
<iframe src="https://giphy.com/embed/26hitlrnI4k5dKPPq" width="480" height="320" frameBorder="0" class="giphy-embed" allowFullScreen></iframe><p><a href="https://giphy.com/gifs/studiosoriginals-stay-strong-comfort-26hitlrnI4k5dKPPq">via GIPHY</a></p>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Community of Bioinformatics Software Developers (CDSB): The story of a diversity and outreach hotspot in Mexico that hopes to empower local R developers - <a href="https://t.co/QMcNRUy1gl">https://t.co/QMcNRUy1gl</a> <a href="https://twitter.com/fellgernon?ref_src=twsrc%5Etfw">@fellgernon</a> <a href="https://twitter.com/andrewejaffe?ref_src=twsrc%5Etfw">@andrewejaffe</a> <a href="https://twitter.com/LieberInstitute?ref_src=twsrc%5Etfw">@LieberInstitute</a> <a href="https://twitter.com/lcgunam?ref_src=twsrc%5Etfw">@lcgunam</a> <a href="https://twitter.com/jhubiostat?ref_src=twsrc%5Etfw">@jhubiostat</a> <a href="https://twitter.com/jtleek?ref_src=twsrc%5Etfw">@jtleek</a> <a href="https://twitter.com/LIBDrstats?ref_src=twsrc%5Etfw">@LIBDrstats</a> <a href="https://twitter.com/CDSBMexico?ref_src=twsrc%5Etfw">@CDSBMexico</a> <a href="https://t.co/TmZmxTRwOv">pic.twitter.com/TmZmxTRwOv</a></p>&mdash; R Consortium (@RConsortium) <a href="https://twitter.com/RConsortium/status/1240293207755444225?ref_src=twsrc%5Etfw">March 18, 2020</a></blockquote>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</description>
</item>
<item>
<title>BioC2019 Code of Conduct violation response</title>
<link>http://comunidadbioinfo.github.io/post/bioc2019-code-of-conduct-violation-response/</link>
<pubDate>Mon, 09 Mar 2020 18:30:00 +0000</pubDate>
<guid>http://comunidadbioinfo.github.io/post/bioc2019-code-of-conduct-violation-response/</guid>
<description><p>For the English version of this statement, please go to the
<a href="https://bioc2019.bioconductor.org/code_of_conduct" target="_blank" rel="noopener">BioC2019 Code of Conduct website</a>. At CDSB&rsquo;s website you can find the
<a href="https://comunidadbioinfo.github.io/es/post/bioc2019-code-of-conduct-violation-response/" target="_blank" rel="noopener">translated Spanish version of this statement</a>.</p>
</description>
</item>
<item>
<title>CDSB Workshop 2020: Building workflows with RStudio and Bioconductor for single cell RNA-seq analysis</title>
<link>http://comunidadbioinfo.github.io/post/cdsb2020-building-workflows-with-rstudio-and-scrnaseq-with-bioconductor/</link>
<pubDate>Thu, 05 Mar 2020 13:30:00 +0000</pubDate>
<guid>http://comunidadbioinfo.github.io/post/cdsb2020-building-workflows-with-rstudio-and-scrnaseq-with-bioconductor/</guid>
<description><p><em>This workshop is part of the
<a href="http://www.nnb.unam.mx/TIB2020/" target="_blank" rel="noopener">Mexican Bioinformatics Encounter (EBM in Spanish) 2020</a> organized by CDSB with:</em></p>
<table>
<thead>
<tr>
<th>TIB2020</th>
<th>RMB</th>
<th>NNB</th>
<th>CCG-UNAM</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="http://www.nnb.unam.mx/TIB2020/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/TIF-Logo_2020.png" width="150px" /></a></td>
<td>
<a href="https://www.redmexicanadebioinformatica.org/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/RMB_Logo-horizontal.png" width="150px" /></a></td>
<td>
<a href="http://www.nnb.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/logo-principal.png" width="150px" /></a></td>
<td>
<a href="http://www.ccg.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/CCG_Logo_HR.png" width="150px" /></a></td>
</tr>
</tbody>
</table>
<h4 id="community-of-bioinformatics-software-developers-cdsb">Community of Bioinformatics Software Developers (CDSB)</h4>
<ul>
<li>
<p>
<a href="https://comunidadbioinfo.github.io/post/cdsb2020-building-workflows-with-rstudio-and-scrnaseq-with-bioconductor/" target="_blank" rel="noopener">Workshop webpage</a></p>
</li>
<li>
<p>Level: <strong>intermediate - advanced</strong></p>
</li>
<li>
<p>Language: <strong>Spanish</strong></p>
</li>
<li>
<p>When: August 3 - August 7, 2020 (9 am to 5:30 pm, Friday until 2:30 pm)</p>
</li>
<li>
<p>Where: Online through the Zoom platform. Hours are based on Mexico&rsquo;s central time zone.</p>
</li>
<li>
<p>Twitter:
<a href="https://www.twitter.com/CDSBMexico/" target="_blank" rel="noopener">@CDSBMexico</a></p>
</li>
<li>
<p>Facebook:
<a href="https://www.facebook.com/CDSBMexico/" target="_blank" rel="noopener">@CDSBMexico</a></p>
</li>
<li>
<p>GitHub:
<a href="https://github.com/ComunidadBioInfo/cdsb2020" target="_blank" rel="noopener">https://github.com/ComunidadBioInfo/cdsb2020</a></p>
</li>
<li>
<p>
<a href="http://www.nnb.unam.mx/TIB2020/" target="_blank" rel="noopener">Registration</a></p>
</li>
</ul>
<h2 id="summary"><strong>Summary</strong></h2>
<p>Join us for our 2020 workshop! This year we’ll teach you how to improve your skills for interacting with the R programming language with diverse strategies for organizing your code and projects. This will help you document your analyses such that they are easily to reproduce and for sharing them with your collaborators (from academia to industry). As a use case, we will learn the statistical tools needed for analyzing single cell transcriptomics (scRNA-seq) data using Bioconductor. Completing this workshop will help you in all your R projects and your analyses of biological data: all your analyses will benefit from the organization skills and the ideas behind scRNA-seq are used in many bioinformatics projects.</p>
<iframe src="https://giphy.com/embed/L40sNfcoJs5Op5afQU" width="480" height="240" frameBorder="0" class="giphy-embed" allowFullScreen></iframe><p><a href="https://giphy.com/gifs/hustlersmovie-hustlers-movie-hustler-L40sNfcoJs5Op5afQU">via GIPHY</a></p>
<h2 id="requirements"><strong>Requirements</strong></h2>
<p><strong>Requirements prior knowledge</strong></p>
<ul>
<li>Participants should have basic to intermediate knowledge of the R programming language: variable assignment, reading files: <code>read.csv</code>; data structures: <code>matrix</code>, <code>data.frame</code>, <code>list</code>; data types: <code>character</code>, <code>numeric</code>, <code>factor</code>, <code>logical</code>, etc; installation and use of packages.</li>
<li>Know how to use RStudio.</li>
<li>Be interested in learning good practices for organizing your work and sharing your work with others.</li>
<li>Be interested in learning how to analyze biological data using R/Bioconductor packages.</li>
</ul>
<p><strong>Technical requirements</strong></p>
<ul>
<li>Personal computer. Minimum 8GB RAM, a mouse and sufficient disk space for text files and image files. Administrator privileges to install and run utilities such as RStudio.</li>
</ul>
<h2 id="overview"><strong>Overview</strong></h2>
<p>In recent years,
<a href="https://cran.r-project.org/" target="_blank" rel="noopener">R</a> has become one of the most used programming languages for data science. The explosion in data available in many fields has increased the demand for data analysts, which is the case in Bioinformatics. <code>R</code> users start by learning how to use the tools others have openly shared with the international community. These <code>R</code> users acquire skills as they continue to analyze data and might even start to interact with <code>R</code> software developers through community websites such as
<a href="https://community.rstudio.com/" target="_blank" rel="noopener">RStudio Community</a>,
<a href="https://support.bioconductor.org/" target="_blank" rel="noopener">Bioconductor Support</a> or via Twitter using the
<a href="https://twitter.com/search?q=%23rstats" target="_blank" rel="noopener">#rstats hashtag</a>. Eventually some <code>R</code> users will want to write their own functions and organize their code across several projects. It is at this point that it’s useful to learn how to organize your code in order to make your life as an R programmer easier, such that you spend more time on your projects instead of remembering where your code is or what you did a few weeks ago. In order to practice these concepts, we will review the most recent methods for analyzing single cell RNA sequencing (scRNA-seq) data using R packages specialized for this goal that are freely available through
<a href="https://bioconductor.org" target="_blank" rel="noopener">Bioconductor</a>.</p>
<p>The instructors of this workshop have participated at CDSB since its foundation and have gone to conferences such as
<a href="http://bioc2019.bioconductor.org/" target="_blank" rel="noopener">BioC2019</a> and
<a href="https://resources.rstudio.com/rstudio-conf-2020" target="_blank" rel="noopener">rstudio::conf(2020)</a>, among others. In recent years we taught how to make R and Bioconductor packages, which are of great use for sharing code with others. Recently, CDSB alumni sent their
<a href="https://comunidadbioinfo.github.io/post/from-bioconductor-users-to-developers-our-first-community-submission/" target="_blank" rel="noopener">first R package to Bioconductor</a>, which represented a huge percent increase of Latin American representation in the Bioconductor developers community, thus demonstrating that participating at a CDSB workshop has an impact beyond the one week workshop. For 2020 we will have an applied focus while maintaining our goals at CDSB which are:</p>
<ol>
<li>
<p>Turn (bioinformatics) software users into (bioinformatics) software developers.</p>
</li>
<li>
<p>Foster the exchange of expertise and establish multidisciplinary collaborations.</p>
</li>
<li>
<p>Create a community of Latin American scientists committed to the development of software and computational pipelines for (biological) data analysis.</p>
</li>
<li>
<p>Help train users that can become local instructors and continue to grow their local communities.</p>
</li>
</ol>
<p>The scRNA-seq portion of the workshop will be based on the book
<a href="https://osca.bioconductor.org/" target="_blank" rel="noopener"><em>Orchestrating Single Cell Analysis with Bioconductor</em></a> that was published by <em>Nature Methods</em> (
<a href="https://doi.org/10.1038/s41592-019-0654-x" target="_blank" rel="noopener">DOI</a>) and is among the
<a href="https://www.altmetric.com/details/71569824" target="_blank" rel="noopener">most publicized papers</a> in 2020.</p>
<p>This workshop is part of a long-term project to create a community of developers from Latin America. We hope to hold regular meetings in the future (similar to BioC, EuroBioc and BioCAsia) where attendees present their own software contributions. To provide a welcoming environment please follow our
<a href="https://comunidadbioinfo.github.io/codigo-de-conducta/" target="_blank" rel="noopener">code of conduct</a>.</p>
<h2 id="program"><strong>Program</strong></h2>
<p>9 am to 5:30 pm on Mexico&rsquo;s central time zone (Friday we end at 2:30 pm) with breaks and time to eat. The detailed schedule and the Zoom links will be provided to those participants that register for the event through the private CDSB Google Calendar. For more schedule details check
<a href="https://github.com/ComunidadBioInfo/cdsb2020" target="_blank" rel="noopener">the CDSB2020 workshop GitHub repository</a>.</p>
<p>Every day we will have a help session from 8 to 9 am for those that need help installing the required software for the workshop.</p>
<p>Day 1</p>
<ul>
<li>EBM2020 inauguration</li>
<li>Welcome to CDSB</li>
<li>Participants self introductions</li>
<li>Workflow around RStudio projects:
<ul>
<li>Introduction to the project-oriented workflow.</li>
<li>Working with projects against scripts.</li>
<li>Creating a project.</li>
<li>Using safe paths.</li>
<li>How should I name my file?</li>
</ul>
</li>
</ul>
<p>Day 2</p>
<ul>
<li>Using Git and GitHub.</li>
<li>Modifying the R startup files.</li>
<li>Writing and documenting functions.</li>
<li>Debugging R code.</li>
</ul>
<p>Day 3</p>
<ul>
<li>Good practice for configuring and maintain workspaces.</li>
<li>Remote picture / video.</li>
<li>Installing R packages from source.</li>
<li>General overview of single cell RNA-seq (scRNA-seq) data processing</li>
<li>Community-building activities</li>
<li>Overview of the scRNA-seq material</li>
</ul>
<p>Day 4</p>
<ul>
<li>Introduction to scRNA-seq</li>
<li>Introduction to scRNA-seq with Bioconductor</li>
<li>Data infrastructure and data import</li>
<li>Quality control</li>
<li>Data normalization</li>
</ul>
<p>Day 5</p>
<ul>
<li>Feature selection</li>
<li>Dimension reduction</li>
<li>Clustering and differential gene expression analysis</li>
<li>spatialLIBD: analyzing data from the Visium assay by 10x Genomics</li>
<li>Workshop evaluation</li>
<li>Closing ceremony and CDSB reminders</li>
</ul>
<h2 id="instructors"><strong>Instructors</strong></h2>
<ul>
<li>
<p>
<a href="http://comunidadbioinfo.github.io/authors/amedina/" target="_blank" rel="noopener">Alejandra Medina-Rivera</a> (International Laboratory for Human Genome Research, Juriquilla, Querétaro, Mexico) Alejandra recently presented a
<a href="https://twitter.com/MxPyladies/status/1233208231184543745?s=20" target="_blank" rel="noopener">keynote at the Women in Data Science</a> event in Mexico City.</p>
</li>
<li>
<p>
<a href="http://comunidadbioinfo.github.io/authors/areyes/" target="_blank" rel="noopener">Alejandro Reyes</a> (Data Scientist, Novartis, Basel, Switzerland). Alejandro recently worked on the
<a href="http://bioconductor.org/packages/regutools" target="_blank" rel="noopener">regutools</a> project with CDSB alumni that was published at
<a href="https://academic.oup.com/bioinformatics/article-abstract/doi/10.1093/bioinformatics/btaa575/5861528?redirectedFrom=fulltext" target="_blank" rel="noopener">Oxford Bioinformatics</a>.</p>
</li>
<li>
<p>
<a href="http://comunidadbioinfo.github.io/authors/josschavezf" target="_blank" rel="noopener">Joselyn Chávez</a> (IBT-UNAM, Cuernavaca, Morelos, Mexico). Joselyn presented her work at
<a href="http://bioc2019.bioconductor.org/" target="_blank" rel="noopener">BioC2019</a> thanks to a travel award, attended
<a href="https://resources.rstudio.com/rstudio-conf-2020" target="_blank" rel="noopener">rstudio::conf(2020)</a> thanks to a diversity scholarship where she took the <em>What They Forgot to Teach You about R</em> workshop, and recently was part of the
<a href="https://comunidadbioinfo.github.io/post/from-bioconductor-users-to-developers-our-first-community-submission/" target="_blank" rel="noopener">first <code>R</code> package submission to Bioconductor by CDSB alumni</a>. She initially was a CDSB2018 student.</p>
</li>
<li>
<p>
<a href="http://comunidadbioinfo.github.io/authors/lcollado/" target="_blank" rel="noopener">Leonardo Collado-Torres</a> (Lieber Institute for Brain Development, Baltimore, MD, USA). Leonardo recently published a
<a href="https://twitter.com/lcolladotor/status/1233661576433061888?s=20" target="_blank" rel="noopener">pre-print on spatial transcriptomics using 10xGenomics Visium data</a>.</p>
</li>
<li>
<p>
<a href="http://comunidadbioinfo.github.io/authors/mramos/" target="_blank" rel="noopener">Marcel Ramos Perez</a> (Roswell Park Comprehensive Cancer Center and CUNY School of Public Health, USA). Marcel is part of the
<a href="http://bioconductor.org/about/core-team/" target="_blank" rel="noopener">Bioconductor Core Team</a> and is the author of many Bioconductor packages including
<a href="http://bioconductor.org/packages/MultiAssayExperiment" target="_blank" rel="noopener">MultiAssayExperiment</a>.</p>
</li>
<li>
<p>
<a href="http://comunidadbioinfo.github.io/authors/mteresa/" target="_blank" rel="noopener">Maria Teresa Ortiz</a> (CONABIO and ITAM, Mexico). Teresa presented at
<a href="https://resources.rstudio.com/rstudio-conf-2020" target="_blank" rel="noopener">rstudio::conf(2020)</a> her work on fast counting algorithms for Mexican presidential elections.</p>
</li>
</ul>
<h2 id="organizing-committee"><strong>Organizing committee</strong></h2>
<ul>
<li>
<p>
<a href="http://comunidadbioinfo.github.io/authors/amedina/" target="_blank" rel="noopener">Alejandra Medina-Rivera</a> (International Laboratory for Human Genome Research, Juriquilla, Querétaro, Mexico)</p>
</li>
<li>
<p>
<a href="http://comunidadbioinfo.github.io/authors/areyes/" target="_blank" rel="noopener">Alejandro Reyes</a> (Data Scientist, Novartis, Basel, Switzerland)</p>
</li>
<li>
<p>
<a href="http://comunidadbioinfo.github.io/authors/josschavezf" target="_blank" rel="noopener">Joselyn Chávez</a> (IBT-UNAM, Cuernavaca, Morelos, Mexico)</p>
</li>
<li>
<p>
<a href="http://comunidadbioinfo.github.io/authors/lcollado/" target="_blank" rel="noopener">Leonardo Collado-Torres</a> (Lieber Institute for Brain Development, Baltimore, MD, USA)</p>
</li>
</ul>
<h2 id="code-of-conductcodigo-de-conducta"><strong>
<a href="../../codigo-de-conducta/">Code of Conduct</a></strong></h2>
<h2 id="sponsors"><strong>Sponsors</strong></h2>
<p>
<a href="../../niveles-de-patrocinio/">Become our <strong>sponsor</strong></a></p>
<h3 id="platinum-level">Platinum level</h3>
<h3 id="gold-level">Gold level</h3>
<h3 id="silver-level">Silver level</h3>
<p>
<a href="http://bioconductor.org/" target="_blank" rel="noopener"><img src="http://bioconductor.org/images/logo/jpg/bioconductor_logo_cmyk.jpg" width="250px"></a></p>
<p>
<a href="https://www.r-consortium.org/" target="_blank" rel="noopener"><img src="http://comunidadbioinfo.github.io/img/RConsortium_Horizontal_Pantone-768x173.png" width="250px"></a></p>
<h2 id="organizers">Organizers</h2>
<p>CDSB is a node of the
<a href="https://www.redmexicanadebioinformatica.org/" target="_blank" rel="noopener">Mexican Bioinformatics Network (RMB in Spanish)</a> and jointly organizes the yearly workshop with the
<a href="http://www.nnb.unam.mx/" target="_blank" rel="noopener">National Node of Bioinformatics (NNB)</a>.</p>
<p>
<a href="http://www.nnb.unam.mx/TIB2020/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/TIF-Logo_2020.png" width="250px" /></a></p>
<p>
<a href="https://www.redmexicanadebioinformatica.org/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/RMB_Logo-horizontal.png" width="250px" /></a></p>
<p>
<a href="http://www.nnb.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/logo-principal.png" width="250px" /></a></p>
<p>
<a href="http://www.ccg.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/CCG_Logo_HR.png" width="250px" /></a></p>
<p>With support from:</p>
<p>
<a href="https://www.lcg.unam.mx/" target="_blank" rel="noopener"><img src="http://www.nnb.unam.mx/TIB2020/wp-content/uploads/sites/2/2020/03/LCG_Logo_HR-white-e1522778427811.png" width="250px" /></a></p>
<p>
<a href="http://www.unam.mx/" target="_blank" rel="noopener"><img src="https://www.zaragoza.unam.mx/portal/wp-content/Portal2015/Descargas/logo_unam_azul.jpg" width="250px"></a></p>
</description>
</item>
<item>
<title>From Bioconductor users to developers: our first community submission</title>
<link>http://comunidadbioinfo.github.io/post/from-bioconductor-users-to-developers-our-first-community-submission/</link>
<pubDate>Sat, 29 Feb 2020 17:00:00 +0000</pubDate>
<guid>http://comunidadbioinfo.github.io/post/from-bioconductor-users-to-developers-our-first-community-submission/</guid>
<description>
<script async class="speakerdeck-embed" data-slide="14" data-id="b9dd0405a013420682e7d850ab439326" data-ratio="1.77777777777778" src="//speakerdeck.com/assets/embed.js"></script>
<p>A couple years ago we started the Community of Bioinformatics Software Developers (CDSB in Spanish) as because we were concerned with the very low representation of Latin Americans in the Bioconductor community, and the R community in general. For the full story check this <a href="https://comunidadbioinfo.github.io/post/a-recap-of-cdsb-2018-the-start-of-a-community/">this blog post</a>.</p>
<script async class="speakerdeck-embed" data-slide="16" data-id="b9dd0405a013420682e7d850ab439326" data-ratio="1.77777777777778" src="//speakerdeck.com/assets/embed.js"></script>
<p>Since we started CDSB, part of our goal been to help Bioconductor users transition into developers. To achieve this, we organized one week long courses in Mexico at low cost during the summers of <a href="https://comunidadbioinfo.github.io/post/r-bioconductor-developers-workshop-2018/">2018</a> and <a href="https://comunidadbioinfo.github.io/post/building-tidy-tools-cdsb-runconf-2019/">2019</a> in partnership with the <a href="http://congresos.nnb.unam.mx/">TIBs leadership (NNB-UNAM)</a> and <a href="https://redmexicanadebioinformatica.org/">RMB</a>. We plan to continue organizing these courses: except a 2020 announcement next week!</p>
<p>While these workshops allow us to reach up to 40 students in person for a week, we have been borrowing methods from others to try to interact more frequently and help throughout this process <a href="#fn1" class="footnote-ref" id="fnref1"><sup>1</sup></a>. But we now went a bit further.</p>
<p>In 2018, CDSB students worked on R/Bioconductor packages for two days during our workshop. One of them, <a href="https://josschavezf.github.io/">Joselyn Chávez</a>, picked up the <a href="https://github.com/ComunidadBioInfo/regutools">regutools</a> project and continued working on it with advice from <a href="http://comunidadbioinfo.github.io/authors/hsalgado">Heladia Salgado</a>. We eventually set up meetings where <a href="http://alejandroreyes.org/">Alejandro Reyes</a> and <a href="http://lcolladotor.github.io/">myself</a> would advice Joselyn, <a href="http://comunidadbioinfo.github.io/authors/carbarjon">Carmina Barberena-Jonas</a> and <a href="http://comunidadbioinfo.github.io/authors/jemilianosf/">Jesus Emiliano Sotelo-Fonseca</a> on how to best proceed.</p>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">I just sent <a href="https://twitter.com/Bioconductor?ref_src=twsrc%5Etfw">@Bioconductor</a>&#39;s 2020 conf deadline reminders to <a href="https://twitter.com/CDSBMexico?ref_src=twsrc%5Etfw">@CDSBMexico</a> <a href="https://twitter.com/LieberInstitute?ref_src=twsrc%5Etfw">@LieberInstitute</a> <a href="https://twitter.com/GenomicsAtJHU?ref_src=twsrc%5Etfw">@GenomicsAtJHU</a> <a href="https://twitter.com/LatinR_Conf?ref_src=twsrc%5Etfw">@LatinR_Conf</a> <a href="https://twitter.com/rOpenSci?ref_src=twsrc%5Etfw">@rOpenSci</a> <a href="https://twitter.com/jhubiostat?ref_src=twsrc%5Etfw">@jhubiostat</a> 🗓️<br><br>It&#39;s the conf that started my <a href="https://twitter.com/hashtag/rstats?src=hash&amp;ref_src=twsrc%5Etfw">#rstats</a> career &amp; I highly recommend it!<br><br>BioC usage intro <a href="https://t.co/8NaV68vUsA">https://t.co/8NaV68vUsA</a><a href="https://t.co/ATzkKs7c04">https://t.co/ATzkKs7c04</a> <a href="https://t.co/km8vRfyHcY">pic.twitter.com/km8vRfyHcY</a></p>&mdash; 🇲🇽 Leonardo Collado-Torres (@lcolladotor) <a href="https://twitter.com/lcolladotor/status/1230694883750445056?ref_src=twsrc%5Etfw">February 21, 2020</a></blockquote>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<p>We’ve known for months that the deadline for <a href="https://bioc2020.bioconductor.org">BioC2020</a> talk/poster proposals was March 3rd. So we designed a plan that would allow them to submit <a href="https://github.com/ComunidadBioInfo/regutools">regutools</a> prior to that deadline, then submit a proposal to present it (as well as submit proposals to present their own research projects) in order to increase their likelihood of getting a <a href="https://bioc2020.bioconductor.org/scholarships.html">BioC2020 travel scholarship</a>.</p>
<p>And we were able to accomplish this plan! Well, at least the part under their and our control. That is, check out the <a href="https://github.com/Bioconductor/Contributions/issues/1393">regutools Bioconductor submission</a>. Thus we are incredibly excited to announce that the CDSB website now has a “Bioconductor Developers Alumni” section!</p>
<p><img src="http://comunidadbioinfo.github.io/img/regutools/alumni.png" alt="Bioconductor Developers Alumni" />
We are also thrilled to announce that the <a href="http://regulondb.ccg.unam.mx/">RegulonDB</a> team has given us the go ahead signal to write a manuscript about <a href="https://github.com/ComunidadBioInfo/regutools">regutools</a>. So you’ll soon see a pre-print about it.</p>
<iframe src="https://giphy.com/embed/WsKVAem02Efuw" width="480" height="455" frameBorder="0" class="giphy-embed" allowFullScreen>
</iframe>
<p>
<a href="https://giphy.com/gifs/dancing-happy-excited-WsKVAem02Efuw">via GIPHY</a>
</p>
<p>Though I personally really hope that Joselyn, Carmina, Emiliano and many other CDSB alumni will be able to go to BioC2020 and other R conferences.</p>
<p>We couldn’t have gotten this far without all the support we’ve received over the years. So I would like to thank all our previous sponsors <a href="#fn2" class="footnote-ref" id="fnref2"><sup>2</sup></a>, colleagues who’ve encouraged us to keep going, and CDSB alumni like Joselyn, Carmina, and Emiliano who believed in our ideas and spent their own time making them a reality.</p>
<iframe src="https://giphy.com/embed/yoJC2El7xJkYCadlWE" width="480" height="294" frameBorder="0" class="giphy-embed" allowFullScreen>
</iframe>
<p>
<a href="https://giphy.com/gifs/kiss-brad-pitt-thank-you-yoJC2El7xJkYCadlWE">via GIPHY</a>
</p>
<p>I leave you here with a short introduction to <a href="https://github.com/ComunidadBioInfo/regutools">regutools</a>.</p>
<div id="regutools" class="section level3">
<h3>regutools <img src="https://comunidadbioinfo.github.io/regutools/reference/figures/logo.png" align="right" width="250px"/></h3>
<p>The goal of <code>regutools</code> is to provide an R interface for extracting and processing data from <a href="http://regulondb.ccg.unam.mx/">RegulonDB</a>. This package was created as a collaboration by members of the <a href="https://comunidadbioinfo.github.io/">Community of Bioinformatics Software Developers</a> (CDSB in Spanish).</p>
<p>For more details, please check the <a href="http://comunidadbioinfo.github.io/regutools">documentation website</a> or the Bioconductor package landing page <a href="https://bioconductor.org/packages/regutools">here</a>.</p>
<div id="installation" class="section level4">
<h4>Installation</h4>
<p>You can install the released version of <code>regutools</code> from <a href="http://bioconductor.org/">Bioconductor</a> with:</p>
<pre class="r"><code>if (!requireNamespace(&quot;BiocManager&quot;, quietly = TRUE))
install.packages(&quot;BiocManager&quot;)