-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontributing.html
1039 lines (1014 loc) · 55.7 KB
/
contributing.html
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
<meta charset="utf-8">
<meta name="generator" content="quarto-1.3.340">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>ProteomicsML – contributing</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */
vertical-align: middle;
}
/* CSS for syntax highlighting */
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
div.sourceCode { margin: 1em 0; }
pre.sourceCode { margin: 0; }
@media screen {
div.sourceCode { overflow: auto; }
}
@media print {
pre > code.sourceCode { white-space: pre-wrap; }
pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
}
pre.numberSource code
{ counter-reset: source-line 0; }
pre.numberSource code > span
{ position: relative; left: -4em; counter-increment: source-line; }
pre.numberSource code > span > a:first-child::before
{ content: counter(source-line);
position: relative; left: -1em; text-align: right; vertical-align: baseline;
border: none; display: inline-block;
-webkit-touch-callout: none; -webkit-user-select: none;
-khtml-user-select: none; -moz-user-select: none;
-ms-user-select: none; user-select: none;
padding: 0 4px; width: 4em;
}
pre.numberSource { margin-left: 3em; padding-left: 4px; }
div.sourceCode
{ }
@media screen {
pre > code.sourceCode > span > a:first-child::before { text-decoration: underline; }
}
/* CSS for citations */
div.csl-bib-body { }
div.csl-entry {
clear: both;
}
.hanging-indent div.csl-entry {
margin-left:2em;
text-indent:-2em;
}
div.csl-left-margin {
min-width:2em;
float:left;
}
div.csl-right-inline {
margin-left:2em;
padding-left:1em;
}
div.csl-indent {
margin-left: 2em;
}</style>
<script src="site_libs/quarto-nav/quarto-nav.js"></script>
<script src="site_libs/quarto-nav/headroom.min.js"></script>
<script src="site_libs/clipboard/clipboard.min.js"></script>
<script src="site_libs/quarto-search/autocomplete.umd.js"></script>
<script src="site_libs/quarto-search/fuse.min.js"></script>
<script src="site_libs/quarto-search/quarto-search.js"></script>
<meta name="quarto:offset" content="./">
<link href="./static/img/proteomicsml-icon.svg" rel="icon" type="image/svg+xml">
<script src="site_libs/cookie-consent/cookie-consent.js"></script>
<link href="site_libs/cookie-consent/cookie-consent.css" rel="stylesheet">
<script src="site_libs/quarto-html/quarto.js"></script>
<script src="site_libs/quarto-html/popper.min.js"></script>
<script src="site_libs/quarto-html/tippy.umd.min.js"></script>
<script src="site_libs/quarto-html/anchor.min.js"></script>
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet">
<link href="site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" id="quarto-bootstrap" data-mode="light">
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
"copy-button": false,
"collapse-after": 3,
"panel-placement": "end",
"type": "overlay",
"limit": 20,
"language": {
"search-no-results-text": "No results",
"search-matching-documents-text": "matching documents",
"search-copy-link-title": "Copy link to search",
"search-hide-matches-text": "Hide additional matches",
"search-more-match-text": "more match in this document",
"search-more-matches-text": "more matches in this document",
"search-clear-button-title": "Clear",
"search-detached-cancel-button-title": "Cancel",
"search-submit-button-title": "Submit"
}
}</script>
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-VVRMZHT2W2"></script>
<script type="text/plain" cookie-consent="tracking">
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VVRMZHT2W2', { 'anonymize_ip': true});
</script>
<script type="text/javascript" charset="UTF-8">
document.addEventListener('DOMContentLoaded', function () {
cookieconsent.run({
"notice_banner_type":"interstitial",
"consent_type":"express",
"palette":"light",
"language":"en",
"page_load_consent_levels":["strictly-necessary"],
"notice_banner_reject_button_hide":false,
"preferences_center_close_button_hide":false,
"website_name":""
});
});
</script>
<style>html{ scroll-behavior: smooth; }</style>
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "LearningResource",
"@id": "https://proteomicsml.org/",
"dct:conformsTo": {
"http://purl.org/dc/terms/conformsTo": {
"@id": "https://bioschemas.org/profiles/TrainingMaterial/1.0-RELEASE",
"@type": "CreativeWork"
}
},
"name": "ProteomicsML",
"description": "ProteomicsML provides ready-made datasets for machine learning models accompanied by tutorials on how to work with even the most complex data types in the field of proteomics. The resource is set up to evolve together with the field, and we welcome everyone to contribute to the project by adding new datasets and accompanying notebooks.",
"keywords": [
"machine learning",
"deep learning",
"proteomics",
"educational platform",
"community platform",
"bioinformatics",
"detectability",
"fragmentation",
"retention time",
"ion mobility"
],
"about": [
{
"@type": "DefinedTerm",
"@id": "http://edamontology.org/topic_0091",
"inDefinedTermSet": "http://edamontology.org",
"termCode": "topic_0091",
"name": "bioinformatics",
"url": "https://bioportal.bioontology.org/ontologies/EDAM/?p=classes&conceptid=http%3A%2F%2Fedamontology.org%2Ftopic_0091"
},
{
"@type": "DefinedTerm",
"@id": "http://edamontology.org/3474",
"inDefinedTermSet": "http://edamontology.org",
"termCode": "topic_3474",
"name": "machine learning",
"url": "https://bioportal.bioontology.org/ontologies/EDAM/?p=classes&conceptid=http%3A%2F%2Fedamontology.org%2Ftopic_3474"
},
{
"@type": "DefinedTerm",
"@id": "http://edamontology.org/0121",
"inDefinedTermSet": "http://edamontology.org",
"termCode": "topic_0121",
"name": "proteomics",
"url": "https://bioportal.bioontology.org/ontologies/EDAM/?p=classes&conceptid=http%3A%2F%2Fedamontology.org%2Ftopic_0121"
},
{
"@type": "DefinedTerm",
"@id": "http://edamontology.org/data_3670",
"inDefinedTermSet": "http://edamontology.org",
"termCode": "data_3670",
"name": "Online course",
"url": "https://bioportal.bioontology.org/ontologies/EDAM/?p=classes&conceptid=http%3A%2F%2Fedamontology.org%2Fdata_3670"
},
{
"@type": "DefinedTerm",
"@id": "http://edamontology.org/data_2536",
"inDefinedTermSet": "http://edamontology.org",
"termCode": "data_2536",
"name": "Mass spectrometry data",
"url": "https://bioportal.bioontology.org/ontologies/EDAM/?p=classes&conceptid=http%3A%2F%2Fedamontology.org%2Fdata_2536"
}
],
"abstract": "Data set acquisition and curation are often the most difficult and time-consuming parts of a machine learning endeavor. This is especially true for proteomics-based liquid chromatography (LC) coupled to mass spectrometry (MS) data sets, due to the high levels of data reduction that occur between raw data and machine learning-ready data. Since predictive proteomics is an emerging field, when predicting peptide behavior in LC-MS setups, each lab often uses unique and complex data processing pipelines in order to maximize performance, at the cost of accessibility and reproducibility. For this reason we introduce ProteomicsML, an online resource for proteomics-based data sets and tutorials across most of the currently explored physicochemical peptide properties. This community-driven resource makes it simple to access data in easy-to-process formats, and contains easy-to-follow tutorials that allow new users to interact with even the most advanced algorithms in the field. ProteomicsML provides data sets that are useful for comparing state-of-the-art machine learning algorithms, as well as providing introductory material for teachers and newcomers to the field alike. The platform is freely available at https://www.proteomicsml.org/, and we welcome the entire proteomics community to contribute to the project at https://github.com/ProteomicsML/ProteomicsML.",
"audience": [
{
"@type": "Audience",
"audienceType": "Students"
},
{
"@type": "Audience",
"audienceType": "PhD students"
},
{
"@type": "Audience",
"audienceType": "Postdoctoral researchers"
}
],
"competencyRequired": [
"Basic python programming",
"Machine learning basics",
"Basic proteomics and mass spectrometry knowledge"
],
"inLanguage": ["en-US"],
"learningResourceType": ["tutorials"],
"license": "https://spdx.org/licenses/CC-BY-4.0.html",
"url": "https://proteomicsml.org/"
}
</script>
<link rel="stylesheet" href="static/css/custom-styles.css">
</head>
<body class="nav-sidebar floating nav-fixed">
<div id="quarto-search-results"></div>
<header id="quarto-header" class="headroom fixed-top">
<nav class="navbar navbar-expand-lg navbar-dark ">
<div class="navbar-container container-fluid">
<div class="navbar-brand-container">
<a href="./index.html" class="navbar-brand navbar-brand-logo">
<img src="./static/img/proteomicsml-logo-inverse.svg" alt="ProteomicsML logo" class="navbar-logo">
</a>
</div>
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav navbar-nav-scroll me-auto">
<li class="nav-item">
<a class="nav-link active" href="./index.html" rel="" target="" aria-current="page">
<span class="menu-text">Home</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./publication.html" rel="" target="">
<span class="menu-text">Publication</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./tutorials/index.html" rel="" target="">
<span class="menu-text">Tutorials</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./datasets/index.html" rel="" target="">
<span class="menu-text">Datasets</span></a>
</li>
</ul>
<ul class="navbar-nav navbar-nav-scroll ms-auto">
<li class="nav-item">
<a class="nav-link" href="./contributing.html" rel="" target="">
<span class="menu-text">Contributing</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./code-of-conduct.html" rel="" target="">
<span class="menu-text">Code of Conduct</span></a>
</li>
<li class="nav-item compact">
<a class="nav-link" href="https://github.com/ProteomicsML" rel="" target=""><i class="bi bi-github" role="img" aria-label="GitHub">
</i>
<span class="menu-text"></span></a>
</li>
<li class="nav-item compact">
<a class="nav-link" href="https://twitter.com/ProteomicsML" rel="" target=""><i class="bi bi-twitter" role="img" aria-label="Twitter">
</i>
<span class="menu-text"></span></a>
</li>
</ul>
<div class="quarto-navbar-tools">
</div>
</div> <!-- /navcollapse -->
</div> <!-- /container-fluid -->
</nav>
<nav class="quarto-secondary-nav">
<div class="container-fluid d-flex">
<button type="button" class="quarto-btn-toggle btn" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar,#quarto-sidebar-glass" aria-controls="quarto-sidebar" aria-expanded="false" aria-label="Toggle sidebar navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<i class="bi bi-layout-text-sidebar-reverse"></i>
</button>
<nav class="quarto-page-breadcrumbs" aria-label="breadcrumb"><ol class="breadcrumb"><li class="breadcrumb-item"><a href="./contributing.html">Contributing</a></li></ol></nav>
<a class="flex-grow-1" role="button" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar,#quarto-sidebar-glass" aria-controls="quarto-sidebar" aria-expanded="false" aria-label="Toggle sidebar navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
</a>
</div>
</nav>
</header>
<!-- content -->
<div id="quarto-content" class="quarto-container page-columns page-rows-contents page-layout-article page-navbar">
<!-- sidebar -->
<nav id="quarto-sidebar" class="sidebar collapse collapse-horizontal sidebar-navigation floating overflow-auto">
<div class="sidebar-menu-container">
<ul class="list-unstyled mt-1">
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./index.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Home</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./publication.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Publication</span></a>
</div>
</li>
<li class="sidebar-item sidebar-item-section">
<div class="sidebar-item-container">
<a href="./tutorials/index.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Tutorials</span></a>
<a class="sidebar-item-toggle text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-1" aria-expanded="false" aria-label="Toggle section">
<i class="bi bi-chevron-right ms-2"></i>
</a>
</div>
<ul id="quarto-sidebar-section-1" class="collapse list-unstyled sidebar-section depth1 ">
<li class="sidebar-item sidebar-item-section">
<div class="sidebar-item-container">
<a href="./tutorials/ionmobility/index.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Ion mobility</span></a>
<a class="sidebar-item-toggle text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-2" aria-expanded="false" aria-label="Toggle section">
<i class="bi bi-chevron-right ms-2"></i>
</a>
</div>
<ul id="quarto-sidebar-section-2" class="collapse list-unstyled sidebar-section depth2 ">
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./tutorials/ionmobility/meier-tims-ccs.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Predicting CCS values for TIMS data</span></a>
</div>
</li>
</ul>
</li>
<li class="sidebar-item sidebar-item-section">
<div class="sidebar-item-container">
<a href="./tutorials/fragmentation/index.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Fragmentation</span></a>
<a class="sidebar-item-toggle text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-3" aria-expanded="false" aria-label="Toggle section">
<i class="bi bi-chevron-right ms-2"></i>
</a>
</div>
<ul id="quarto-sidebar-section-3" class="collapse list-unstyled sidebar-section depth2 ">
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./tutorials/fragmentation/nist-1-parsing-spectral-library.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">NIST (part 1): Preparing a spectral library for ML</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./tutorials/fragmentation/nist-2-traditional-ml-gradient-boosting.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">NIST (part 2): Traditional ML: Gradient boosting</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./tutorials/fragmentation/preannotated-prosit.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Prosit-style GRU with pre-annotated ProteomeTools data</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./tutorials/fragmentation/raw-to-prosit.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Raw file processing with PROSIT style annotation</span></a>
</div>
</li>
</ul>
</li>
<li class="sidebar-item sidebar-item-section">
<div class="sidebar-item-container">
<a href="./tutorials/detectability/index.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Detectability</span></a>
<a class="sidebar-item-toggle text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-4" aria-expanded="false" aria-label="Toggle section">
<i class="bi bi-chevron-right ms-2"></i>
</a>
</div>
<ul id="quarto-sidebar-section-4" class="collapse list-unstyled sidebar-section depth2 ">
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./tutorials/detectability/modeling-protein-detectability.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Modelling protein detectability with an MLP</span></a>
</div>
</li>
</ul>
</li>
<li class="sidebar-item sidebar-item-section">
<div class="sidebar-item-container">
<a href="./tutorials/retentiontime/index.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Retention time</span></a>
<a class="sidebar-item-toggle text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-5" aria-expanded="false" aria-label="Toggle section">
<i class="bi bi-chevron-right ms-2"></i>
</a>
</div>
<ul id="quarto-sidebar-section-5" class="collapse list-unstyled sidebar-section depth2 ">
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./tutorials/retentiontime/deeplc-transfer-learning.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Transfer learning with DeepLC</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./tutorials/retentiontime/dlomix-prosit-rt.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">DLOmix embedding of Prosit model on ProteomeTools data</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./tutorials/retentiontime/manual-prosit-rt.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Manual embedding of Bi-LSTM model on ProteomeTools data</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./tutorials/retentiontime/mq-evidence-to-ml.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Preparing a retention time data set for machine learning</span></a>
</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="sidebar-item sidebar-item-section">
<div class="sidebar-item-container">
<a href="./datasets/index.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Datasets</span></a>
<a class="sidebar-item-toggle text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-6" aria-expanded="false" aria-label="Toggle section">
<i class="bi bi-chevron-right ms-2"></i>
</a>
</div>
<ul id="quarto-sidebar-section-6" class="collapse list-unstyled sidebar-section depth1 ">
<li class="sidebar-item sidebar-item-section">
<div class="sidebar-item-container">
<a class="sidebar-item-text sidebar-link text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-7" aria-expanded="false">
<span class="menu-text">Ion mobility</span></a>
<a class="sidebar-item-toggle text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-7" aria-expanded="false" aria-label="Toggle section">
<i class="bi bi-chevron-right ms-2"></i>
</a>
</div>
<ul id="quarto-sidebar-section-7" class="collapse list-unstyled sidebar-section depth2 ">
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./datasets/ionmobility/Meier_TIMS.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Meier et al. TIMS</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./datasets/ionmobility/VanPuyvelde_TWIMS.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Van Puyvelde et al. TWIMS</span></a>
</div>
</li>
</ul>
</li>
<li class="sidebar-item sidebar-item-section">
<div class="sidebar-item-container">
<a class="sidebar-item-text sidebar-link text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-8" aria-expanded="false">
<span class="menu-text">Fragmentation</span></a>
<a class="sidebar-item-toggle text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-8" aria-expanded="false" aria-label="Toggle section">
<i class="bi bi-chevron-right ms-2"></i>
</a>
</div>
<ul id="quarto-sidebar-section-8" class="collapse list-unstyled sidebar-section depth2 ">
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./datasets/fragmentation/nist.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">NIST Peptide libraries</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./datasets/fragmentation/ProteomeTools_FI.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">ProteomeTools</span></a>
</div>
</li>
</ul>
</li>
<li class="sidebar-item sidebar-item-section">
<div class="sidebar-item-container">
<a class="sidebar-item-text sidebar-link text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-9" aria-expanded="false">
<span class="menu-text">Detectability</span></a>
<a class="sidebar-item-toggle text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-9" aria-expanded="false" aria-label="Toggle section">
<i class="bi bi-chevron-right ms-2"></i>
</a>
</div>
<ul id="quarto-sidebar-section-9" class="collapse list-unstyled sidebar-section depth2 ">
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./datasets/detectability/ArabidopsisLightDarkProteome.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Arabidopsis PeptideAtlas Light and Dark Proteome</span></a>
</div>
</li>
</ul>
</li>
<li class="sidebar-item sidebar-item-section">
<div class="sidebar-item-container">
<a class="sidebar-item-text sidebar-link text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-10" aria-expanded="false">
<span class="menu-text">Retention time</span></a>
<a class="sidebar-item-toggle text-start collapsed" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar-section-10" aria-expanded="false" aria-label="Toggle section">
<i class="bi bi-chevron-right ms-2"></i>
</a>
</div>
<ul id="quarto-sidebar-section-10" class="collapse list-unstyled sidebar-section depth2 ">
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./datasets/retentiontime/DLOmix_RT.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">DLOmix</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./datasets/retentiontime/ProteomeTools_RT.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">ProteomeTools</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./datasets/retentiontime/PXD028248_RT.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">PXD028248</span></a>
</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./contributing.html" class="sidebar-item-text sidebar-link active">
<span class="menu-text">Contributing</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./code-of-conduct.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Code of Conduct</span></a>
</div>
</li>
</ul>
</div>
</nav>
<div id="quarto-sidebar-glass" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar,#quarto-sidebar-glass"></div>
<!-- margin-sidebar -->
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar">
<nav id="TOC" role="doc-toc" class="toc-active">
<h2 id="toc-title">On this page</h2>
<ul>
<li><a href="#contributing" id="toc-contributing" class="nav-link active" data-scroll-target="#contributing">Contributing</a>
<ul>
<li><a href="#before-you-begin" id="toc-before-you-begin" class="nav-link" data-scroll-target="#before-you-begin">Before you begin</a></li>
<li><a href="#the-proteomicsml-infrastructure" id="toc-the-proteomicsml-infrastructure" class="nav-link" data-scroll-target="#the-proteomicsml-infrastructure">The ProteomicsML infrastructure</a></li>
<li><a href="#how-to-contribute" id="toc-how-to-contribute" class="nav-link" data-scroll-target="#how-to-contribute">How to contribute</a>
<ul class="collapse">
<li><a href="#development-setup" id="toc-development-setup" class="nav-link" data-scroll-target="#development-setup">Development setup</a></li>
<li><a href="#addingupdating-a-tutorial" id="toc-addingupdating-a-tutorial" class="nav-link" data-scroll-target="#addingupdating-a-tutorial">Adding/updating a tutorial</a></li>
<li><a href="#addingupdating-a-dataset" id="toc-addingupdating-a-dataset" class="nav-link" data-scroll-target="#addingupdating-a-dataset">Adding/updating a dataset</a></li>
<li><a href="#opening-a-pull-request-to-add-your-contributions" id="toc-opening-a-pull-request-to-add-your-contributions" class="nav-link" data-scroll-target="#opening-a-pull-request-to-add-your-contributions">Opening a pull request to add your contributions</a></li>
</ul></li>
<li><a href="#becoming-a-maintainer" id="toc-becoming-a-maintainer" class="nav-link" data-scroll-target="#becoming-a-maintainer">Becoming a maintainer</a></li>
<li><a href="#website-deployment" id="toc-website-deployment" class="nav-link" data-scroll-target="#website-deployment">Website deployment</a></li>
</ul></li>
</ul>
<div class="toc-actions"><div><i class="bi bi-github"></i></div><div class="action-links"><p><a href="https://github.com/ProteomicsML/ProteomicsML/blob/main/CONTRIBUTING.md" class="toc-action">View source</a></p><p><a href="https://github.com/ProteomicsML/ProteomicsML/edit/main/CONTRIBUTING.md" class="toc-action">Edit this page</a></p></div></div></nav>
</div>
<!-- main -->
<main class="content" id="quarto-document-content">
<section id="contributing" class="level1">
<h1>Contributing</h1>
<p>This document describes how to contribute to the <a href="https://github.com/proteomicsml/proteomicsml">ProteomicsML</a> resource by adding new or updating existing tutorials and/or datasets.</p>
<section id="before-you-begin" class="level2">
<h2 class="anchored" data-anchor-id="before-you-begin">Before you begin</h2>
<p>At ProteomicsML, we pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. By interacting with or contributing to ProteomicsML at <a href="https://github.com/ProteomicsML">https://github.com/ProteomicsML</a> or at <a href="https://proteomicsml.org">https://proteomicsml.org</a>, you agree to our Code of Conduct. Violation of our Code of Conduct may ultimately lead to a permanent ban from any sort of public interaction within the community.<br> 🤝 Read the <a href="./code-of-conduct.html">Code of Conduct</a><br></p>
<p>If you have an idea for a new tutorial or dataset, or found a mistake, you are welcome to communicate it with the community by opening a discussion thread in GitHub Discussions or by creating an issue.<br> 💬 Start a <a href="https://github.com/ProteomicsML/ProteomicsML/discussions">discussion thread</a><br> 💡 Open an <a href="https://github.com/ProteomicsML/ProteomicsML/issues/new/choose">issue</a><br></p>
</section>
<section id="the-proteomicsml-infrastructure" class="level2">
<h2 class="anchored" data-anchor-id="the-proteomicsml-infrastructure">The ProteomicsML infrastructure</h2>
<p>ProteomicsML uses the <a href="https://quarto.org/">Quarto</a> system to publish a static website from markdown and Jupyter IPython notebook files. All source files are maintained at <a href="https://github.com/proteomicsml/proteomicsml">ProteomicsML/ProteomicsML</a>. Upon each commit on the main branch (after merging a pull request), the website is rebuilt on GitHub Actions and pushed to the <a href="https://github.com/ProteomicsML/proteomicsml.github.io">ProteomicsML/proteomicsml.github.io</a> repository, where it is hosted with GitHub Pages on the <a href="https://proteomicsml.org">ProteomicsML.org</a> website. See <a href="#website-deployment">Website deployment</a> for the full deployment workflow.</p>
</section>
<section id="how-to-contribute" class="level2">
<h2 class="anchored" data-anchor-id="how-to-contribute">How to contribute</h2>
<section id="development-setup" class="level3">
<h3 class="anchored" data-anchor-id="development-setup">Development setup</h3>
<ol type="1">
<li>Fork <a href="https://github.com/proteomicsml/proteomicsml">ProteomicsML/ProteomicsML</a> on GitHub to make your changes.</li>
<li>Clone your fork of the repository to your local machine.</li>
<li>Install <a href="https://quarto.org/docs/get-started/">Quarto</a> to build the website on your machine.</li>
<li>To preview the website while editing, run: <code>quarto preview . --render html</code></li>
</ol>
<p>Maintainers with write access to the repository can skip the first two steps and make a new local branch instead. Direct commits to the <code>main</code> branch are not allowed.</p>
</section>
<section id="addingupdating-a-tutorial" class="level3">
<h3 class="anchored" data-anchor-id="addingupdating-a-tutorial">Adding/updating a tutorial</h3>
<p>ProteomicsML tutorials are educational Jupyter notebooks that combine fully functional code cells and descriptive text cells. The end result should be a notebook that is easy to comprehend to anyone with a basic understanding of proteomics, programming, and machine learning. When adding or updating a tutorial, please follow these rules and conventions:</p>
<ol type="1">
<li><p>Title, filename, metadata, and subheadings</p>
<ol type="a">
<li><p>Tutorials are grouped by data type: <code>Detectability</code>, <code>Fragmentation</code>, <code>Ion mobility</code>, and <code>Retention time</code>. Place your tutorial notebook in the appropriate directory in the repository. E.g., <code>tutorials/fragmentation</code>. If your tutorial is part of a new data type group, please open a new <a href="https://github.com/ProteomicsML/ProteomicsML/discussions">discussion thread</a> first.</p></li>
<li><p>The filename should be an abbreviated version of the tutorial title, formatted in kebab case (lowercase with <code>-</code> replacing spaces), for instance <code>title-of-tutorial.ipynb</code>.</p></li>
<li><p>The following front matter metadata items are required (see the <a href="https://quarto.org/docs/tools/jupyter-lab.html#yaml-front-matter">Quarto Documentation</a> for more info):</p>
<ul>
<li><code>title</code>: A descriptive sentence-like title</li>
<li><code>authors</code>: All authors that significantly contributed to the tutorial</li>
<li><code>date</code>: Use <code>last-modified</code> to automatically render the correct date</li>
</ul>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>Unfortunately, YAML front matter is not rendered by Google Colab. Instead it is interpreted as plain markdown and the first cell of the notebook might look out of place when loaded into Google Colab. Nevertheless, the front matter results in a clean header on ProteomicsML.org, the primary platform for viewing tutorials.</p>
</div>
</div></li>
<li><p>Quarto will render the title automatically from the metadata. Therefore, only subheadings should be included as markdown, starting at the second heading level (<code>##</code>).</p></li>
<li><p>Add an <code>Open with Colab</code> badge directly after the front matter metadata. The badge should be hyperlinked to open the notebook in Colab directly from GitHub. This can be achieved by replacing <code>https://github.com/</code> with <code>https://colab.research.google.com/github/</code> in the full URL to the file on GitHub. Additionally, in this URL the filename should be prefixed with an underscore (<code>_</code>); see point 2 in <a href="#website-deployment">Website deployment</a> for more info on notebook copies for Colab.</p>
<p>For example:</p>
<div class="sourceCode" id="cb1"><pre class="sourceCode md code-with-copy"><code class="sourceCode markdown"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a><span class="co">[</span><span class="al"></span><span class="co">](https://colab.research.google.com/github/ProteomicsML/ProteomicsML/blob/main/tutorials/fragmentation/_nist-1-parsing-spectral-library.ipynb)</span></span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<p>renders as</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><a href="https://colab.research.google.com/github/ProteomicsML/ProteomicsML/blob/main/tutorials/fragmentation/_nist-1-parsing-spectral-library.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" class="img-fluid figure-img"></a></p>
</figure>
</div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>The URL will not work (or be updated) until the pull request adding or updating the notebook is merged into the main branch.</p>
</div>
</div></li>
</ol></li>
<li><p>Subject and contents</p>
<ol type="a">
<li><p>Each tutorial should clearly show and describe one or more steps in a certain machine learning workflow for proteomics.</p></li>
<li><p>Sufficiently describe each code cell and each step in the workflow.</p></li>
<li><p>Tutorials should ideally be linked to a single ProteomicsML dataset from the same group.</p></li>
<li><p>While multiple tutorials can be added for a single data type, make sure that each tutorial is sufficiently different from the others in terms of methodology and/or datasets used.</p></li>
<li><p>All original publications that describe the methodologies, datasets, or tools that are used in the tutorial should be properly cited following scientific authoring conventions. To add a citation, add a bibtex entry to <code>references.bib</code> and use the Quarto citation tag. For example, <code>[@ProteomicsML2022]</code> renders to: <span class="citation" data-cites="ProteomicsML2022">(<a href="#ref-ProteomicsML2022" role="doc-biblioref">Rehfeldt et al. 2022</a>)</span>. More info can be found in the <a href="https://quarto.org/docs/authoring/footnotes-and-citations.html#bibliography-generation">Quarto documentation</a>.</p>
<div class="callout callout-style-default callout-tip callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Tip
</div>
</div>
<div class="callout-body-container callout-body">
<p>Use <a href="https://www.doi2bib.org/">doi2bib.org</a> to easily get bibtex entries for any given publication.</p>
</div>
</div></li>
</ol></li>
<li><p>Code cells and programming language</p>
<ol type="a">
<li><p>Tutorials should work on all major platforms (Linux, Windows, macOS). An exception to this rule can be made if one or more tools central to the tutorial is not cross-platform.</p></li>
<li><p>Per ProteomicsML convention, tutorials should use the Python programming language. Exceptions may be allowed if the other language is essential to the tutorial or methodology.</p></li>
<li><p>ProteomicsML recommends Google Colab to interactively use tutorial notebooks. Therefore, all code should be backwards compatible with the Python version used by Google Colab. At time of writing, this is Python 3.7.</p></li>
<li><p>Dependencies should ideally be installable with pip. A first code cell can be used to install all requirements using the Jupyter shell prefix <code>!</code>. For instance: <code>! pip install pandas</code>.</p></li>
<li><p>Code should be easy to read. For Python, follow the PEP8 style guide where possible.</p></li>
<li><p>Upon pull request (PR) creation, all expected output cells should be present. When rendering the ProteomicsML website, notebooks are not rerun. Therefore, as a final step before submitting your PR, restart the kernel, run all cells from start to finish, and save the notebook. See point 2 in <a href="#website-deployment">Website deployment</a> for more info on notebook copies for Colab.</p></li>
</ol></li>
</ol>
</section>
<section id="addingupdating-a-dataset" class="level3">
<h3 class="anchored" data-anchor-id="addingupdating-a-dataset">Adding/updating a dataset</h3>
<p>ProteomicsML datasets are community-curated proteomics datasets fit for machine learning. Ideally, each dataset is accompanied by a tutorial. When adding or updating a dataset, please follow these rules and conventions:</p>
<ol type="1">
<li><p>Dataset description and data files:</p>
<ol type="a">
<li><p>Each dataset is represented as a single markdown file describing the dataset.</p></li>
<li><p>The data itself can be added in one of three ways:</p>
<ol type="i">
<li><p>If the dataset itself consists of one or more files, each smaller than 50 MB, they can be added in a subfolder with the same name as the markdown file. These files should be individually gzipped to save space and to prevent line-by-line tracking by Git.</p>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>Gzipped CSV files can very easily be read by Pandas into a DataFrame. Simply use the filename with the <code>.gz</code> suffix in the <code>pandas.read_csv()</code> function and Pandas will automatically unzip the file while reading.</p>
</div>
</div></li>
<li><p>Larger files can be added to the ProteomicsML FTP file server by the project maintainers. Please request this in your pull request.</p></li>
<li><p>Files that are already publicly and persistently stored elsewhere, can be represented by solely the markdown file. In this case, all tutorials using this dataset should start from the file(s) as is and include any required preprocessing steps.[TODO: List supported platforms]</p></li>
</ol></li>
</ol></li>
<li><p>Title, filename, and metadata:</p>
<ol type="a">
<li><p>Datasets are grouped by data type: <code>Fragmentation</code>, <code>Ion mobility</code>, <code>Detectability</code>, or <code>Retention time</code>. Place your dataset and markdown description in the appropriate directory in the repository. E.g., <code>tutorials/fragmentation</code>. If your dataset is part of a new data type group, please open a new <a href="https://github.com/ProteomicsML/ProteomicsML/discussions">discussion thread</a> first.</p></li>
<li><p>The filename / directory name should be an abbreviated version of the dataset title, formatted in kebab case (lowercase with <code>-</code> replacing spaces), for instance <code>title-of-dataset.md</code> / <code>title-of-dataset/</code>.</p></li>
<li><p>The following front matter metadata items are required (see the <a href="https://quarto.org/docs/tools/jupyter-lab.html#yaml-front-matter">Quarto Documentation</a> for more info):</p>
<ul>
<li><code>title</code>: A descriptive sentence-like title</li>
<li><code>date</code>: Use <code>last-modified</code> to automatically render the correct date</li>
</ul></li>
<li><p>Quarto will render the title automatically from the metadata. Therefore, only subheadings should be included as markdown, starting at the second heading level (<code>##</code>).</p></li>
</ol></li>
<li><p>Dataset description</p>
<p>Download the readme template, fill out the details, and add download links<br></p>
<ul>
<li><a href="https://github.com/ProteomicsML/ProteomicsML/tree/main/datasets/_templates/retention-time-template.md?raw=true">Retention time</a><br></li>
<li><a href="https://github.com/ProteomicsML/tree/main/ProteomicsML/datasets/_templates/fragmentation-intensity-template.md?raw=true">Fragmentation Intensity</a><br></li>
<li><a href="https://github.com/ProteomicsML/ProteomicsML/tree/main/datasets/_templates/ion-mobility-template.md?raw=true">Ion Mobility</a><br></li>
<li><a href="https://github.com/ProteomicsML/ProteomicsML/tree/main/datasets/_templates/protein-detectability-template.md?raw=true">Detectability</a><br></li>
</ul></li>
</ol>
</section>
<section id="opening-a-pull-request-to-add-your-contributions" class="level3">
<h3 class="anchored" data-anchor-id="opening-a-pull-request-to-add-your-contributions">Opening a pull request to add your contributions</h3>
<ul>
<li>Commit and push your changes to your <a href="https://help.github.com/articles/pushing-to-a-remote/">fork</a>.</li>
<li>Open a <a href="https://help.github.com/articles/creating-a-pull-request/">pull request</a> with these changes. Choose the pull request template that fits your changes best.</li>
<li>The pull request should pass all the continuous integration tests which are automatically run by <a href="https://github.com/proteomicsml/proteomicsml/actions">GitHub Actions</a>.</li>
<li>All pull requests should be approved by at least two maintainers before they can be merged.</li>
</ul>
</section>
</section>
<section id="becoming-a-maintainer" class="level2">
<h2 class="anchored" data-anchor-id="becoming-a-maintainer">Becoming a maintainer</h2>
<p>If you would like to become a maintainer and review pull requests by others, please start a <a href="https://github.com/ProteomicsML/ProteomicsML/discussions">discussion thread</a> to let us know!</p>
</section>
<section id="website-deployment" class="level2">
<h2 class="anchored" data-anchor-id="website-deployment">Website deployment</h2>
<p>When a pull request has been opened, the following GitHub Action is triggered:<br> <strong>Test website rendering</strong>: The full website is rendered to check that no errors occur. This action should already have been run successfully for the pull request that implemented the changes. Nevertheless, merging could also introduce new issues.</p>
<p>When a pull request has been marked “ready for review”, the following GitHub Action is triggered:<br> <strong>Update notebook copies</strong>: A script is run to make copies of all tutorial notebooks with all output removed. The filenames of these copies are prepended with an underscore and should be used to open the notebooks interactively, e.g., in Google Colab.<br> This script adds a commit to the pull request branch, which can only be accepted once this action has run successfully.</p>
<p>When a pull request is merged with the <code>main</code> branch, the following GitHub Action is triggered:<br> <strong>Publish website</strong>: Quarto is used to render the static website, which is then force-pushed to the <a href="https://github.com/ProteomicsML/proteomicsml.github.io">ProteomicsML/proteomicsml.github.io</a> repository. This repository is served on <a href="https://www.proteomicsml.org/">proteomicsml.org</a> through GitHub Pages.</p>
</section>
</section>
<div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" role="doc-bibliography"><h2 class="anchored quarto-appendix-heading">References</h2><div id="refs" class="references csl-bib-body hanging-indent" role="list">
<div id="ref-ProteomicsML2022" class="csl-entry" role="listitem">
Rehfeldt, Tobias Greisager, Ralf Gabriels, Robbin Bouwmeester, Siegfried Gessulat, Benjamin Neely, Magnus Palmblad, Yasset Perez-Riverol, Tobias Schmidt, Juan Antonio Vizcaı́no, and Eric W. Deutsch. 2022. <span>“<span>ProteomicsML</span>: An Online Platform for Community-Curated Datasets and Tutorials for Machine Learning in Proteomics,”</span> October. <a href="https://doi.org/10.26434/chemrxiv-2022-2s6kx">https://doi.org/10.26434/chemrxiv-2022-2s6kx</a>.
</div>
</div></section></div></main> <!-- /main -->
<script id="quarto-html-after-body" type="application/javascript">
window.document.addEventListener("DOMContentLoaded", function (event) {
const toggleBodyColorMode = (bsSheetEl) => {
const mode = bsSheetEl.getAttribute("data-mode");
const bodyEl = window.document.querySelector("body");
if (mode === "dark") {
bodyEl.classList.add("quarto-dark");
bodyEl.classList.remove("quarto-light");
} else {
bodyEl.classList.add("quarto-light");
bodyEl.classList.remove("quarto-dark");
}
}
const toggleBodyColorPrimary = () => {
const bsSheetEl = window.document.querySelector("link#quarto-bootstrap");
if (bsSheetEl) {
toggleBodyColorMode(bsSheetEl);
}
}
toggleBodyColorPrimary();
const icon = "";
const anchorJS = new window.AnchorJS();
anchorJS.options = {
placement: 'right',
icon: icon
};
anchorJS.add('.anchored');
const isCodeAnnotation = (el) => {
for (const clz of el.classList) {
if (clz.startsWith('code-annotation-')) {
return true;
}
}
return false;
}
const clipboard = new window.ClipboardJS('.code-copy-button', {
text: function(trigger) {
const codeEl = trigger.previousElementSibling.cloneNode(true);
for (const childEl of codeEl.children) {
if (isCodeAnnotation(childEl)) {
childEl.remove();
}
}
return codeEl.innerText;
}
});
clipboard.on('success', function(e) {
// button target
const button = e.trigger;
// don't keep focus
button.blur();
// flash "checked"
button.classList.add('code-copy-button-checked');
var currentTitle = button.getAttribute("title");
button.setAttribute("title", "Copied!");
let tooltip;
if (window.bootstrap) {
button.setAttribute("data-bs-toggle", "tooltip");
button.setAttribute("data-bs-placement", "left");
button.setAttribute("data-bs-title", "Copied!");
tooltip = new bootstrap.Tooltip(button,
{ trigger: "manual",
customClass: "code-copy-button-tooltip",
offset: [0, -8]});
tooltip.show();
}
setTimeout(function() {
if (tooltip) {
tooltip.hide();
button.removeAttribute("data-bs-title");
button.removeAttribute("data-bs-toggle");
button.removeAttribute("data-bs-placement");
}
button.setAttribute("title", currentTitle);
button.classList.remove('code-copy-button-checked');
}, 1000);
// clear code selection
e.clearSelection();
});
function tippyHover(el, contentFn) {
const config = {
allowHTML: true,
content: contentFn,
maxWidth: 500,
delay: 100,
arrow: false,
appendTo: function(el) {
return el.parentElement;
},
interactive: true,
interactiveBorder: 10,
theme: 'quarto',
placement: 'bottom-start'
};
window.tippy(el, config);
}
const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]');
for (var i=0; i<noterefs.length; i++) {
const ref = noterefs[i];
tippyHover(ref, function() {
// use id or data attribute instead here
let href = ref.getAttribute('data-footnote-href') || ref.getAttribute('href');
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
return note.innerHTML;
});
}
let selectedAnnoteEl;
const selectorForAnnotation = ( cell, annotation) => {
let cellAttr = 'data-code-cell="' + cell + '"';
let lineAttr = 'data-code-annotation="' + annotation + '"';
const selector = 'span[' + cellAttr + '][' + lineAttr + ']';
return selector;
}
const selectCodeLines = (annoteEl) => {
const doc = window.document;
const targetCell = annoteEl.getAttribute("data-target-cell");
const targetAnnotation = annoteEl.getAttribute("data-target-annotation");
const annoteSpan = window.document.querySelector(selectorForAnnotation(targetCell, targetAnnotation));
const lines = annoteSpan.getAttribute("data-code-lines").split(",");
const lineIds = lines.map((line) => {
return targetCell + "-" + line;
})
let top = null;
let height = null;
let parent = null;
if (lineIds.length > 0) {
//compute the position of the single el (top and bottom and make a div)
const el = window.document.getElementById(lineIds[0]);
top = el.offsetTop;
height = el.offsetHeight;
parent = el.parentElement.parentElement;
if (lineIds.length > 1) {
const lastEl = window.document.getElementById(lineIds[lineIds.length - 1]);
const bottom = lastEl.offsetTop + lastEl.offsetHeight;
height = bottom - top;
}
if (top !== null && height !== null && parent !== null) {
// cook up a div (if necessary) and position it
let div = window.document.getElementById("code-annotation-line-highlight");
if (div === null) {
div = window.document.createElement("div");
div.setAttribute("id", "code-annotation-line-highlight");
div.style.position = 'absolute';
parent.appendChild(div);
}
div.style.top = top - 2 + "px";
div.style.height = height + 4 + "px";
let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter");
if (gutterDiv === null) {
gutterDiv = window.document.createElement("div");
gutterDiv.setAttribute("id", "code-annotation-line-highlight-gutter");
gutterDiv.style.position = 'absolute';
const codeCell = window.document.getElementById(targetCell);
const gutter = codeCell.querySelector('.code-annotation-gutter');
gutter.appendChild(gutterDiv);
}
gutterDiv.style.top = top - 2 + "px";
gutterDiv.style.height = height + 4 + "px";
}
selectedAnnoteEl = annoteEl;
}
};
const unselectCodeLines = () => {
const elementsIds = ["code-annotation-line-highlight", "code-annotation-line-highlight-gutter"];
elementsIds.forEach((elId) => {
const div = window.document.getElementById(elId);
if (div) {
div.remove();
}
});
selectedAnnoteEl = undefined;
};
// Attach click handler to the DT
const annoteDls = window.document.querySelectorAll('dt[data-target-cell]');
for (const annoteDlNode of annoteDls) {
annoteDlNode.addEventListener('click', (event) => {
const clickedEl = event.target;
if (clickedEl !== selectedAnnoteEl) {
unselectCodeLines();
const activeEl = window.document.querySelector('dt[data-target-cell].code-annotation-active');
if (activeEl) {
activeEl.classList.remove('code-annotation-active');
}
selectCodeLines(clickedEl);
clickedEl.classList.add('code-annotation-active');
} else {
// Unselect the line
unselectCodeLines();
clickedEl.classList.remove('code-annotation-active');
}
});
}
const findCites = (el) => {
const parentEl = el.parentElement;
if (parentEl) {
const cites = parentEl.dataset.cites;
if (cites) {
return {
el,
cites: cites.split(' ')
};
} else {
return findCites(el.parentElement)
}
} else {
return undefined;
}
};
var bibliorefs = window.document.querySelectorAll('a[role="doc-biblioref"]');
for (var i=0; i<bibliorefs.length; i++) {
const ref = bibliorefs[i];
const citeInfo = findCites(ref);
if (citeInfo) {
tippyHover(citeInfo.el, function() {
var popup = window.document.createElement('div');
citeInfo.cites.forEach(function(cite) {
var citeDiv = window.document.createElement('div');
citeDiv.classList.add('hanging-indent');
citeDiv.classList.add('csl-entry');
var biblioDiv = window.document.getElementById('ref-' + cite);
if (biblioDiv) {
citeDiv.innerHTML = biblioDiv.innerHTML;
}