-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook.bib
More file actions
1779 lines (1608 loc) · 75.3 KB
/
Copy pathbook.bib
File metadata and controls
1779 lines (1608 loc) · 75.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@Manual{rmarkdown2021,
title = {rmarkdown: Dynamic Documents for R},
author = {JJ Allaire and Yihui Xie and Jonathan McPherson and Javier Luraschi and Kevin Ushey and Aron Atkins and Hadley Wickham and Joe Cheng and Winston Chang and Richard Iannone},
year = {2021},
note = {R package version 2.10},
url = {https://github.com/rstudio/rmarkdown},
}
@Book{Xie2018,
title = {R Markdown: The Definitive Guide},
author = {Yihui Xie and J.J. Allaire and Garrett Grolemund},
publisher = {Chapman and Hall/CRC},
address = {Boca Raton, Florida},
year = {2018},
note = {ISBN 9781138359338},
url = {https://bookdown.org/yihui/rmarkdown},
}
@Book{Xie2020,
title = {R Markdown Cookbook},
author = {Yihui Xie and Christophe Dervieux and Emily Riederer},
publisher = {Chapman and Hall/CRC},
address = {Boca Raton, Florida},
year = {2020},
note = {ISBN 9780367563837},
url = {https://bookdown.org/yihui/rmarkdown-cookbook},
}
@Manual{rmarkdown2021,
title = {rmarkdown: Dynamic Documents for R},
author = {JJ Allaire and Yihui Xie and Jonathan McPherson and Javier Luraschi and Kevin Ushey and Aron Atkins and Hadley Wickham and Joe Cheng and Winston Chang and Richard Iannone},
year = {2021},
note = {R package version 2.10},
url = {https://github.com/rstudio/rmarkdown},
}
@Book{Xie2018,
title = {R Markdown: The Definitive Guide},
author = {Yihui Xie and J.J. Allaire and Garrett Grolemund},
publisher = {Chapman and Hall/CRC},
address = {Boca Raton, Florida},
year = {2018},
note = {ISBN 9781138359338},
url = {https://bookdown.org/yihui/rmarkdown},
}
@Book{Xie2020,
title = {R Markdown Cookbook},
author = {Yihui Xie and Christophe Dervieux and Emily Riederer},
publisher = {Chapman and Hall/CRC},
address = {Boca Raton, Florida},
year = {2020},
note = {ISBN 9780367563837},
url = {https://bookdown.org/yihui/rmarkdown-cookbook},
}
@article{bauchner_citation_2016,
author = {Bauchner, Howard and Golub, Robert M. and Fontanarosa, Phil B.},
title = "{Data Sharing: An Ethical and Scientific Imperative}",
journal = {JAMA},
volume = {315},
number = {12},
pages = {1238-1240},
year = {2016},
month = {03},
issn = {0098-7484},
doi = {10.1001/jama.2016.2420},
url = {https://doi.org/10.1001/jama.2016.2420},
eprint = {https://jamanetwork.com/journals/jama/articlepdf/2504790/jed160017.pdf},
}
@article{bonomi_citation_2020,
author = {Bonomi, Luca and Huang, Yingxiang and Ohno-Machado, Lucila},
date = {2020/07/01},
date-added = {2022-10-26 09:20:24 -0400},
date-modified = {2022-10-26 09:20:24 -0400},
doi = {10.1038/s41588-020-0651-0},
id = {Bonomi2020},
isbn = {1546-1718},
journal = {Nature Genetics},
number = {7},
pages = {646--654},
title = {Privacy challenges and research opportunities for genomic data sharing},
url = {https://doi.org/10.1038/s41588-020-0651-0},
volume = {52},
year = {2020},
bdsk-url-1 = {https://doi.org/10.1038/s41588-020-0651-0}
}
@article{colavizza_citation_2020,
title = {The citation advantage of linking publications to research data},
volume = {15},
issn = {1932-6203},
url = {https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0230416},
doi = {10.1371/journal.pone.0230416},
abstract = {Efforts to make research results open and reproducible are increasingly reflected by journal policies encouraging or mandating authors to provide data availability statements. As a consequence of this, there has been a strong uptake of data availability statements in recent literature. Nevertheless, it is still unclear what proportion of these statements actually contain well-formed links to data, for example via a URL or permanent identifier, and if there is an added value in providing such links. We consider 531, 889 journal articles published by PLOS and BMC, develop an automatic system for labelling their data availability statements according to four categories based on their content and the type of data availability they display, and finally analyze the citation advantage of different statement categories via regression. We find that, following mandated publisher policies, data availability statements become very common. In 2018 93.7\% of 21,793 PLOS articles and 88.2\% of 31,956 BMC articles had data availability statements. Data availability statements containing a link to data in a repository—rather than being available on request or included as supporting information files—are a fraction of the total. In 2017 and 2018, 20.8\% of PLOS publications and 12.2\% of BMC publications provided DAS containing a link to data in a repository. We also find an association between articles that include statements that link to data in a repository and up to 25.36\% (± 1.07\%) higher citation impact on average, using a citation prediction model. We discuss the potential implications of these results for authors (researchers) and journal publishers who make the effort of sharing their data in repositories. All our data and code are made available in order to reproduce and extend our results.},
language = {en},
number = {4},
urldate = {2022-10-19},
journal = {PLOS ONE},
author = {Colavizza, Giovanni and Hrynaszkiewicz, Iain and Staden, Isla and Whitaker, Kirstie and McGillivray, Barbara},
month = apr,
year = {2020},
note = {Publisher: Public Library of Science},
keywords = {Bibliometrics, Citation analysis, Data management, Open access publishing, Reproducibility, Science policy, Scientific publishing, Support vector machines},
pages = {e0230416},
annote = {justified},
}
@article{cosgriff_citation_2020,
title = {Data sharing in the era of {COVID}-19},
volume = {2},
issn = {2589-7500},
url = {https://doi.org/10.1016/S2589-7500(20)30082-0},
doi = {10.1016/S2589-7500(20)30082-0},
number = {5},
urldate = {2022-10-26},
journal = {The Lancet Digital Health},
author = {Cosgriff, Christopher V and Ebner, Daniel K and Celi, Leo Anthony},
month = may,
year = {2020},
note = {Publisher: Elsevier},
pages = {e224},
annote = {doi: 10.1016/S2589-7500(20)30082-0},
}
@article {mckiernan_citation_2016,
article_type = {journal},
title = {Point of View: How open science helps researchers succeed},
author = {McKiernan, Erin C and Bourne, Philip E and Brown, C Titus and Buck, Stuart and Kenall, Amye and Lin, Jennifer and McDougall, Damon and Nosek, Brian A and Ram, Karthik and Soderberg, Courtney K and Spies, Jeffrey R and Thaney, Kaitlin and Updegrove, Andrew and Woo, Kara H and Yarkoni, Tal},
editor = {Rodgers, Peter},
volume = 5,
year = 2016,
month = {jul},
pub_date = {2016-07-07},
pages = {e16800},
citation = {eLife 2016;5:e16800},
doi = {10.7554/eLife.16800},
url = {https://doi.org/10.7554/eLife.16800},
keywords = {open access, open data, open science, open source, research},
journal = {eLife},
issn = {2050-084X},
publisher = {eLife Sciences Publications, Ltd},
}
@article{piwowar_citation_2011,
author = {Piwowar, Heather A. and Vision, Todd J. and Whitlock, Michael C.},
date = {2011/05/01},
date-added = {2022-10-26 13:49:38 -0400},
date-modified = {2022-10-26 13:49:38 -0400},
doi = {10.1038/473285a},
id = {Piwowar2011},
isbn = {1476-4687},
journal = {Nature},
number = {7347},
pages = {285--285},
title = {Data archiving is a good investment},
url = {https://doi.org/10.1038/473285a},
volume = {473},
year = {2011},
bdsk-url-1 = {https://doi.org/10.1038/473285a}}
@article{sansone_citation_2019,
author = {Sansone, Susanna-Assunta and McQuilton, Peter and Rocca-Serra, Philippe and Gonzalez-Beltran, Alejandra and Izzo, Massimiliano and Lister, Allyson L. and Thurston, Milo and the FAIRsharing Community},
date = {2019/04/01},
date-added = {2023-02-01 10:22:01 -0500},
date-modified = {2023-02-01 10:22:01 -0500},
doi = {10.1038/s41587-019-0080-8},
id = {Sansone2019},
isbn = {1546-1696},
journal = {Nature Biotechnology},
number = {4},
pages = {358--367},
title = {FAIRsharing as a community approach to standards, repositories and policies},
url = {https://doi.org/10.1038/s41587-019-0080-8},
volume = {37},
year = {2019},
bdsk-url-1 = {https://doi.org/10.1038/s41587-019-0080-8}}
@article{tenopir_citation_2020,
doi = {10.1371/journal.pone.0229003},
author = {Tenopir, Carol AND Rice, Natalie M. AND Allard, Suzie AND Baird, Lynn AND Borycz, Josh AND Christian, Lisa AND Grant, Bruce AND Olendorf, Robert AND Sandusky, Robert J.},
journal = {PLOS ONE},
publisher = {Public Library of Science},
title = {Data sharing, management, use, and reuse: Practices and perceptions of scientists worldwide},
year = {2020},
month = {03},
volume = {15},
url = {https://doi.org/10.1371/journal.pone.0229003},
pages = {1-26},
number = {3},
}
@article{thessen_citation_2021,
author = {Thessen, Anne E. AND Bogdan, Paul AND Patterson, David J. AND Casey, Theresa M. AND Hinojo-Hinojo, C{\'e}sar AND de Lange, Orlando AND Haendel, Melissa A.},
doi = {10.1371/journal.pbio.3001129},
journal = {PLOS Biology},
month = {03},
number = {3},
pages = {1-12},
publisher = {Public Library of Science},
title = {From Reductionism to Reintegration: Solving society's most pressing problems requires building bridges between data types across the life sciences},
url = {https://doi.org/10.1371/journal.pbio.3001129},
volume = {19},
year = {2021},
bdsk-url-1 = {https://doi.org/10.1371/journal.pbio.3001129}
}
@article{vesteghem_citation_2020,
author = {Vesteghem, Charles and Brøndum, Rasmus Froberg and Sønderkær, Mads and Sommer, Mia and Schmitz, Alexander and Bødker, Julie Støve and Dybkær, Karen and El-Galaly, Tarec Christoffer and Bøgsted, Martin},
title = "{Implementing the FAIR Data Principles in precision oncology: review of supporting initiatives}",
journal = {Briefings in Bioinformatics},
volume = {21},
number = {3},
pages = {936-945},
year = {2020},
month = {05},
issn = {1477-4054},
doi = {10.1093/bib/bbz044},
url = {https://doi.org/10.1093/bib/bbz044},
eprint = {https://academic.oup.com/bib/article-pdf/21/3/936/33398969/bbz044.pdf},
}
@article{wilkinson_citation_2016,
author = {Wilkinson, Mark D. and Dumontier, Michel and Aalbersberg, IJsbrand Jan and Appleton, Gabrielle and Axton, Myles and Baak, Arie and Blomberg, Niklas and Boiten, Jan-Willem and da Silva Santos, Luiz Bonino and Bourne, Philip E. and Bouwman, Jildau and Brookes, Anthony J. and Clark, Tim and Crosas, Merc{\`e} and Dillo, Ingrid and Dumon, Olivier and Edmunds, Scott and Evelo, Chris T. and Finkers, Richard and Gonzalez-Beltran, Alejandra and Gray, Alasdair J. G. and Groth, Paul and Goble, Carole and Grethe, Jeffrey S. and Heringa, Jaap and 't Hoen, Peter A. C and Hooft, Rob and Kuhn, Tobias and Kok, Ruben and Kok, Joost and Lusher, Scott J. and Martone, Maryann E. and Mons, Albert and Packer, Abel L. and Persson, Bengt and Rocca-Serra, Philippe and Roos, Marco and van Schaik, Rene and Sansone, Susanna-Assunta and Schultes, Erik and Sengstag, Thierry and Slater, Ted and Strawn, George and Swertz, Morris A. and Thompson, Mark and van der Lei, Johan and van Mulligen, Erik and Velterop, Jan and Waagmeester, Andra and Wittenburg, Peter and Wolstencroft, Katherine and Zhao, Jun and Mons, Barend},
date = {2016/03/15},
date-added = {2022-10-26 14:14:12 -0400},
date-modified = {2022-10-26 14:14:12 -0400},
doi = {10.1038/sdata.2016.18},
id = {Wilkinson2016},
isbn = {2052-4463},
journal = {Scientific Data},
number = {1},
pages = {160018},
title = {The FAIR Guiding Principles for scientific data management and stewardship},
url = {https://doi.org/10.1038/sdata.2016.18},
volume = {3},
year = {2016},
bdsk-url-1 = {https://doi.org/10.1038/sdata.2016.18}
}
@article{liu_imaging_2017,
title = {The {Current} {Role} of {Image} {Compression} {Standards} in {Medical} {Imaging}},
volume = {8},
copyright = {http://creativecommons.org/licenses/by/3.0/},
url = {https://www.mdpi.com/2078-2489/8/4/131},
doi = {10.3390/info8040131},
abstract = {With the increasing utilization of medical imaging in clinical practice and the growing dimensions of data volumes generated by various medical imaging modalities, the distribution, storage, and management of digital medical image data sets requires data compression. Over the past few decades, several image compression standards have been proposed by international standardization organizations. This paper discusses the current status of these image compression standards in medical imaging applications together with some of the legal and regulatory issues surrounding the use of compression in medical settings.},
language = {en},
number = {4},
urldate = {2022-01-10},
journal = {Information},
author = {Liu, Feng and Hernandez-Cabronero, Miguel and Sanchez, Victor and Marcellin, Michael W. and Bilgin, Ali},
month = dec,
year = {2017},
note = {Number: 4
Publisher: Multidisciplinary Digital Publishing Institute},
keywords = {DICOM, HEVC, image compression, JPEG, JPEG-LS, JPEG-XR, JPEG2000, medical imaging, standards},
pages = {131},
}
@misc{NIS,
title = {{NIS} {Database} {Documentation}},
url = {https://www.hcup-us.ahrq.gov/db/nation/nis/nisdbdocumentation.jsp},
urldate = {2021-12-17},
}
@article{Afgan2018,
doi = {10.1093/nar/gky379},
url = {https://doi.org/10.1093/nar/gky379},
year = {2018},
month = may,
publisher = {Oxford University Press ({OUP})},
volume = {46},
number = {W1},
pages = {W537--W544},
author = {Enis Afgan and Dannon Baker and B{\'{e}}r{\'{e}}nice Batut and Marius van~den~Beek and Dave Bouvier and Martin {\v{C}}ech and John Chilton and Dave Clements and Nate Coraor and Bj\"{o}rn A Gr\"{u}ning and Aysam Guerler and Jennifer Hillman-Jackson and Saskia Hiltemann and Vahid Jalili and Helena Rasche and Nicola Soranzo and Jeremy Goecks and James Taylor and Anton Nekrutenko and Daniel Blankenberg},
title = {The Galaxy platform for accessible, reproducible and collaborative biomedical analyses: 2018 update},
journal = {Nucleic Acids Research}
}
@article{divio,
url = {https://docs.divio.com/documentation-system/},
title = {The Documentation System},
author = {Divio team},
year = {2024},
}
@blog{Alexakis2017,
author = {Alex Alexakis},
title = {You're not your user},
url = {https://blog.prototypr.io/dear-product-managers-youre-not-your-users-e5739627cbc8},
}
@website{Babich,
author = {Nick Babich},
year = {2019},
title = {The 4 Golden Rules of UI Design},
url = {https://xd.adobe.com/ideas/process/ui-design/4-golden-rules-ui-design/},
}
@blog{Babich2017,
author = {Nick Babich},
title = {F-Shaped Pattern for Reading Content},
url = {https://uxplanet.org/f-shaped-pattern-for-reading-content-80af79cd3394},
}
@website{Bodner2018,
author = {Herbet Bodner},
year = {2018},
title = {10 Reasons Why Code Reviews Make Better Code and Better Teams},
url = {https://simpleprogrammer.com/why-code-reviews-make-better-code-teams/},
}
@article{Bolchini2008,
doi = {10.1093/bioinformatics/btn633},
url = {https://doi.org/10.1093/bioinformatics/btn633},
year = {2008},
month = dec,
publisher = {Oxford University Press ({OUP})},
volume = {25},
number = {3},
pages = {406--412},
author = {Davide Bolchini and Anthony Finkelstein and Vito Perrone and Sylvia Nagl},
title = {Better bioinformatics through usability analysis},
journal = {Bioinformatics}
}
@article{Budd2015,
doi = {10.1371/journal.pcbi.1003972},
url = {https://doi.org/10.1371/journal.pcbi.1003972},
year = {2015},
month = feb,
publisher = {Public Library of Science ({PLoS})},
volume = {11},
number = {2},
pages = {e1003972},
author = {Aidan Budd and Manuel Corpas and Michelle D. Brazas and Jonathan C. Fuller and Jeremy Goecks and Nicola J. Mulder and Magali Michaut and B. F. Francis Ouellette and Aleksandra Pawlik and Niklas Blomberg},
editor = {Amarda Shehu},
title = {A Quick Guide for Building a Successful Bioinformatics Community},
journal = {{PLOS} Computational Biology}
}
@website{Cronin2019,
author = {Mike Cronin},
year = {2019},
title = {What Makes a Good Code Comment?},
url = {https://itnext.io/what-makes-a-good-code-comment-5267debd2c24},
}
@website{Csontos2019,
author = {Anna-Zsófia Csontos},
year = {2019},
title = {All You Need to Know to Run Successful Usability Testing},
url = {https://uxstudioteam.com/ux-blog/usability-testing/},
}
@article{deMatos2013,
doi = {10.1186/1471-2105-14-103},
url = {https://doi.org/10.1186/1471-2105-14-103},
year = {2013},
publisher = {Springer Science and Business Media {LLC}},
volume = {14},
number = {1},
pages = {103},
author = {Paula de Matos and Jennifer A Cham and Hong Cao and Rafael Alc{\'{a}}ntara and Francis Rowland and Rodrigo Lopez and Christoph Steinbeck},
title = {The Enzyme Portal: a case study in applying user-centered design methods in bioinformatics},
journal = {{BMC} Bioinformatics}
}
@article{Duck2016,
doi = {10.1371/journal.pone.0157989},
url = {https://doi.org/10.1371/journal.pone.0157989},
year = {2016},
month = jun,
publisher = {Public Library of Science ({PLoS})},
volume = {11},
number = {6},
pages = {e0157989},
author = {Geraint Duck and Goran Nenadic and Michele Filannino and Andy Brass and David L. Robertson and Robert Stevens},
editor = {Shoba Ranganathan},
title = {A Survey of Bioinformatics Database and Software Usage through Mining the Literature},
journal = {{PLOS} {ONE}}
}
@article{Bolyen2019,
doi = {10.1038/s41587-019-0209-9},
url = {https://doi.org/10.1038/s41587-019-0209-9},
year = {2019},
month = jul,
publisher = {Springer Science and Business Media {LLC}},
volume = {37},
number = {8},
pages = {852--857},
author = {Evan Bolyen and Jai Ram Rideout and Matthew R. Dillon and Nicholas A. Bokulich and Christian C. Abnet and Gabriel A. Al-Ghalith and Harriet Alexander and Eric J. Alm and Manimozhiyan Arumugam and Francesco Asnicar and Yang Bai and Jordan E. Bisanz and Kyle Bittinger and Asker Brejnrod and Colin J. Brislawn and C. Titus Brown and Benjamin J. Callahan and Andr{\'{e}}s Mauricio Caraballo-Rodr{\'{\i}}guez and John Chase and Emily K. Cope and Ricardo Da Silva and Christian Diener and Pieter C. Dorrestein and Gavin M. Douglas and Daniel M. Durall and Claire Duvallet and Christian F. Edwardson and Madeleine Ernst and Mehrbod Estaki and Jennifer Fouquier and Julia M. Gauglitz and Sean M. Gibbons and Deanna L. Gibson and Antonio Gonzalez and Kestrel Gorlick and Jiarong Guo and Benjamin Hillmann and Susan Holmes and Hannes Holste and Curtis Huttenhower and Gavin A. Huttley and Stefan Janssen and Alan K. Jarmusch and Lingjing Jiang and Benjamin D. Kaehler and Kyo Bin Kang and Christopher R. Keefe and Paul Keim and Scott T. Kelley and Dan Knights and Irina Koester and Tomasz Kosciolek and Jorden Kreps and Morgan G. I. Langille and Joslynn Lee and Ruth Ley and Yong-Xin Liu and Erikka Loftfield and Catherine Lozupone and Massoud Maher and Clarisse Marotz and Bryan D. Martin and Daniel McDonald and Lauren J. McIver and Alexey V. Melnik and Jessica L. Metcalf and Sydney C. Morgan and Jamie T. Morton and Ahmad Turan Naimey and Jose A. Navas-Molina and Louis Felix Nothias and Stephanie B. Orchanian and Talima Pearson and Samuel L. Peoples and Daniel Petras and Mary Lai Preuss and Elmar Pruesse and Lasse Buur Rasmussen and Adam Rivers and Michael S. Robeson and Patrick Rosenthal and Nicola Segata and Michael Shaffer and Arron Shiffer and Rashmi Sinha and Se Jin Song and John R. Spear and Austin D. Swafford and Luke R. Thompson and Pedro J. Torres and Pauline Trinh and Anupriya Tripathi and Peter J. Turnbaugh and Sabah Ul-Hasan and Justin J. J. van der Hooft and Fernando Vargas and Yoshiki V{\'{a}}zquez-Baeza and Emily Vogtmann and Max von Hippel and William Walters and Yunhu Wan and Mingxun Wang and Jonathan Warren and Kyle C. Weber and Charles H. D. Williamson and Amy D. Willis and Zhenjiang Zech Xu and Jesse R. Zaneveld and Yilong Zhang and Qiyun Zhu and Rob Knight and J. Gregory Caporaso},
title = {Reproducible, interactive, scalable and extensible microbiome data science using {QIIME} 2},
journal = {Nature Biotechnology}
}
@article{deMatos2013,
doi = {10.1186/1471-2105-14-103},
url = {https://doi.org/10.1186/1471-2105-14-103},
year = {2013},
publisher = {Springer Science and Business Media {LLC}},
volume = {14},
number = {1},
pages = {103},
author = {Paula de Matos and Jennifer A Cham and Hong Cao and Rafael Alc{\'{a}}ntara and Francis Rowland and Rodrigo Lopez and Christoph Steinbeck},
title = {The Enzyme Portal: a case study in applying user-centred design methods in bioinformatics},
journal = {{BMC} Bioinformatics}
}
@website{Frazee2014,
author = {Alyssa Frazee},
year = {2014},
title = {Some internet wisdom on R documentation},
url = {http://alyssafrazee.com/2014/04/20/rdocs.html},
}
@website{Gitlab,
author = {GitLab},
title = {Writing a usability testing script},
url = {https://about.gitlab.com/handbook/engineering/ux/ux-research-training/writing-usability-testing-script/},
}
@website{Hotjar2020,
author = {HotJar},
year = {2019},
title = {How to run moderated usability testing},
url = {https://www.hotjar.com/usability-testing/process-examples/},
}
@website{Herothemes,
author = {Herothemes},
year = {2020},
title = {8 Best Knowledge Base Software Compared (Pros & Cons)},
url = {https://herothemes.com/blog/best-knowledge-base-software/},
}
@article{Javahery2004,
doi = {10.1145/1029496.1029527},
url = {https://doi.org/10.1145/1029496.1029527},
year = {2004},
month = nov,
publisher = {Association for Computing Machinery ({ACM})},
volume = {47},
number = {11},
pages = {58--63},
author = {Homa Javahery and Ahmed Seffah and Thiruvengadam Radhakrishnan},
title = {Beyond power},
journal = {Communications of the {ACM}}
}
@article{Karimzadeh2017,
doi = {10.1093/bib/bbw134},
url = {https://doi.org/10.1093/bib/bbw134},
year = {2017},
month = jan,
publisher = {Oxford University Press ({OUP})},
volume = {19},
number = {4},
pages = {693--699},
author = {Mehran Karimzadeh and Michael M Hoffman},
title = {Top considerations for creating bioinformatics software documentation},
journal = {Briefings in Bioinformatics}
}
@website{Keeton2019,
author = {B.J. Keeto},
year = {2019},
title = {How to Comment Your Code Like a Pro: Best Practices and Good Habits},
url = {https://www.elegantthemes.com/blog/wordpress/how-to-comment-your-code-like-a-pro-best-practices-and-good-habits},
}
@website{Krug2010,
author = {Steve Krug},
year = {2010},
title = {Rocket Surgery Made Easy:The Do-It-Yourself Guide to Finding and Fixing Usability Problems},
url = {https://sensible.com/downloads/things-a-therapist-would-say.pdf},
}
@article{Kumar2007,
doi = {10.1093/bioinformatics/btm239},
url = {https://doi.org/10.1093/bioinformatics/btm239},
year = {2007},
month = may,
publisher = {Oxford University Press ({OUP})},
volume = {23},
number = {14},
pages = {1713--1717},
author = {S. Kumar and J. Dudley},
title = {Bioinformatics software for biologists in the genomics era},
journal = {Bioinformatics}
}
@article{Love2014,
doi = {10.1186/s13059-014-0550-8},
url = {https://doi.org/10.1186/s13059-014-0550-8},
year = {2014},
month = dec,
publisher = {Springer Science and Business Media {LLC}},
volume = {15},
number = {12},
author = {Michael I Love and Wolfgang Huber and Simon Anders},
title = {Moderated estimation of fold change and dispersion for {RNA}-seq data with {DESeq}2},
journal = {Genome Biology}
}
@article{Mangul2019,
doi = {10.1186/s13059-019-1649-8},
url = {https://doi.org/10.1186/s13059-019-1649-8},
year = {2019},
month = feb,
publisher = {Springer Science and Business Media {LLC}},
volume = {20},
number = {1},
author = {Serghei Mangul and Lana S. Martin and Eleazar Eskin and Ran Blekhman},
title = {Improving the usability and archival stability of bioinformatics software},
journal = {Genome Biology}
}
@article{Mangul2019b,
doi = {10.1371/journal.pbio.3000333},
url = {https://doi.org/10.1371/journal.pbio.3000333},
year = {2019},
month = jun,
publisher = {Public Library of Science ({PLoS})},
volume = {17},
number = {6},
pages = {e3000333},
author = {Serghei Mangul and Thiago Mosqueiro and Richard J. Abdill and Dat Duong and Keith Mitchell and Varuni Sarwal and Brian Hill and Jaqueline Brito and Russell Jared Littman and Benjamin Statz and Angela Ka-Mei Lam and Gargi Dayama and Laura Grieneisen and Lana S. Martin and Jonathan Flint and Eleazar Eskin and Ran Blekhman},
title = {Challenges and recommendations to improve the installability and archival stability of omics computational tools},
journal = {{PLOS} Biology}
}
@website{Meza2018,
author = {Frank Meza},
year = {2018},
title = {The Value of Code Documentation},
url = {https://www.olioapps.com/blog/the-value-of-code-documentation/},
}
@Article{Molder2021,
author = { Molder, F and Jablonski, KP and Letcher, B and Hall, MB and Tomkins-Tinch, CH and Sochat, V and Forster, J and Lee, S and Twardziok, SO and Kanitz, A and Wilm, A and Holtgrewe, M and Rahmann, S and Nahnsen, S and K�ster, J},
title = {Sustainable data analysis with Snakemake [version 1; peer review: 1 approved, 1 approved with reservations]
},
journal = {F1000Research},
volume = {10},
year = {2021},
number = {33},
doi = {10.12688/f1000research.29032.1}
}
@website{Moon2011,
author = {Garrett Moon},
year = {2011},
title = {10 Tips For Creating a Killer FAQ Page},
url = {https://www.socialmediatoday.com/content/10-tips-creating-killer-faq-page},
}
@website{Moran2019,
author = {Kate Moran},
year = {2019},
title = {Usability Testing 101},
url = {https://www.nngroup.com/articles/usability-testing-101/},
}
@article{Mulder2018,
doi = {10.1371/journal.pcbi.1005772},
url = {https://doi.org/10.1371/journal.pcbi.1005772},
year = {2018},
month = feb,
publisher = {Public Library of Science ({PLoS})},
volume = {14},
number = {2},
pages = {e1005772},
author = {Nicola Mulder and Russell Schwartz and Michelle D. Brazas and Cath Brooksbank and Bruno Gaeta and Sarah L. Morgan and Mark A. Pauley and Anne Rosenwald and Gabriella Rustici and Michael Sierk and Tandy Warnow and Lonnie Welch},
editor = {Olga G. Troyanskaya},
title = {The development and application of bioinformatics core competencies to improve bioinformatics training and education},
journal = {{PLOS} Computational Biology}
}
@website{Oles2021,
author = {Andrzej Oleś, Wolfgang Huber and Martin Morgan},
year = {2021},
title = {Authoring R Markdown vignettes},
url = {https://bioconductor.org/packages/devel/bioc/vignettes/BiocStyle/inst/doc/AuthoringRmdVignettes.html},
}
@article{Pavelin2012,
doi = {10.1371/journal.pcbi.1002554},
url = {https://doi.org/10.1371/journal.pcbi.1002554},
year = {2012},
month = jul,
publisher = {Public Library of Science ({PLoS})},
volume = {8},
number = {7},
pages = {e1002554},
author = {Katrina Pavelin and Jennifer A. Cham and Paula de Matos and Cath Brooksbank and Graham Cameron and Christoph Steinbeck},
editor = {Philip E. Bourne},
title = {Bioinformatics Meets User-Centred Design: A Perspective},
journal = {{PLoS} Computational Biology}
}
@article{Patro2017,
doi = {10.1038/nmeth.4197},
url = {https://doi.org/10.1038/nmeth.4197},
year = {2017},
month = mar,
publisher = {Springer Science and Business Media {LLC}},
volume = {14},
number = {4},
pages = {417--419},
author = {Rob Patro and Geet Duggal and Michael I Love and Rafael A Irizarry and Carl Kingsford},
title = {Salmon provides fast and bias-aware quantification of transcript expression},
journal = {Nature Methods}
}
@website{Porter,
author = {Joshua Porter},
title = {Principles of User Interface Design},
url = {http://bokardo.com/principles-of-user-interface-design/},
}
@article{Quinlan2010,
doi = {10.1093/bioinformatics/btq033},
url = {https://doi.org/10.1093/bioinformatics/btq033},
year = {2010},
month = jan,
publisher = {Oxford University Press ({OUP})},
volume = {26},
number = {6},
pages = {841--842},
author = {Aaron R. Quinlan and Ira M. Hall},
title = {{BEDTools}: a flexible suite of utilities for comparing genomic features},
journal = {Bioinformatics}
}
@website{Rehan2019,
author = {Adnan Rehan},
year = {2019},
title = {Build Online Community and Forum with these 8 Best Software},
url = {https://geekflare.com/online-community-software/},
}
@Manual{RStudioTeam2020,
title = {RStudio: Integrated Development Environment for R},
author = {{RStudio Team}},
organization = {RStudio, PBC.},
address = {Boston, MA},
year = {2020},
url = {http://www.rstudio.com/},
}
@website{Simon2020,
author = {Justin Simon},
year = {2020},
title = {The Ultimate Guide to Easily Make Instructional Videos},
url = {https://www.techsmith.com/blog/instructional-videos/},
}
@blog{Soegaard2020,
author = {Mads Soegaard},
title = {Visual Hierarchy: Organizing content to follow natural eye movement patterns},
url = {https://www.interaction-design.org/literature/article/visual-hierarchy-organizing-content-to-follow-natural-eye-movement-patterns},
}
@website{OutlookStudios2020,
author = {Outlook Studios},
year = {2020},
title = {6 Tools to Find Broken Links on Your Website},
url = {https://www.outlookstudios.com/tools-to-find-broken-links-on-your-website/},
}
@blog{Spertus2021,
author = {Ellen Spertus},
title = {Best practices for writing code comments},
url = {https://stackoverflow.blog/2021/07/05/best-practices-for-writing-code-comments/},
}
@blog{Spielman,
author = {Stephanie Spielman},
title = {Introduction to R - CB2R Data Science Workshop, Summer 2020},
url = {https://github.com/sjspielman/cb2r-ds-summer2020/blob/71cb11277e7383292bf727841ab5fa4ed43cfcbe/resources/introduction_to_R.Rmd#L92},
}
@article {Subramanian2005,
author = {Subramanian, Aravind and Tamayo, Pablo and Mootha, Vamsi K. and Mukherjee, Sayan and Ebert, Benjamin L. and Gillette, Michael A. and Paulovich, Amanda and Pomeroy, Scott L. and Golub, Todd R. and Lander, Eric S. and Mesirov, Jill P.},
title = {Gene set enrichment analysis: A knowledge-based approach for interpreting genome-wide expression profiles},
volume = {102},
number = {43},
pages = {15545--15550},
year = {2005},
doi = {10.1073/pnas.0506580102},
publisher = {National Academy of Sciences},
abstract = {Although genomewide RNA expression analysis has become a routine tool in biomedical research, extracting biological insight from such information remains a major challenge. Here, we describe a powerful analytical method called Gene Set Enrichment Analysis (GSEA) for interpreting gene expression data. The method derives its power by focusing on gene sets, that is, groups of genes that share common biological function, chromosomal location, or regulation. We demonstrate how GSEA yields insights into several cancer-related data sets, including leukemia and lung cancer. Notably, where single-gene analysis finds little similarity between two independent studies of patient survival in lung cancer, GSEA reveals many biological pathways in common. The GSEA method is embodied in a freely available software package, together with an initial database of 1,325 biologically defined gene sets.},
issn = {0027-8424},
URL = {https://www.pnas.org/content/102/43/15545},
eprint = {https://www.pnas.org/content/102/43/15545.full.pdf},
journal = {Proceedings of the National Academy of Sciences}
}
@website{Tidwell,
author = {Jeniger Tidwell},
year = {2021},
title = {Organizing the Page:Layout of Page Elements},
url = {https://www.oreilly.com/library/view/designing-interfaces/0596008031/ch04.html},
}
@website{Trounce2019,
author = {David Trounce},
year = {2019},
title = {7 Great Tools For Creating Your Own Video Tutorials},
url = {https://helpdeskgeek.com/free-tools-review/7-great-tools-for-creating-your-own-video-tutorials/},
}
@website{Wilson2020,
author = {Lee Wilson},
year = {2020},
title = {25 of the Best Examples of Effective FAQ Pages},
url = {https://www.searchenginejournal.com/best-faq-page-examples/267709/},
}
@website{Wolf2016,
author = {Damian Wolf},
year = {2016},
title = {Why Developers Write Horrible Documentation and How to Solve It},
url = {https://dzone.com/articles/why-developers-write-horrible-documentation-and-ho},
}
@Book{xie2015,
title = {Dynamic Documents with {R} and knitr},
author = {Yihui Xie},
publisher = {Chapman and Hall/CRC},
address = {Boca Raton, Florida},
year = {2015},
edition = {2nd},
note = {ISBN 978-1498716963},
url = {http://yihui.name/knitr/},
}
@misc{Aaberge2021,
title = {Stop {Using} {Magic} {Numbers} and {Variables} in {Your} {Code}},
url = {https://betterprogramming.pub/stop-using-magic-numbers-and-variables-in-your-code-4e86f008b84c},
abstract = {No one will understand your program. Not even you},
language = {en},
urldate = {2021-11-02},
journal = {Medium},
author = {Aaberge, Martin Andersson},
month = January,
year = {2021},
}
@article{Baker2009,
title = {1,500 scientists lift the lid on reproducibility},
volume = {533},
copyright = {2016 Nature Publishing Group},
issn = {1476-4687},
url = {https://www.nature.com/articles/533452a},
doi = {10.1038/533452a},
abstract = {Survey sheds light on the ‘crisis’ rocking research.},
language = {en},
number = {7604},
urldate = {2021-10-06},
journal = {Nature},
author = {Baker, Monya},
month = {May},
year = {2016},
pages = {452--454},
}
@article{Baker2016,
title = {1,500 scientists lift the lid on reproducibility},
volume = {533},
copyright = {2016 Nature Publishing Group},
issn = {1476-4687},
url = {https://www.nature.com/articles/533452a},
doi = {10.1038/533452a},
abstract = {Survey sheds light on the ‘crisis’ rocking research.},
language = {en},
number = {7604},
urldate = {2021-10-06},
journal = {Nature},
author = {Baker, Monya},
month = {May},
year = {2016},
pages = {452--454},
}
@article{BeaulieuJones2017,
doi = {10.1038/nbt.3780},
url = {https://doi.org/10.1038/nbt.3780},
year = {2017},
month = {Mar},
publisher = {Springer Science and Business Media {LLC}},
volume = {35},
number = {4},
pages = {342--346},
author = {Brett K Beaulieu-Jones and Casey S Greene},
title = {Reproducibility of computational workflows is automated using continuous analysis},
journal = {Nature Biotechnology}
}
@article{Benureau2018,
title = {Re-run, {Repeat}, {Reproduce}, {Reuse}, {Replicate}: {Transforming} {Code} into {Scientific} {Contributions}},
volume = {11},
issn = {1662-5196},
shorttitle = {Re-run, {Repeat}, {Reproduce}, {Reuse}, {Replicate}},
url = {https://www.frontiersin.org/article/10.3389/fninf.2017.00069},
doi = {10.3389/fninf.2017.00069},
abstract = {Scientific code is different from production software. Scientific code, by producing results that are then analyzed and interpreted, participates in the elaboration of scientific conclusions. This imposes specific constraints on the code that are often overlooked in practice. We articulate, with a small example, five characteristics that a scientific code in computational science should possess: re-runnable, repeatable, reproducible, reusable, and replicable. The code should be executable (re-runnable) and produce the same result more than once (repeatable); it should allow an investigator to reobtain the published results (reproducible) while being easy to use, understand and modify (reusable), and it should act as an available reference for any ambiguity in the algorithmic descriptions of the article (replicable).},
urldate = {2021-10-06},
journal = {Frontiers in Neuroinformatics},
author = {Benureau, Fabien C. Y. and Rougier, Nicolas P.},
year = {2018},
pages = {69},
}
@misc{Bernardo2021,
title = {Best {Practices} for {R} {Programming}},
url = {https://towardsdatascience.com/best-practices-for-r-programming-ec0754010b5a},
abstract = {Writing clean code is a great skill to have when you are working collaboratively— here are some tips for making your R code a bit cleaner},
language = {en},
urldate = {2021-11-02},
journal = {Medium},
author = {Bernardo, Ivo},
month = August,
year = {2021},
}
@misc{Biostars2021,
title = {How Do You Manage Your Files & Directories For Your Projects?},
url = {www.biostars.org/p/821/},
urldate = {2021-10-12},
year = {2010},
}
@article{Brito2020,
doi = {10.1093/gigascience/giaa056},
url = {https://doi.org/10.1093/gigascience/giaa056},
year = {2020},
month = June,
publisher = {Oxford University Press ({OUP})},
volume = {9},
number = {6},
author = {Jaqueline J Brito and Jun Li and Jason H Moore and Casey S Greene and Nicole A Nogoy and Lana X Garmire and Serghei Mangul},
title = {Recommendations to enhance rigor and reproducibility in biomedical research},
journal = {{GigaScience}}
}
@misc{Broman,
title = {Tools for {Reproducible} {Research}},
url = {https://kbroman.org/Tools4RR/},
author = {Karl Broman},
abstract = {A course on tools for reproducible research, UW-Madison},
urldate = {2021-10-11},
year = {2016},
}
@website{Bryan2017,
author = {Jenny Bryan},
year = {2017},
month = {December},
title = {Project-oriented workflow},
url = {https://www.tidyverse.org/blog/2017/12/workflow-vs-script/},
journal = {Tidyverse Blog},
}
@website{Bryan2021,
author = {Jenny Bryan and Jim Hester},
title = {Happy Git and GitHub for the useR},
url = {https://happygitwithr.com/},
year = {2021},
}
@book{Cannell2021,
title = {9 {Coding} best practices {\textbar} {R} for {Epidemiology}},
url = {https://brad-cannell.github.io/r4epi/},
abstract = {This is the textbook for Brad Cannell’s Introduction to R Programming for Epidemiologic Research course.},
urldate = {2021-11-02},
author = {Cannell, Brad},
year = {2021},
}
@book{Chacon2014,
title={Pro git},
author={Chacon, Scott and Straub, Ben},
year={2014},
publisher={Apress}
}
@misc{Chang2021,
author = {Winston Chang},
title = {Generating random numbers},
url = {http://www.cookbook-r.com/Numbers/Generating_random_numbers/},
urldate = {2021-11-02},
year = {2021}
}
@misc{Cronin2019,
title = {What {Makes} a {Good} {Code} {Comment}?},
url = {https://itnext.io/what-makes-a-good-code-comment-5267debd2c24},
abstract = {How comments can clarify things code can’t},
language = {en},
urldate = {2021-10-29},
journal = {Medium},
author = {Cronin, Mike},
month = October,
year = {2019},
}
@misc{Csendes2020,
title = {15 common coding mistakes data scientist make in {Python} (and how to fix them)},
url = {https://towardsdatascience.com/15-common-coding-mistakes-data-scientist-make-in-python-and-how-to-fix-them-7760467498af},
abstract = {Data scientists are known for writing bad code. Start improving your code quality by not making these mistakes.},
language = {en},
urldate = {2021-11-02},
journal = {Medium},
author = {Csendes, Gerold},
month = December,
year = {2020},
}
@misc{DataCarpentry2019,
title = {Introduction to the Command Line for Genomics},
url = {https://bioinformatics-core-shared-training.github.io/shell-genomics/07-organization/index.html},
chapter = {Project Organization},
urldate = {2021-10-12},
year = {2019},
}
@misc{DataCarpentry2021,
title = {Project {Organization} and {Management} for {Genomics}},
url = {https://datacarpentry.org/organization-genomics/},
urldate = {2021-10-12},
year = {2021},
}
@misc{DataCarpentry2021b,
title = {Best {Practices} for {Writing} {R} {Code} – {Programming} with {R}},
url = {https://swcarpentry.github.io/r-novice-inflammation/06-best-practices-R/},
urldate = {2021-11-02},
year = {2021},
}
@misc{Diederich2012,
title = {Stop {Writing} {Classes}},
url = {https://pyvideo.org/pycon-us-2012/stop-writing-classes.html},
language = {en},
urldate = {2021-10-29},
journal = {PyVideo.org},
author = {Diederich, Jack},
year = {2012},
}
@misc{DRY,
title = {How {To} {Keep} {Your} {Code} {Dry}},
url = {http://www.drycode.io},
abstract = {How to keep your code DRY},
urldate = {2021-10-29},
year = {2021},
}
@misc{DRY2013,
title = {Don't {Repeat} {Yourself} - {Programmer} 97-things},
url = {https://web.archive.org/web/20131204221336/http://programmer.97things.oreilly.com/wiki/index.php/Don't_Repeat_Yourself},
urldate = {2021-10-29},
month = December,
year = {2013},
}
@misc{Dubel2021,
title = {5 {Tips} for {Writing} {Clean} {R} {Code} - {Leave} {Your} {Code} {Reviewer} {Commentless}},
author = {Marcin Dubel},
url = {https://appsilon.com/write-clean-r-code/},
abstract = {Writing readable and maintainable R code is no small task. Here are our top 5 tips for making your code reviewer commentless - from basic comments to best programming practices.},
language = {en-GB},
urldate = {2021-11-02},
journal = {Appsilon {\textbar} End to End Data Science Solutions},
month = {Mar},
year = {2021},
}
@misc{Driscoll2021,
title = {Jupyter {Notebook}: {An} {Introduction} – {Real} {Python}},
shorttitle = {Jupyter {Notebook}},
url = {https://realpython.com/jupyter-notebook-introduction/},
abstract = {In this step-by-step Python tutorial, you learn how to get started with The Jupyter Notebook, an open source web application that you can use to create and share documents that contain live code, equations, visualizations, and text.},
language = {en},
urldate = {2021-11-16},
author = {Mike, Driscoll},
note = {publisher: Real Python},
year = {2021},