BCL6_tmp.html
... ...
@@ -1,517 +0,0 @@
1
-<!DOCTYPE html>
2
-<html>
3
-<head>
4
-<title>BCL6.md</title>
5
-<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
6
-
7
-<style>
8
-/* https://github.com/microsoft/vscode/blob/master/extensions/markdown-language-features/media/markdown.css */
9
-/*---------------------------------------------------------------------------------------------
10
- * Copyright (c) Microsoft Corporation. All rights reserved.
11
- * Licensed under the MIT License. See License.txt in the project root for license information.
12
- *--------------------------------------------------------------------------------------------*/
13
-
14
-body {
15
- font-family: var(--vscode-markdown-font-family, -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "Ubuntu", "Droid Sans", sans-serif);
16
- font-size: var(--vscode-markdown-font-size, 14px);
17
- padding: 0 26px;
18
- line-height: var(--vscode-markdown-line-height, 22px);
19
- word-wrap: break-word;
20
-}
21
-
22
-#code-csp-warning {
23
- position: fixed;
24
- top: 0;
25
- right: 0;
26
- color: white;
27
- margin: 16px;
28
- text-align: center;
29
- font-size: 12px;
30
- font-family: sans-serif;
31
- background-color:#444444;
32
- cursor: pointer;
33
- padding: 6px;
34
- box-shadow: 1px 1px 1px rgba(0,0,0,.25);
35
-}
36
-
37
-#code-csp-warning:hover {
38
- text-decoration: none;
39
- background-color:#007acc;
40
- box-shadow: 2px 2px 2px rgba(0,0,0,.25);
41
-}
42
-
43
-body.scrollBeyondLastLine {
44
- margin-bottom: calc(100vh - 22px);
45
-}
46
-
47
-body.showEditorSelection .code-line {
48
- position: relative;
49
-}
50
-
51
-body.showEditorSelection .code-active-line:before,
52
-body.showEditorSelection .code-line:hover:before {
53
- content: "";
54
- display: block;
55
- position: absolute;
56
- top: 0;
57
- left: -12px;
58
- height: 100%;
59
-}
60
-
61
-body.showEditorSelection li.code-active-line:before,
62
-body.showEditorSelection li.code-line:hover:before {
63
- left: -30px;
64
-}
65
-
66
-.vscode-light.showEditorSelection .code-active-line:before {
67
- border-left: 3px solid rgba(0, 0, 0, 0.15);
68
-}
69
-
70
-.vscode-light.showEditorSelection .code-line:hover:before {
71
- border-left: 3px solid rgba(0, 0, 0, 0.40);
72
-}
73
-
74
-.vscode-light.showEditorSelection .code-line .code-line:hover:before {
75
- border-left: none;
76
-}
77
-
78
-.vscode-dark.showEditorSelection .code-active-line:before {
79
- border-left: 3px solid rgba(255, 255, 255, 0.4);
80
-}
81
-
82
-.vscode-dark.showEditorSelection .code-line:hover:before {
83
- border-left: 3px solid rgba(255, 255, 255, 0.60);
84
-}
85
-
86
-.vscode-dark.showEditorSelection .code-line .code-line:hover:before {
87
- border-left: none;
88
-}
89
-
90
-.vscode-high-contrast.showEditorSelection .code-active-line:before {
91
- border-left: 3px solid rgba(255, 160, 0, 0.7);
92
-}
93
-
94
-.vscode-high-contrast.showEditorSelection .code-line:hover:before {
95
- border-left: 3px solid rgba(255, 160, 0, 1);
96
-}
97
-
98
-.vscode-high-contrast.showEditorSelection .code-line .code-line:hover:before {
99
- border-left: none;
100
-}
101
-
102
-img {
103
- max-width: 100%;
104
- max-height: 100%;
105
-}
106
-
107
-a {
108
- text-decoration: none;
109
-}
110
-
111
-a:hover {
112
- text-decoration: underline;
113
-}
114
-
115
-a:focus,
116
-input:focus,
117
-select:focus,
118
-textarea:focus {
119
- outline: 1px solid -webkit-focus-ring-color;
120
- outline-offset: -1px;
121
-}
122
-
123
-hr {
124
- border: 0;
125
- height: 2px;
126
- border-bottom: 2px solid;
127
-}
128
-
129
-h1 {
130
- padding-bottom: 0.3em;
131
- line-height: 1.2;
132
- border-bottom-width: 1px;
133
- border-bottom-style: solid;
134
-}
135
-
136
-h1, h2, h3 {
137
- font-weight: normal;
138
-}
139
-
140
-table {
141
- border-collapse: collapse;
142
-}
143
-
144
-table > thead > tr > th {
145
- text-align: left;
146
- border-bottom: 1px solid;
147
-}
148
-
149
-table > thead > tr > th,
150
-table > thead > tr > td,
151
-table > tbody > tr > th,
152
-table > tbody > tr > td {
153
- padding: 5px 10px;
154
-}
155
-
156
-table > tbody > tr + tr > td {
157
- border-top: 1px solid;
158
-}
159
-
160
-blockquote {
161
- margin: 0 7px 0 5px;
162
- padding: 0 16px 0 10px;
163
- border-left-width: 5px;
164
- border-left-style: solid;
165
-}
166
-
167
-code {
168
- font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
169
- font-size: 1em;
170
- line-height: 1.357em;
171
-}
172
-
173
-body.wordWrap pre {
174
- white-space: pre-wrap;
175
-}
176
-
177
-pre:not(.hljs),
178
-pre.hljs code > div {
179
- padding: 16px;
180
- border-radius: 3px;
181
- overflow: auto;
182
-}
183
-
184
-pre code {
185
- color: var(--vscode-editor-foreground);
186
- tab-size: 4;
187
-}
188
-
189
-/** Theming */
190
-
191
-.vscode-light pre {
192
- background-color: rgba(220, 220, 220, 0.4);
193
-}
194
-
195
-.vscode-dark pre {
196
- background-color: rgba(10, 10, 10, 0.4);
197
-}
198
-
199
-.vscode-high-contrast pre {
200
- background-color: rgb(0, 0, 0);
201
-}
202
-
203
-.vscode-high-contrast h1 {
204
- border-color: rgb(0, 0, 0);
205
-}
206
-
207
-.vscode-light table > thead > tr > th {
208
- border-color: rgba(0, 0, 0, 0.69);
209
-}
210
-
211
-.vscode-dark table > thead > tr > th {
212
- border-color: rgba(255, 255, 255, 0.69);
213
-}
214
-
215
-.vscode-light h1,
216
-.vscode-light hr,
217
-.vscode-light table > tbody > tr + tr > td {
218
- border-color: rgba(0, 0, 0, 0.18);
219
-}
220
-
221
-.vscode-dark h1,
222
-.vscode-dark hr,
223
-.vscode-dark table > tbody > tr + tr > td {
224
- border-color: rgba(255, 255, 255, 0.18);
225
-}
226
-
227
-</style>
228
-
229
-<style>
230
-/* Tomorrow Theme */
231
-/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
232
-/* Original theme - https://github.com/chriskempson/tomorrow-theme */
233
-
234
-/* Tomorrow Comment */
235
-.hljs-comment,
236
-.hljs-quote {
237
- color: #8e908c;
238
-}
239
-
240
-/* Tomorrow Red */
241
-.hljs-variable,
242
-.hljs-template-variable,
243
-.hljs-tag,
244
-.hljs-name,
245
-.hljs-selector-id,
246
-.hljs-selector-class,
247
-.hljs-regexp,
248
-.hljs-deletion {
249
- color: #c82829;
250
-}
251
-
252
-/* Tomorrow Orange */
253
-.hljs-number,
254
-.hljs-built_in,
255
-.hljs-builtin-name,
256
-.hljs-literal,
257
-.hljs-type,
258
-.hljs-params,
259
-.hljs-meta,
260
-.hljs-link {
261
- color: #f5871f;
262
-}
263
-
264
-/* Tomorrow Yellow */
265
-.hljs-attribute {
266
- color: #eab700;
267
-}
268
-
269
-/* Tomorrow Green */
270
-.hljs-string,
271
-.hljs-symbol,
272
-.hljs-bullet,
273
-.hljs-addition {
274
- color: #718c00;
275
-}
276
-
277
-/* Tomorrow Blue */
278
-.hljs-title,
279
-.hljs-section {
280
- color: #4271ae;
281
-}
282
-
283
-/* Tomorrow Purple */
284
-.hljs-keyword,
285
-.hljs-selector-tag {
286
- color: #8959a8;
287
-}
288
-
289
-.hljs {
290
- display: block;
291
- overflow-x: auto;
292
- color: #4d4d4c;
293
- padding: 0.5em;
294
-}
295
-
296
-.hljs-emphasis {
297
- font-style: italic;
298
-}
299
-
300
-.hljs-strong {
301
- font-weight: bold;
302
-}
303
-</style>
304
-
305
-<style>
306
-/*
307
- * Markdown PDF CSS
308
- */
309
-
310
- body {
311
- font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "Ubuntu", "Droid Sans", sans-serif, "Meiryo";
312
- padding: 0 12px;
313
-}
314
-
315
-pre {
316
- background-color: #f8f8f8;
317
- border: 1px solid #cccccc;
318
- border-radius: 3px;
319
- overflow-x: auto;
320
- white-space: pre-wrap;
321
- overflow-wrap: break-word;
322
-}
323
-
324
-pre:not(.hljs) {
325
- padding: 23px;
326
- line-height: 19px;
327
-}
328
-
329
-blockquote {
330
- background: rgba(127, 127, 127, 0.1);
331
- border-color: rgba(0, 122, 204, 0.5);
332
-}
333
-
334
-.emoji {
335
- height: 1.4em;
336
-}
337
-
338
-code {
339
- font-size: 14px;
340
- line-height: 19px;
341
-}
342
-
343
-/* for inline code */
344
-:not(pre):not(.hljs) > code {
345
- color: #C9AE75; /* Change the old color so it seems less like an error */
346
- font-size: inherit;
347
-}
348
-
349
-/* Page Break : use <div class="page"/> to insert page break
350
--------------------------------------------------------- */
351
-.page {
352
- page-break-after: always;
353
-}
354
-
355
-</style>
356
-
357
-<script src="https://unpkg.com/mermaid/dist/mermaid.min.js"></script>
358
-</head>
359
-<body>
360
- <script>
361
- mermaid.initialize({
362
- startOnLoad: true,
363
- theme: document.body.classList.contains('vscode-dark') || document.body.classList.contains('vscode-high-contrast')
364
- ? 'dark'
365
- : 'default'
366
- });
367
- </script>
368
-<p>[[<em>TOC</em>]]</p>
369
-<h2 id="overview">Overview</h2>
370
-<p>BCL6 is one of <a href="https://github.com/morinlab/LLMPP/wiki/ashm">a number of genes</a> affected by aberrant somatic hypermutation in B-cell lymphomas, which complicates the interpretation of mutations at this locus.
371
-Although common, particularly in DLBCL, the function of many of these mutations remains unclear but some have been shown to affect the regulation of BCL6 expression. The role of BCL6 missense mutations, seen over 9% of patients remains unclear.</p>
372
-<h2 id="relevance-tier-by-entity">Relevance tier by entity</h2>
373
-<p>[[include:table1_BCL6]]
374
-|</p>
375
-<h2 id="mutation-incidence-in-large-patient-cohorts-gambl-reanalysis">Mutation incidence in large patient cohorts (GAMBL reanalysis)</h2>
376
-<p>[[include:DLBCL_BCL6.md]]
377
-[[include:FL_BCL6.md]]
378
-[[include:BL_BCL6.md]]</p>
379
-<h2 id="mutation-pattern-and-selective-pressure-estimates">Mutation pattern and selective pressure estimates</h2>
380
-<p>[[include:dnds_BCL6.md]]</p>
381
-<h2 id="ashm-regions">aSHM regions</h2>
382
-<table>
383
-<thead>
384
-<tr>
385
-<th style="text-align:center">chr_name</th>
386
-<th style="text-align:center">hg19_start</th>
387
-<th style="text-align:center">hg19_end</th>
388
-<th style="text-align:center">region</th>
389
-<th style="text-align:center">regulatory_comment</th>
390
-</tr>
391
-</thead>
392
-<tbody>
393
-<tr>
394
-<td style="text-align:center">chr3</td>
395
-<td style="text-align:center">187458526</td>
396
-<td style="text-align:center">187464632</td>
397
-<td style="text-align:center"><a href="https://genome.ucsc.edu/s/rdmorin/GAMBL%20hg19?position=chr3%3A187458526%2D187464632">TSS</a></td>
398
-<td style="text-align:center">NA</td>
399
-</tr>
400
-<tr>
401
-<td style="text-align:center">chr3</td>
402
-<td style="text-align:center">187615533</td>
403
-<td style="text-align:center">187625659</td>
404
-<td style="text-align:center"><a href="https://genome.ucsc.edu/s/rdmorin/GAMBL%20hg19?position=chr3%3A187615533%2D187625659">Intergenic-1</a></td>
405
-<td style="text-align:center">NA</td>
406
-</tr>
407
-<tr>
408
-<td style="text-align:center">chr3</td>
409
-<td style="text-align:center">187625659</td>
410
-<td style="text-align:center">187638101</td>
411
-<td style="text-align:center"><a href="https://genome.ucsc.edu/s/rdmorin/GAMBL%20hg19?position=chr3%3A187625659%2D187638101">Intergenic-2</a></td>
412
-<td style="text-align:center">NA</td>
413
-</tr>
414
-<tr>
415
-<td style="text-align:center">chr3</td>
416
-<td style="text-align:center">187657518</td>
417
-<td style="text-align:center">187665996</td>
418
-<td style="text-align:center"><a href="https://genome.ucsc.edu/s/rdmorin/GAMBL%20hg19?position=chr3%3A187657518%2D187665996">Intergenic-3</a></td>
419
-<td style="text-align:center">NA</td>
420
-</tr>
421
-<tr>
422
-<td style="text-align:center">chr3</td>
423
-<td style="text-align:center">187675741</td>
424
-<td style="text-align:center">187690717</td>
425
-<td style="text-align:center"><a href="https://genome.ucsc.edu/s/rdmorin/GAMBL%20hg19?position=chr3%3A187675741%2D187690717">Intergenic-4</a></td>
426
-<td style="text-align:center">NA</td>
427
-</tr>
428
-<tr>
429
-<td style="text-align:center">chr3</td>
430
-<td style="text-align:center">187690717</td>
431
-<td style="text-align:center">187705000</td>
432
-<td style="text-align:center"><a href="https://genome.ucsc.edu/s/rdmorin/GAMBL%20hg19?position=chr3%3A187690717%2D187705000">Intergenic-5</a></td>
433
-<td style="text-align:center">NA</td>
434
-</tr>
435
-</tbody>
436
-</table>
437
-<h2 id="bcl6-hotspots">BCL6 Hotspots</h2>
438
-<table>
439
-<thead>
440
-<tr>
441
-<th style="text-align:center">Chromosome</th>
442
-<th style="text-align:center">Coordinate (hg19)</th>
443
-<th style="text-align:center">ref&gt;alt</th>
444
-<th style="text-align:center">HGVSp</th>
445
-</tr>
446
-</thead>
447
-<tbody>
448
-<tr>
449
-<td style="text-align:center">chr3</td>
450
-<td style="text-align:center">187443373</td>
451
-<td style="text-align:center">G&gt;A</td>
452
-<td style="text-align:center">R585W</td>
453
-</tr>
454
-<tr>
455
-<td style="text-align:center">chr3</td>
456
-<td style="text-align:center">187443370</td>
457
-<td style="text-align:center">G&gt;A</td>
458
-<td style="text-align:center">P586S</td>
459
-</tr>
460
-<tr>
461
-<td style="text-align:center">chr3</td>
462
-<td style="text-align:center">187443369</td>
463
-<td style="text-align:center">G&gt;A</td>
464
-<td style="text-align:center">P586L</td>
465
-</tr>
466
-<tr>
467
-<td style="text-align:center">chr3</td>
468
-<td style="text-align:center">187443367</td>
469
-<td style="text-align:center">C&gt;T</td>
470
-<td style="text-align:center">A587T</td>
471
-</tr>
472
-<tr>
473
-<td style="text-align:center">chr3</td>
474
-<td style="text-align:center">187443366</td>
475
-<td style="text-align:center">G&gt;T</td>
476
-<td style="text-align:center">A587D</td>
477
-</tr>
478
-<tr>
479
-<td style="text-align:center">chr3</td>
480
-<td style="text-align:center">187443366</td>
481
-<td style="text-align:center">G&gt;C</td>
482
-<td style="text-align:center">A587G</td>
483
-</tr>
484
-<tr>
485
-<td style="text-align:center">chr3</td>
486
-<td style="text-align:center">187443345</td>
487
-<td style="text-align:center">C&gt;T</td>
488
-<td style="text-align:center">R594Q</td>
489
-</tr>
490
-<tr>
491
-<td style="text-align:center">chr3</td>
492
-<td style="text-align:center">187443342</td>
493
-<td style="text-align:center">A&gt;T</td>
494
-<td style="text-align:center">I595N</td>
495
-</tr>
496
-</tbody>
497
-</table>
498
-<p>[[include:browser_BCL6.md]]</p>
499
-<h2 id="expression">Expression</h2>
500
-<p><img src="file:///Users/rmorin/git/LLMPP.wiki/images/gene_expression/BCL6_by_pathology.svg" alt=""></p>
501
-<!-- ORIGIN: 21796119 -->
502
-<!-- BL: loveGeneticLandscapeMutations2012 -->
503
-<!-- DLBCL: morinFrequentMutationHistonemodifying2011 -->
504
-<h2 id="representative-mutations">Representative Mutations</h2>
505
-<h3 id="bl">BL</h3>
506
-<p><img src="file:///Users/rmorin/git/LLMPP.wiki/primary/Love_BCL6.svg" alt=""></p>
507
-<p><strong>Rating</strong>
508
-★ ★ ★ ★ ☆</p>
509
-<h2 id="all-mutations">All Mutations</h2>
510
-<h3 id="bl">BL</h3>
511
-<p><a href="https://www.bcgsc.ca/downloads/morinlab/GAMBL/Love/1090_reports.html">1090</a>
512
-<a href="https://www.bcgsc.ca/downloads/morinlab/GAMBL/Love/747_reports.html">747</a></p>
513
-<p>[[include:mermaid_BCL6.md]]</p>
514
-<h2 id="references">References</h2>
515
-
516
-</body>
517
-</html>
DLBCL_sankey.md
... ...
@@ -1,71 +0,0 @@
1
-```mermaid
2
----
3
-config:
4
- sankey:
5
- showValues: false
6
- linkColor: target
7
- width: 800
8
- height: 1000
9
- nodeAlignment: right
10
----
11
-sankey-beta
12
-Albuquerque 2017, DLBCL Tier 1, 3
13
-Morin 2016, DLBCL Tier 1, 2
14
-Schmitz 2018, DLBCL Tier 1, 7
15
-Schmitz 2018, DLBCL Tier 2, 9
16
-Pasqualucci 2001, DLBCL Tier 1, 2
17
-Pasqualucci 2001, DLBCL Tier 2, 2
18
-Pasqualucci 2011, DLBCL Tier 1, 3
19
-Pasqualucci 2011, DLBCL Tier 2, 4
20
-Chapuy 2018, DLBCL Tier 1, 2
21
-Chapuy 2018, DLBCL Tier 2, 17
22
-Zhang 2013, DLBCL Tier 1, 11
23
-Zhang 2013, DLBCL Tier 2, 8
24
-Pasqualucci 2011, DLBCL Tier 1, 2
25
-Lohr 2012, DLBCL Tier 1, 3
26
-Lohr 2012, DLBCL Tier 2, 1
27
-Pararajalingam 2020, DLBCL Tier 2, 2
28
-Hubschmann 2021, DLBCL Tier 1, 3
29
-Hubschmann 2021, DLBCL Tier 2, 20
30
-Mareschal 2016, DLBCL Tier 1, 2
31
-Morin 2011, DLBCL Tier 1, 24
32
-Morin 2011, DLBCL Tier 2, 1
33
-Reddy 2017, DLBCL Tier 1, 7
34
-Reddy 2017, DLBCL Tier 2, 53
35
-Morin 2013, DLBCL Tier 1, 11
36
-Morin 2013, DLBCL Tier 2, 29
37
-Arthur 2018, DLBCL Tier 1, 8
38
-Arthur 2018, DLBCL Tier 2, 12
39
-DLBCL, exome, 2
40
-exome, Mareschal 2016, 2
41
-DLBCL, WGS, 23
42
-WGS, Hubschmann 2021, 23
43
-DLBCL, WGS/exome, 2
44
-WGS/exome, Pararajalingam 2020, 2
45
-DLBCL, exome, 4
46
-exome, Lohr 2012, 4
47
-DLBCL, exome, 19
48
-exome, Zhang 2013, 19
49
-DLBCL, exome, 2
50
-exome, Pasqualucci 2011, 2
51
-DLBCL, RNA-seq/WGS, 25
52
-RNA-seq/WGS, Morin 2011, 25
53
-DLBCL, exome, 60
54
-exome, Reddy 2017, 60
55
-DLBCL, WGS, 20
56
-WGS, Arthur 2018, 20
57
-DLBCL, WGS, 40
58
-WGS, Morin 2013, 40
59
-DLBCL, exome, 2
60
-exome, Morin 2016, 2
61
-DLBCL, exome, 3
62
-exome, Albuquerque 2017, 3
63
-DLBCL, exome, 16
64
-exome, Schmitz 2018, 16
65
-DLBCL, Sanger, 4
66
-Sanger, Pasqualucci 2001, 4
67
-DLBCL, exome, 7
68
-exome, Pasqualucci 2011, 7
69
-DLBCL, exome, 19
70
-exome, Chapuy 2018, 19
71
-```
FL_genes.md
... ...
@@ -9,7 +9,7 @@ nocite: |
9 9
10 10
## Origins of FL genes
11 11
12
-![](FL_sankey-1.svg)
12
+![](images/FL_sankey-1.svg)
13 13
14 14
15 15
## Tier 1 FL genes
FL_sankey-1.svg
... ...
@@ -1 +0,0 @@
1
-<svg aria-roledescription="sankey" role="graphics-document document" viewBox="0 0 800 1000" height="1000" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" width="800" id="my-svg" style="background-color: white;"><style>#my-svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:33px;fill:#333;}#my-svg .error-icon{fill:hsl(220.5882352941, 100%, 98.3333333333%);}#my-svg .error-text{fill:rgb(8.5000000002, 5.7500000001, 0);stroke:rgb(8.5000000002, 5.7500000001, 0);}#my-svg .edge-thickness-normal{stroke-width:2px;}#my-svg .edge-thickness-thick{stroke-width:3.5px;}#my-svg .edge-pattern-solid{stroke-dasharray:0;}#my-svg .edge-pattern-dashed{stroke-dasharray:3;}#my-svg .edge-pattern-dotted{stroke-dasharray:2;}#my-svg .marker{fill:#0b0b0b;stroke:#0b0b0b;}#my-svg .marker.cross{stroke:#0b0b0b;}#my-svg svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:33px;}#my-svg :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}</style><g/><g class="nodes"><g y="1.0348369659938543" x="0" transform="translate(0,1.0348369659938543)" id="node-1" class="node"><rect fill="#4e79a7" width="10" height="207.05128205128204"/></g><g y="1.0387138078930784" x="263.3333333333333" transform="translate(263.3333333333333,1.0387138078930784)" id="node-2" class="node"><rect fill="#f28e2c" width="10" height="207.05128205128207"/></g><g y="0" x="526.6666666666666" transform="translate(526.6666666666666,0)" id="node-3" class="node"><rect fill="#e15759" width="10" height="182.69230769230768"/></g><g y="0" x="790" transform="translate(790,0)" id="node-4" class="node"><rect fill="#76b7b2" width="10" height="462.82051282051276"/></g><g y="472.82051282051276" x="790" transform="translate(790,472.82051282051276)" id="node-5" class="node"><rect fill="#59a14f" width="10" height="487.179487179487"/></g><g y="192.69230769230768" x="526.6666666666666" transform="translate(526.6666666666666,192.69230769230768)" id="node-6" class="node"><rect fill="#edc949" width="10" height="24.358974358974365"/></g><g y="768.4282696362939" x="0" transform="translate(0,768.4282696362939)" id="node-7" class="node"><rect fill="#af7aa1" width="10" height="231.41025641025635"/></g><g y="758.5897435897436" x="263.3333333333333" transform="translate(263.3333333333333,758.5897435897436)" id="node-8" class="node"><rect fill="#ff9da7" width="10" height="24.358974358974365"/></g><g y="758.5897435897436" x="526.6666666666666" transform="translate(526.6666666666666,758.5897435897436)" id="node-9" class="node"><rect fill="#9c755f" width="10" height="24.358974358974365"/></g><g y="246.8898080978325" x="0" transform="translate(0,246.8898080978325)" id="node-10" class="node"><rect fill="#bab0ab" width="10" height="511.5384615384613"/></g><g y="227.0512820512824" x="263.3333333333333" transform="translate(263.3333333333333,227.0512820512824)" id="node-11" class="node"><rect fill="#4e79a7" width="10" height="267.9487179487178"/></g><g y="227.05128205128239" x="526.6666666666666" transform="translate(526.6666666666666,227.05128205128239)" id="node-12" class="node"><rect fill="#f28e2c" width="10" height="267.94871794871807"/></g><g y="792.948717948718" x="263.3333333333333" transform="translate(263.3333333333333,792.948717948718)" id="node-13" class="node"><rect fill="#e15759" width="10" height="207.051282051282"/></g><g y="792.948717948718" x="526.6666666666666" transform="translate(526.6666666666666,792.948717948718)" id="node-14" class="node"><rect fill="#76b7b2" width="10" height="207.051282051282"/></g><g y="505.0000000000002" x="263.3333333333333" transform="translate(263.3333333333333,505.0000000000002)" id="node-15" class="node"><rect fill="#59a14f" width="10" height="243.58974358974342"/></g><g y="505" x="526.6666666666666" transform="translate(526.6666666666666,505)" id="node-16" class="node"><rect fill="#edc949" width="10" height="243.58974358974365"/></g></g><g font-size="14" font-family="sans-serif" class="node-labels"><text text-anchor="start" dy="0.35em" y="104.56047799163488" x="16">RNA-seq/exome</text><text text-anchor="start" dy="0.35em" y="104.56435483353413" x="279.3333333333333">2011</text><text text-anchor="end" dy="0.35em" y="91.34615384615384" x="520.6666666666666">Morin 2011</text><text text-anchor="end" dy="0.35em" y="231.41025641025638" x="784">Tier 1 FL genes</text><text text-anchor="end" dy="0.35em" y="716.4102564102562" x="784">Tier 2 FL genes</text><text text-anchor="end" dy="0.35em" y="204.87179487179486" x="520.6666666666666">Pasqualucci 2011b</text><text text-anchor="start" dy="0.35em" y="884.133397841422" x="16">WGS</text><text text-anchor="start" dy="0.35em" y="770.7692307692308" x="279.3333333333333">2016 WGS</text><text text-anchor="end" dy="0.35em" y="770.7692307692308" x="520.6666666666666">Okosun 2016</text><text text-anchor="start" dy="0.35em" y="502.6590388670632" x="16">exome</text><text text-anchor="start" dy="0.35em" y="361.02564102564133" x="279.3333333333333">2017 exome</text><text text-anchor="end" dy="0.35em" y="361.02564102564145" x="520.6666666666666">Krysiak 2017</text><text text-anchor="start" dy="0.35em" y="896.474358974359" x="279.3333333333333">2021 WGS</text><text text-anchor="end" dy="0.35em" y="896.474358974359" x="520.6666666666666">Hubschmann 2021</text><text text-anchor="start" dy="0.35em" y="626.7948717948719" x="279.3333333333333">2023 exome</text><text text-anchor="end" dy="0.35em" y="626.7948717948718" x="520.6666666666666">Russler-Germain 2023</text></g><g stroke-opacity="0.5" fill="none" class="links"><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="207.05128205128204" stroke="#f28e2c" d="M10,104.56047799163488C136.66666666666666,104.56047799163488,136.66666666666666,104.5643548335341,263.3333333333333,104.5643548335341"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="182.69230769230768" stroke="#e15759" d="M273.3333333333333,92.38486765404691C400,92.38486765404691,400,91.34615384615384,526.6666666666666,91.34615384615384"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="170.5128205128205" stroke="#76b7b2" d="M536.6666666666666,85.25641025641025C663.3333333333333,85.25641025641025,663.3333333333333,85.25641025641025,790,85.25641025641025"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="12.179487179487179" stroke="#59a14f" d="M536.6666666666666,176.6025641025641C663.3333333333333,176.6025641025641,663.3333333333333,478.91025641025635,790,478.91025641025635"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="24.358974358974358" stroke="#edc949" d="M273.3333333333333,195.91050867968795C400,195.91050867968795,400,204.87179487179486,526.6666666666666,204.87179487179486"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="24.358974358974358" stroke="#76b7b2" d="M536.6666666666666,204.87179487179486C663.3333333333333,204.87179487179486,663.3333333333333,182.69230769230768,790,182.69230769230768"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="24.358974358974358" stroke="#ff9da7" d="M10,780.607756815781C136.66666666666666,780.607756815781,136.66666666666666,770.7692307692308,263.3333333333333,770.7692307692308"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="24.358974358974358" stroke="#9c755f" d="M273.3333333333333,770.7692307692308C400,770.7692307692308,400,770.7692307692308,526.6666666666666,770.7692307692308"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="24.358974358974358" stroke="#76b7b2" d="M536.6666666666666,770.7692307692308C663.3333333333333,770.7692307692308,663.3333333333333,426.28205128205127,790,426.28205128205127"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="267.94871794871796" stroke="#4e79a7" d="M10,380.8641670721915C136.66666666666666,380.8641670721915,136.66666666666666,361.0256410256414,263.3333333333333,361.0256410256414"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="267.94871794871796" stroke="#f28e2c" d="M273.3333333333333,361.0256410256414C400,361.0256410256414,400,361.02564102564133,526.6666666666666,361.02564102564133"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="60.8974358974359" stroke="#59a14f" d="M536.6666666666666,464.5512820512824C663.3333333333333,464.5512820512824,663.3333333333333,515.4487179487179,790,515.4487179487179"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="207.05128205128204" stroke="#76b7b2" d="M536.6666666666666,330.57692307692344C663.3333333333333,330.57692307692344,663.3333333333333,298.3974358974359,790,298.3974358974359"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="207.05128205128204" stroke="#e15759" d="M10,896.3128850209092C136.66666666666666,896.3128850209092,136.66666666666666,896.474358974359,263.3333333333333,896.474358974359"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="207.05128205128204" stroke="#76b7b2" d="M273.3333333333333,896.474358974359C400,896.474358974359,400,896.474358974359,526.6666666666666,896.474358974359"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="182.69230769230768" stroke="#59a14f" d="M536.6666666666666,908.6538461538462C663.3333333333333,908.6538461538462,663.3333333333333,868.653846153846,790,868.653846153846"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="24.358974358974358" stroke="#76b7b2" d="M536.6666666666666,805.1282051282052C663.3333333333333,805.1282051282052,663.3333333333333,450.64102564102564,790,450.64102564102564"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="243.5897435897436" stroke="#59a14f" d="M10,636.6333978414223C136.66666666666666,636.6333978414223,136.66666666666666,626.794871794872,263.3333333333333,626.794871794872"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="243.5897435897436" stroke="#edc949" d="M273.3333333333333,626.794871794872C400,626.794871794872,400,626.7948717948718,526.6666666666666,626.7948717948718"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="12.179487179487179" stroke="#76b7b2" d="M536.6666666666666,511.0897435897436C663.3333333333333,511.0897435897436,663.3333333333333,408.0128205128205,790,408.0128205128205"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="231.4102564102564" stroke="#59a14f" d="M536.6666666666666,632.8846153846154C663.3333333333333,632.8846153846154,663.3333333333333,661.602564102564,790,661.602564102564"/></g></g></svg>
... ...
\ No newline at end of file
images/FL_sankey-1.svg
... ...
@@ -0,0 +1 @@
1
+<svg aria-roledescription="sankey" role="graphics-document document" viewBox="0 0 800 1000" height="1000" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" width="800" id="my-svg" style="background-color: white;"><style>#my-svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:33px;fill:#333;}#my-svg .error-icon{fill:hsl(220.5882352941, 100%, 98.3333333333%);}#my-svg .error-text{fill:rgb(8.5000000002, 5.7500000001, 0);stroke:rgb(8.5000000002, 5.7500000001, 0);}#my-svg .edge-thickness-normal{stroke-width:2px;}#my-svg .edge-thickness-thick{stroke-width:3.5px;}#my-svg .edge-pattern-solid{stroke-dasharray:0;}#my-svg .edge-pattern-dashed{stroke-dasharray:3;}#my-svg .edge-pattern-dotted{stroke-dasharray:2;}#my-svg .marker{fill:#0b0b0b;stroke:#0b0b0b;}#my-svg .marker.cross{stroke:#0b0b0b;}#my-svg svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:33px;}#my-svg :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}</style><g/><g class="nodes"><g y="1.0348369659938543" x="0" transform="translate(0,1.0348369659938543)" id="node-1" class="node"><rect fill="#4e79a7" width="10" height="207.05128205128204"/></g><g y="1.0387138078930784" x="263.3333333333333" transform="translate(263.3333333333333,1.0387138078930784)" id="node-2" class="node"><rect fill="#f28e2c" width="10" height="207.05128205128207"/></g><g y="0" x="526.6666666666666" transform="translate(526.6666666666666,0)" id="node-3" class="node"><rect fill="#e15759" width="10" height="182.69230769230768"/></g><g y="0" x="790" transform="translate(790,0)" id="node-4" class="node"><rect fill="#76b7b2" width="10" height="462.82051282051276"/></g><g y="472.82051282051276" x="790" transform="translate(790,472.82051282051276)" id="node-5" class="node"><rect fill="#59a14f" width="10" height="487.179487179487"/></g><g y="192.69230769230768" x="526.6666666666666" transform="translate(526.6666666666666,192.69230769230768)" id="node-6" class="node"><rect fill="#edc949" width="10" height="24.358974358974365"/></g><g y="768.4282696362939" x="0" transform="translate(0,768.4282696362939)" id="node-7" class="node"><rect fill="#af7aa1" width="10" height="231.41025641025635"/></g><g y="758.5897435897436" x="263.3333333333333" transform="translate(263.3333333333333,758.5897435897436)" id="node-8" class="node"><rect fill="#ff9da7" width="10" height="24.358974358974365"/></g><g y="758.5897435897436" x="526.6666666666666" transform="translate(526.6666666666666,758.5897435897436)" id="node-9" class="node"><rect fill="#9c755f" width="10" height="24.358974358974365"/></g><g y="246.8898080978325" x="0" transform="translate(0,246.8898080978325)" id="node-10" class="node"><rect fill="#bab0ab" width="10" height="511.5384615384613"/></g><g y="227.0512820512824" x="263.3333333333333" transform="translate(263.3333333333333,227.0512820512824)" id="node-11" class="node"><rect fill="#4e79a7" width="10" height="267.9487179487178"/></g><g y="227.05128205128239" x="526.6666666666666" transform="translate(526.6666666666666,227.05128205128239)" id="node-12" class="node"><rect fill="#f28e2c" width="10" height="267.94871794871807"/></g><g y="792.948717948718" x="263.3333333333333" transform="translate(263.3333333333333,792.948717948718)" id="node-13" class="node"><rect fill="#e15759" width="10" height="207.051282051282"/></g><g y="792.948717948718" x="526.6666666666666" transform="translate(526.6666666666666,792.948717948718)" id="node-14" class="node"><rect fill="#76b7b2" width="10" height="207.051282051282"/></g><g y="505.0000000000002" x="263.3333333333333" transform="translate(263.3333333333333,505.0000000000002)" id="node-15" class="node"><rect fill="#59a14f" width="10" height="243.58974358974342"/></g><g y="505" x="526.6666666666666" transform="translate(526.6666666666666,505)" id="node-16" class="node"><rect fill="#edc949" width="10" height="243.58974358974365"/></g></g><g font-size="14" font-family="sans-serif" class="node-labels"><text text-anchor="start" dy="0.35em" y="104.56047799163488" x="16">RNA-seq/exome</text><text text-anchor="start" dy="0.35em" y="104.56435483353413" x="279.3333333333333">2011</text><text text-anchor="end" dy="0.35em" y="91.34615384615384" x="520.6666666666666">Morin 2011</text><text text-anchor="end" dy="0.35em" y="231.41025641025638" x="784">Tier 1 FL genes</text><text text-anchor="end" dy="0.35em" y="716.4102564102562" x="784">Tier 2 FL genes</text><text text-anchor="end" dy="0.35em" y="204.87179487179486" x="520.6666666666666">Pasqualucci 2011b</text><text text-anchor="start" dy="0.35em" y="884.133397841422" x="16">WGS</text><text text-anchor="start" dy="0.35em" y="770.7692307692308" x="279.3333333333333">2016 WGS</text><text text-anchor="end" dy="0.35em" y="770.7692307692308" x="520.6666666666666">Okosun 2016</text><text text-anchor="start" dy="0.35em" y="502.6590388670632" x="16">exome</text><text text-anchor="start" dy="0.35em" y="361.02564102564133" x="279.3333333333333">2017 exome</text><text text-anchor="end" dy="0.35em" y="361.02564102564145" x="520.6666666666666">Krysiak 2017</text><text text-anchor="start" dy="0.35em" y="896.474358974359" x="279.3333333333333">2021 WGS</text><text text-anchor="end" dy="0.35em" y="896.474358974359" x="520.6666666666666">Hubschmann 2021</text><text text-anchor="start" dy="0.35em" y="626.7948717948719" x="279.3333333333333">2023 exome</text><text text-anchor="end" dy="0.35em" y="626.7948717948718" x="520.6666666666666">Russler-Germain 2023</text></g><g stroke-opacity="0.5" fill="none" class="links"><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="207.05128205128204" stroke="#f28e2c" d="M10,104.56047799163488C136.66666666666666,104.56047799163488,136.66666666666666,104.5643548335341,263.3333333333333,104.5643548335341"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="182.69230769230768" stroke="#e15759" d="M273.3333333333333,92.38486765404691C400,92.38486765404691,400,91.34615384615384,526.6666666666666,91.34615384615384"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="170.5128205128205" stroke="#76b7b2" d="M536.6666666666666,85.25641025641025C663.3333333333333,85.25641025641025,663.3333333333333,85.25641025641025,790,85.25641025641025"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="12.179487179487179" stroke="#59a14f" d="M536.6666666666666,176.6025641025641C663.3333333333333,176.6025641025641,663.3333333333333,478.91025641025635,790,478.91025641025635"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="24.358974358974358" stroke="#edc949" d="M273.3333333333333,195.91050867968795C400,195.91050867968795,400,204.87179487179486,526.6666666666666,204.87179487179486"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="24.358974358974358" stroke="#76b7b2" d="M536.6666666666666,204.87179487179486C663.3333333333333,204.87179487179486,663.3333333333333,182.69230769230768,790,182.69230769230768"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="24.358974358974358" stroke="#ff9da7" d="M10,780.607756815781C136.66666666666666,780.607756815781,136.66666666666666,770.7692307692308,263.3333333333333,770.7692307692308"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="24.358974358974358" stroke="#9c755f" d="M273.3333333333333,770.7692307692308C400,770.7692307692308,400,770.7692307692308,526.6666666666666,770.7692307692308"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="24.358974358974358" stroke="#76b7b2" d="M536.6666666666666,770.7692307692308C663.3333333333333,770.7692307692308,663.3333333333333,426.28205128205127,790,426.28205128205127"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="267.94871794871796" stroke="#4e79a7" d="M10,380.8641670721915C136.66666666666666,380.8641670721915,136.66666666666666,361.0256410256414,263.3333333333333,361.0256410256414"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="267.94871794871796" stroke="#f28e2c" d="M273.3333333333333,361.0256410256414C400,361.0256410256414,400,361.02564102564133,526.6666666666666,361.02564102564133"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="60.8974358974359" stroke="#59a14f" d="M536.6666666666666,464.5512820512824C663.3333333333333,464.5512820512824,663.3333333333333,515.4487179487179,790,515.4487179487179"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="207.05128205128204" stroke="#76b7b2" d="M536.6666666666666,330.57692307692344C663.3333333333333,330.57692307692344,663.3333333333333,298.3974358974359,790,298.3974358974359"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="207.05128205128204" stroke="#e15759" d="M10,896.3128850209092C136.66666666666666,896.3128850209092,136.66666666666666,896.474358974359,263.3333333333333,896.474358974359"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="207.05128205128204" stroke="#76b7b2" d="M273.3333333333333,896.474358974359C400,896.474358974359,400,896.474358974359,526.6666666666666,896.474358974359"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="182.69230769230768" stroke="#59a14f" d="M536.6666666666666,908.6538461538462C663.3333333333333,908.6538461538462,663.3333333333333,868.653846153846,790,868.653846153846"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="24.358974358974358" stroke="#76b7b2" d="M536.6666666666666,805.1282051282052C663.3333333333333,805.1282051282052,663.3333333333333,450.64102564102564,790,450.64102564102564"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="243.5897435897436" stroke="#59a14f" d="M10,636.6333978414223C136.66666666666666,636.6333978414223,136.66666666666666,626.794871794872,263.3333333333333,626.794871794872"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="243.5897435897436" stroke="#edc949" d="M273.3333333333333,626.794871794872C400,626.794871794872,400,626.7948717948718,526.6666666666666,626.7948717948718"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="12.179487179487179" stroke="#76b7b2" d="M536.6666666666666,511.0897435897436C663.3333333333333,511.0897435897436,663.3333333333333,408.0128205128205,790,408.0128205128205"/></g><g style="mix-blend-mode: multiply;" class="link"><path stroke-width="231.4102564102564" stroke="#59a14f" d="M536.6666666666666,632.8846153846154C663.3333333333333,632.8846153846154,663.3333333333333,661.602564102564,790,661.602564102564"/></g></g></svg>
... ...
\ No newline at end of file