-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1193 lines (738 loc) · 39.1 KB
/
index.html
File metadata and controls
1193 lines (738 loc) · 39.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html theme="dark" showBanner="true" hasBanner="true" >
<link href="https://cdn.staticfile.org/font-awesome/6.4.2/css/fontawesome.min.css" rel="stylesheet">
<link href="https://cdn.staticfile.org/font-awesome/6.4.2/css/brands.min.css" rel="stylesheet">
<link href="https://cdn.staticfile.org/font-awesome/6.4.2/css/solid.min.css" rel="stylesheet">
<link href="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/KaTeX/0.10.2/katex.min.css" rel="stylesheet">
<script src="/js/color.global.min.js" ></script>
<script src="/js/load-settings.js" ></script>
<head>
<meta charset="utf-8">
<title>Jichen's Blog</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="preload" href="/css/fonts/Roboto-Regular.ttf" as="font" type="font/ttf" crossorigin="anonymous">
<link rel="preload" href="/css/fonts/Roboto-Bold.ttf" as="font" type="font/ttf" crossorigin="anonymous">
<meta name="description" content="Jichen Wen Blog">
<meta property="og:type" content="website">
<meta property="og:title" content="Jichen's Blog">
<meta property="og:url" content="http://example.com/index.html">
<meta property="og:site_name" content="Jichen's Blog">
<meta property="og:description" content="Jichen Wen Blog">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="Jichen Wen">
<meta name="twitter:card" content="summary">
<link rel="alternate" href="/atom.xml" title="Jichen's Blog" type="application/atom+xml">
<link rel="icon" media="(prefers-color-scheme: light)" href="/images/favicon-light-32.png" sizes="32x32">
<link rel="icon" media="(prefers-color-scheme: light)" href="/images/favicon-light-128.png" sizes="128x128">
<link rel="icon" media="(prefers-color-scheme: light)" href="/images/favicon-light-180.png" sizes="180x180">
<link rel="icon" media="(prefers-color-scheme: light)" href="/images/favicon-light-192.png" sizes="192x192">
<link rel="icon" media="(prefers-color-scheme: dark)" href="/images/favicon-dark-32.png" sizes="32x32">
<link rel="icon" media="(prefers-color-scheme: dark)" href="/images/favicon-dark-128.png" sizes="128x128">
<link rel="icon" media="(prefers-color-scheme: dark)" href="/images/favicon-dark-180.png" sizes="180x180">
<link rel="icon" media="(prefers-color-scheme: dark)" href="/images/favicon-dark-192.png" sizes="192x192">
<link rel="stylesheet" href="/css/style.css">
<meta name="generator" content="Hexo 6.3.0"></head>
<body>
<div id="banner" class=" is_home ">
<img src="/banner.jpg" itemprop="image">
<div id="banner-dim"></div>
</div>
<div id="main-grid" class="shadow ">
<div id="nav" class=" is_home " >
<navbar id="navbar">
<nav id="title-nav">
<a href="/">
<div id="vivia-logo">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
<div>Jichen's Blog </div>
</a>
</nav>
<nav id="main-nav">
<a class="main-nav-link" href="/">Home</a>
<a class="main-nav-link" href="/archives">Archives</a>
<a class="main-nav-link" href="/about">About</a>
</nav>
<nav id="sub-nav">
<a id="theme-btn" class="nav-icon">
<span class="light-mode-icon"><svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="M438.5-829.913v-48q0-17.452 11.963-29.476 11.964-12.024 29.326-12.024 17.363 0 29.537 12.024t12.174 29.476v48q0 17.452-11.963 29.476-11.964 12.024-29.326 12.024-17.363 0-29.537-12.024T438.5-829.913Zm0 747.826v-48q0-17.452 11.963-29.476 11.964-12.024 29.326-12.024 17.363 0 29.537 12.024t12.174 29.476v48q0 17.452-11.963 29.476-11.964 12.024-29.326 12.024-17.363 0-29.537-12.024T438.5-82.087ZM877.913-438.5h-48q-17.452 0-29.476-11.963-12.024-11.964-12.024-29.326 0-17.363 12.024-29.537t29.476-12.174h48q17.452 0 29.476 11.963 12.024 11.964 12.024 29.326 0 17.363-12.024 29.537T877.913-438.5Zm-747.826 0h-48q-17.452 0-29.476-11.963-12.024-11.964-12.024-29.326 0-17.363 12.024-29.537T82.087-521.5h48q17.452 0 29.476 11.963 12.024 11.964 12.024 29.326 0 17.363-12.024 29.537T130.087-438.5Zm660.174-290.87-34.239 32q-12.913 12.674-29.565 12.174-16.653-.5-29.327-13.174-12.674-12.673-12.554-28.826.12-16.152 12.794-28.826l33-35q12.913-12.674 30.454-12.674t30.163 12.847q12.709 12.846 12.328 30.826-.38 17.98-13.054 30.653ZM262.63-203.978l-32 34q-12.913 12.674-30.454 12.674t-30.163-12.847q-12.709-12.846-12.328-30.826.38-17.98 13.054-30.653l33.239-31q12.913-12.674 29.565-12.174 16.653.5 29.327 13.174 12.674 12.673 12.554 28.826-.12 16.152-12.794 28.826Zm466.74 33.239-32-33.239q-12.674-12.913-12.174-29.565.5-16.653 13.174-29.327 12.673-12.674 28.826-13.054 16.152-.38 28.826 12.294l35 33q12.674 12.913 12.674 30.454t-12.847 30.163q-12.846 12.709-30.826 12.328-17.98-.38-30.653-13.054ZM203.978-697.37l-34-33q-12.674-12.913-13.174-29.945-.5-17.033 12.174-29.707t31.326-13.293q18.653-.62 31.326 13.054l32 34.239q11.674 12.913 11.174 29.565-.5 16.653-13.174 29.327-12.673 12.674-28.826 12.554-16.152-.12-28.826-12.794ZM480-240q-100 0-170-70t-70-170q0-100 70-170t170-70q100 0 170 70t70 170q0 100-70 170t-170 70Zm-.247-82q65.703 0 111.475-46.272Q637-414.544 637-480.247t-45.525-111.228Q545.95-637 480.247-637t-111.475 45.525Q323-545.95 323-480.247t45.525 111.975Q414.05-322 479.753-322ZM481-481Z"/></svg></span>
<span class="dark-mode-icon"><svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="M480.239-116.413q-152.63 0-258.228-105.478Q116.413-327.37 116.413-480q0-130.935 77.739-227.435t206.304-125.043q43.022-9.631 63.87 10.869t3.478 62.805q-8.891 22.043-14.315 44.463-5.424 22.42-5.424 46.689 0 91.694 64.326 155.879 64.325 64.186 156.218 64.186 24.369 0 46.978-4.946 22.609-4.945 44.413-14.076 42.826-17.369 62.967 1.142 20.142 18.511 10.511 61.054Q807.174-280 712.63-198.206q-94.543 81.793-232.391 81.793Zm0-95q79.783 0 143.337-40.217 63.554-40.218 95.793-108.283-15.608 4.044-31.097 5.326-15.49 1.283-31.859.805-123.706-4.066-210.777-90.539-87.071-86.473-91.614-212.092-.24-16.369.923-31.978 1.164-15.609 5.446-30.978-67.826 32.478-108.282 96.152Q211.652-559.543 211.652-480q0 111.929 78.329 190.258 78.329 78.329 190.258 78.329ZM466.13-465.891Z"/></svg></span>
</a>
<a id="nav-rss-link" class="nav-icon mobile-hide" href="/atom.xml" title="RSS 订阅">
<svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="M198-120q-25.846 0-44.23-18.384-18.384-18.385-18.384-44.23 0-25.846 18.384-44.23 18.384-18.385 44.23-18.385 25.846 0 44.23 18.385 18.384 18.384 18.384 44.23 0 25.845-18.384 44.23Q223.846-120 198-120Zm538.385 0q-18.846 0-32.923-13.769-14.076-13.769-15.922-33.23-8.692-100.616-51.077-188.654-42.385-88.039-109.885-155.539-67.5-67.501-155.539-109.885Q283-663.462 182.385-672.154q-19.461-1.846-33.23-16.23-13.769-14.385-13.769-33.846t14.076-32.922q14.077-13.461 32.923-12.23 120.076 8.692 226.038 58.768 105.961 50.077 185.73 129.846 79.769 79.769 129.846 185.731 50.077 105.961 58.769 226.038 1.231 18.846-12.538 32.922Q756.461-120 736.385-120Zm-252 0q-18.231 0-32.423-13.461t-18.653-33.538Q418.155-264.23 348.886-333.5q-69.27-69.27-166.501-84.423-20.077-4.462-33.538-18.961-13.461-14.5-13.461-33.346 0-19.076 13.884-33.23 13.884-14.153 33.115-10.922 136.769 15.384 234.384 112.999 97.615 97.615 112.999 234.384 3.231 19.23-10.538 33.115Q505.461-120 484.385-120Z"/></svg>
</a>
<div id="nav-menu-btn" class="nav-icon">
<svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="M177.37-252.282q-17.453 0-29.477-11.964-12.024-11.963-12.024-29.326t12.024-29.537q12.024-12.174 29.477-12.174h605.26q17.453 0 29.477 11.964 12.024 11.963 12.024 29.326t-12.024 29.537q-12.024 12.174-29.477 12.174H177.37Zm0-186.218q-17.453 0-29.477-11.963-12.024-11.964-12.024-29.326 0-17.363 12.024-29.537T177.37-521.5h605.26q17.453 0 29.477 11.963 12.024 11.964 12.024 29.326 0 17.363-12.024 29.537T782.63-438.5H177.37Zm0-186.217q-17.453 0-29.477-11.964-12.024-11.963-12.024-29.326t12.024-29.537q12.024-12.174 29.477-12.174h605.26q17.453 0 29.477 11.964 12.024 11.963 12.024 29.326t-12.024 29.537q-12.024 12.174-29.477 12.174H177.37Z"/></svg>
</div>
</nav>
</navbar>
<div id="nav-dropdown" class="hidden">
<div id="dropdown-link-list">
<a class="nav-dropdown-link" href="/">Home</a>
<a class="nav-dropdown-link" href="/archives">Archives</a>
<a class="nav-dropdown-link" href="/about">About</a>
<a class="nav-dropdown-link" href="/atom.xml" title="RSS 订阅">RSS</a>
</div>
</div>
<script>
let dropdownBtn = document.getElementById("nav-menu-btn");
let dropdownEle = document.getElementById("nav-dropdown");
dropdownBtn.onclick = function() {
dropdownEle.classList.toggle("hidden");
}
</script>
</div>
<div id="sidebar-wrapper">
<sidebar id="sidebar">
<div class="widget-wrap">
<div class="info-card">
<div class="avatar">
<image src=/avatar.jpg></image>
<div class="img-dim"></div>
</div>
<div class="info">
<div class="username">Jichen Wen </div>
<div class="dot"></div>
<div class="subtitle">A PhD Student at BIG.CAS </div>
<div class="link-list">
<a class="link-btn" target="_blank" rel="noopener" href="https://twitter.com/JichenWen0725" title="Twitter"><i class="fa-brands fa-twitter"></i></a>
<a class="link-btn" target="_blank" rel="noopener" href="https://steamcommunity.com/profiles/76561199384309545/" title="Steam"><i class="fa-brands fa-steam"></i></a>
<a class="link-btn" target="_blank" rel="noopener" href="https://github.com/Antidington" title="GitHub"><i class="fa-brands fa-github"></i></a>
<a class="link-btn" target="_blank" rel="noopener" href="https://space.bilibili.com/13424576" title="bilibili"><i class="fa-brands fa-bilibili"></i></a>
</div>
</div>
</div>
</div>
<div class="sticky">
<div class="widget-wrap">
<div class="widget">
<h3 class="widget-title">分类</h3>
<div class="category-box">
<a class="category-link" href="/categories/Journal-Club/">
Journal Club
<div class="category-count">3</div>
</a>
<a class="category-link" href="/categories/%E5%AE%9E%E7%94%A8%E5%B7%A5%E5%85%B7/">
实用工具
<div class="category-count">3</div>
</a>
<a class="category-link" href="/categories/Code-Replication/">
Code Replication
<div class="category-count">1</div>
</a>
<a class="category-link" href="/categories/Yanqi-Notebook/">
Yanqi Notebook
<div class="category-count">2</div>
</a>
<div class="children"><div class="category-box">
<a class="category-link" href="/categories/Yanqi-Notebook/Epigentics/">
Epigentics
<div class="category-count">1</div>
</a>
</div></div>
<a class="category-link" href="/categories/Globus%E5%A5%97%E4%BB%B6/">
Globus套件
<div class="category-count">1</div>
</a>
<a class="category-link" href="/categories/post-GWAS/">
post-GWAS
<div class="category-count">1</div>
</a>
<a class="category-link" href="/categories/Hexo/">
Hexo
<div class="category-count">2</div>
</a>
<a class="category-link" href="/categories/Statistics/">
Statistics
<div class="category-count">1</div>
</a>
<a class="category-link" href="/categories/Biotools/">
Biotools
<div class="category-count">1</div>
</a>
<a class="category-link" href="/categories/%E5%AE%B9%E5%99%A8%E6%8A%80%E6%9C%AF/">
容器技术
<div class="category-count">1</div>
</a>
</div>
</div>
</div>
<div class="widget-wrap">
<div class="widget">
<h3 class="widget-title">标签</h3>
<ul class="widget-tag-list" itemprop="keywords"><li class="widget-tag-list-item"><a class="widget-tag-list-link" href="/tags/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/" rel="tag">学习笔记</a></li><li class="widget-tag-list-item"><a class="widget-tag-list-link" href="/tags/%E8%AF%BE%E9%A2%98%E7%9B%B8%E5%85%B3/" rel="tag">课题相关</a></li><li class="widget-tag-list-item"><a class="widget-tag-list-link" href="/tags/%E8%BD%AF%E4%BB%B6%E4%BD%BF%E7%94%A8/" rel="tag">软件使用</a></li></ul>
</div>
</div>
<div class="widget-wrap">
<div class="widget">
<h3 class="widget-title">归档</h3>
<a class="archive-link" href="/archives/2023/12 ">
十二月 2023
<div class="archive-count">1 </div>
</a>
<a class="archive-link" href="/archives/2023/11 ">
十一月 2023
<div class="archive-count">6 </div>
</a>
<a class="archive-link" href="/archives/2023/10 ">
十月 2023
<div class="archive-count">9 </div>
</a>
</div>
</div>
<div class="widget-wrap">
<div class="widget">
<h3 class="widget-title">最新文章</h3>
<ul>
<a class="recent-link" href="/2023/12/18/Mapping%20the%20dynamic%20genetic%20regulatory%20architecture%20of%20HLA%20genes%20at%20single-cell%20resolution/" title="Mapping the dynamic genetic regulatory architecture of HLA genes at single-cell resolution" >
<div class="recent-link-text">
Mapping the dynamic genetic regulatory architecture of HLA genes at single-cell resolution
</div>
</a>
<a class="recent-link" href="/2023/11/13/MAGMA/" title="MAGMA" >
<div class="recent-link-text">
MAGMA
</div>
</a>
<a class="recent-link" href="/2023/11/09/cloudpan189-go_usage/" title="天翼云盘命令行工具cloudpan189-go的使用" >
<div class="recent-link-text">
天翼云盘命令行工具cloudpan189-go的使用
</div>
</a>
<a class="recent-link" href="/2023/11/05/Autobangumi_usage/" title="Autobangumi Usage for Mac" >
<div class="recent-link-text">
Autobangumi Usage for Mac
</div>
</a>
<a class="recent-link" href="/2023/11/04/auto_ssh/" title="堡垒机自动登录脚本" >
<div class="recent-link-text">
堡垒机自动登录脚本
</div>
</a>
</ul>
</div>
</div>
</div>
</sidebar>
</div>
<div id="content-body">
<article id="post-Mapping the dynamic genetic regulatory architecture of HLA genes at single-cell resolution" class="h-entry article article-type-post" itemprop="blogPost" itemscope itemtype="https://schema.org/BlogPosting">
<div class="article-inner">
<div class="article-main">
<header class="article-header">
<div class="main-title-bar">
<div class="main-title-dot"></div>
<h1 itemprop="name">
<a class="p-name article-title" href="/2023/12/18/Mapping%20the%20dynamic%20genetic%20regulatory%20architecture%20of%20HLA%20genes%20at%20single-cell%20resolution/">Mapping the dynamic genetic regulatory architecture of HLA genes at single-cell resolution</a>
</h1>
</div>
<div class='meta-info-bar'>
<div class="meta-info">
<time class="dt-published" datetime="2023-12-18T07:11:23.000Z" itemprop="datePublished">2023-12-18</time>
</div>
<div class="need-seperator meta-info">
<div class="meta-cate-flex">
<a class="meta-cate-link" href="/categories/Journal-Club/">Journal Club</a>
</div>
</div>
<div class="wordcount need-seperator meta-info">
1.4k 词
</div>
</div>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E8%AF%BE%E9%A2%98%E7%9B%B8%E5%85%B3/" rel="tag">课题相关</a></li></ul>
</header>
<div class="e-content article-entry" itemprop="articleBody">
<div class="truncate-text">
Mapping the dynamic genetic regulatory architecture of HLA genes at single-cell resolution
(一)单细胞数据集
69个滑膜样本
22个肠样本
91个PBMC体外培养样本
OneK1K cohort
(二)Pseudobulk cell type specific eQTL
由于作者关注HLA基因,所以只对相关的髓系细胞、T细胞、B细胞进行了分析
不同cohrt构建不同的PEERs,根据不同群体大小使用不同数量的PEERs
随后单独对每个cohort进行eQTL mapping (P < 4e-9),找出每个HLA基因对应的lead eQTL,其中91.7% (88/96)具备mean directional concord-ance,证明了不同cohort间存在一致性。
最终分析得到24个与MHC关联的lead eQTL
For each cohort:
Eresid=βGXG+sex+age+βi(1,2,...,5)PCi(1,2,...,5)+β...
</div>
</div>
</div>
<a class="right-panel non-pic "
href="/2023/12/18/Mapping%20the%20dynamic%20genetic%20regulatory%20architecture%20of%20HLA%20genes%20at%20single-cell%20resolution/"
>
<i class="fa-solid fa-angle-right non-pic"></i>
</a>
</div>
</article>
<article id="post-MAGMA" class="h-entry article article-type-post" itemprop="blogPost" itemscope itemtype="https://schema.org/BlogPosting">
<div class="article-inner">
<div class="article-main">
<header class="article-header">
<div class="main-title-bar">
<div class="main-title-dot"></div>
<h1 itemprop="name">
<a class="p-name article-title" href="/2023/11/13/MAGMA/">MAGMA</a>
</h1>
</div>
<div class='meta-info-bar'>
<div class="meta-info">
<time class="dt-published" datetime="2023-11-12T22:36:00.000Z" itemprop="datePublished">2023-11-13</time>
</div>
<div class="need-seperator meta-info">
<div class="meta-cate-flex">
<a class="meta-cate-link" href="/categories/post-GWAS/">post-GWAS</a>
</div>
</div>
<div class="wordcount need-seperator meta-info">
1.5k 词
</div>
</div>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E8%AF%BE%E9%A2%98%E7%9B%B8%E5%85%B3/" rel="tag">课题相关</a></li></ul>
</header>
<div class="e-content article-entry" itemprop="articleBody">
<div class="truncate-text">
MAGMA
简介
MAGMA is a tool for gene analysis and generalized gene-set analysis of GWAS data. It can be used to analyse both raw genotype data as well as summary SNP p-values from a previous GWAS or meta-analysis.
原理
待施工
安装
官网提供了如下版本
即开即用
使用
示例数据
GWAS数据:BMI meta analysis的一套数据,样本量为339224
基因坐标:Gene locations, build 37
1KG:European
通路文件:msigdb.v7.4
01 Annotation
需要提供对下载得到的GWAS summary statistics进行预处理,得到snp.loc文件,\t分割,分别为rsID chrosome postion,不需要列名:
123cat gwas.tsv | \ awk -F'\t'...
</div>
</div>
</div>
<a class="right-panel non-pic "
href="/2023/11/13/MAGMA/"
>
<i class="fa-solid fa-angle-right non-pic"></i>
</a>
</div>
</article>
<article id="post-cloudpan189-go_usage" class="h-entry article article-type-post" itemprop="blogPost" itemscope itemtype="https://schema.org/BlogPosting">
<div class="article-inner">
<div class="article-main">
<header class="article-header">
<div class="main-title-bar">
<div class="main-title-dot"></div>
<h1 itemprop="name">
<a class="p-name article-title" href="/2023/11/09/cloudpan189-go_usage/">天翼云盘命令行工具cloudpan189-go的使用</a>
</h1>
</div>
<div class='meta-info-bar'>
<div class="meta-info">
<time class="dt-published" datetime="2023-11-08T21:12:30.000Z" itemprop="datePublished">2023-11-09</time>
</div>
<div class="need-seperator meta-info">
<div class="meta-cate-flex">
<a class="meta-cate-link" href="/categories/%E5%AE%9E%E7%94%A8%E5%B7%A5%E5%85%B7/">实用工具</a>
</div>
</div>
<div class="wordcount need-seperator meta-info">
1.6k 词
</div>
</div>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E8%BD%AF%E4%BB%B6%E4%BD%BF%E7%94%A8/" rel="tag">软件使用</a></li></ul>
</header>
<div class="e-content article-entry" itemprop="articleBody">
<div class="truncate-text">
cloudpan189-go Usage
repo直达 https://github.com/tickstep/cloudpan189-go
简介
天翼云盘CLI,基于GO语言实现。仿 Linux shell 文件处理命令的天翼云盘命令行客户端。
下载
在发布页面下载系统对应安装包,解压即可使用,这里以amd64为例
1234wget -c https://github.com/tickstep/cloudpan189-go/releases/download/v0.1.3/cloudpan189-go-v0.1.3-linux-amd64.zipunzip cloudpan189-go-v0.1.3-linux-amd64.zipcd cloudpan189-go-v0.1.3-linux-amd64./cloudpan189-go
执行上述步骤会显示如下内容:
使用
查看帮助
1cloudpan189-go > help
登录
输入login命令,会提示输入用户名与密码
1cloudpan189-go > login
查看文件列表
1clou...
</div>
</div>
</div>
<a class="right-panel non-pic "
href="/2023/11/09/cloudpan189-go_usage/"
>
<i class="fa-solid fa-angle-right non-pic"></i>
</a>
</div>
</article>
<article id="post-Autobangumi_usage" class="h-entry article article-type-post" itemprop="blogPost" itemscope itemtype="https://schema.org/BlogPosting">
<div class="article-inner">
<div class="article-main">
<header class="article-header">
<div class="main-title-bar">
<div class="main-title-dot"></div>
<h1 itemprop="name">
<a class="p-name article-title" href="/2023/11/05/Autobangumi_usage/">Autobangumi Usage for Mac</a>
</h1>
</div>
<div class='meta-info-bar'>
<div class="meta-info">
<time class="dt-published" datetime="2023-11-04T22:40:41.000Z" itemprop="datePublished">2023-11-05</time>
</div>
<div class="need-seperator meta-info">
<div class="meta-cate-flex">
<a class="meta-cate-link" href="/categories/%E5%AE%9E%E7%94%A8%E5%B7%A5%E5%85%B7/">实用工具</a>
</div>
</div>
<div class="wordcount need-seperator meta-info">
962 词
</div>
</div>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E8%BD%AF%E4%BB%B6%E4%BD%BF%E7%94%A8/" rel="tag">软件使用</a></li></ul>
</header>
<div class="e-content article-entry" itemprop="articleBody">
<div class="truncate-text">
Autobangumi Usage for Mac
配置qBittorrent
宿主机配置
首先需要打开WebUI选项,允许远程连接使用,同时设置用户名与密码,勾选对本地主机上的客户端跳过身份验证:
创建Autobangumi下载目录,需要在qBittorrent默认下载目录下创建,本机设置的默认下载目录为/Users/wenjichen/Downloads,所以要在/Downloads下创建:
1mkdir /Users/wenjichen/Downloads/Autobangumi
创建数据和配置文件夹
创建Autobangumi container挂在目录:
123# 使用 bind mountmkdir -p ${HOME}/AutoBangumi/{config,data}cd ${HOME}/AutoBangumi
拉取镜像运行容器
12345678910111213docker run -d \ --name=AutoBangumi \ -v ${HOME}/AutoBa...
</div>
</div>
</div>
<a class="right-panel non-pic "
href="/2023/11/05/Autobangumi_usage/"
>
<i class="fa-solid fa-angle-right non-pic"></i>
</a>
</div>
</article>
<article id="post-auto_ssh" class="h-entry article article-type-post" itemprop="blogPost" itemscope itemtype="https://schema.org/BlogPosting">
<div class="article-inner">
<div class="article-main">
<header class="article-header">
<div class="main-title-bar">
<div class="main-title-dot"></div>
<h1 itemprop="name">
<a class="p-name article-title" href="/2023/11/04/auto_ssh/">堡垒机自动登录脚本</a>
</h1>
</div>
<div class='meta-info-bar'>
<div class="meta-info">
<time class="dt-published" datetime="2023-11-04T05:07:47.000Z" itemprop="datePublished">2023-11-04</time>
</div>
<div class="need-seperator meta-info">
<div class="meta-cate-flex">
<a class="meta-cate-link" href="/categories/%E5%AE%9E%E7%94%A8%E5%B7%A5%E5%85%B7/">实用工具</a>
</div>
</div>
<div class="wordcount need-seperator meta-info">
866 词
</div>
</div>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E8%BD%AF%E4%BB%B6%E4%BD%BF%E7%94%A8/" rel="tag">软件使用</a></li></ul>
</header>
<div class="e-content article-entry" itemprop="articleBody">
<div class="truncate-text">
堡垒机自动登录脚本
前言
使用组里服务器要先连接所里服务器堡垒机,再连接到组里服务器,两个密码还不一样,还都是强密码,根本记不住(大悲:(,原来一直用着Terminus集成管理,虽然有连接后执行命令的功能,但是仍无法实现一步到位连接组里服务器,后查询可使用expect脚本实现。
实现
实用expect脚本
1234567891011121314151617181920#!/usr/bin/expectset timeout 30spawn ssh wenjichen@xxx.xxx.xxx.xxexpect { # stimulate input jump server password "(wenjichen@xxx.xxx.xxx.xx) Password:" {send "xxxxxxxxxx\n";exp_continue} # stimulate select server "请选择目标资产:" {send "2\n";exp_continue&...
</div>
</div>
</div>
<a class="right-panel non-pic "
href="/2023/11/04/auto_ssh/"
>
<i class="fa-solid fa-angle-right non-pic"></i>
</a>
</div>
</article>
<article id="post-10yearsGWASbyBroadInstitute" class="h-entry article article-type-post" itemprop="blogPost" itemscope itemtype="https://schema.org/BlogPosting">
<div class="article-inner">
<div class="article-main">
<header class="article-header">
<div class="main-title-bar">
<div class="main-title-dot"></div>
<h1 itemprop="name">
<a class="p-name article-title" href="/2023/11/04/10yearsGWASbyBroadInstitute/">After a decade of genome-wide association studies, a new phase of discovery pushes on</a>
</h1>
</div>
<div class='meta-info-bar'>
<div class="meta-info">
<time class="dt-published" datetime="2023-11-04T04:52:30.000Z" itemprop="datePublished">2023-11-04</time>
</div>
<div class="need-seperator meta-info">
<div class="meta-cate-flex">
<a class="meta-cate-link" href="/categories/Journal-Club/">Journal Club</a>
</div>
</div>
<div class="wordcount need-seperator meta-info">
2.3k 词
</div>
</div>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E8%AF%BE%E9%A2%98%E7%9B%B8%E5%85%B3/" rel="tag">课题相关</a></li></ul>
</header>
<div class="e-content article-entry" itemprop="articleBody">
<div class="truncate-text">
十年的全基因组关联研究正在推进新的发现诞生——通过检测遗传突变,科学家将揭开疾病发生的根源,并为精准医疗铺平道路
原文标题:After a decade of genome-wide association studies, a new phase of discovery pushes on
原文副标题:By probing genetic variation, scientists continue to unearth the roots of disease and pave the way for precision medicine
译者:温继晨
追寻常见疾病的遗传根源,本质上是为了更好地预防与治疗疾病。由于我们无法得知疾病发生的根本原因,当今用于治疗常见疾病的药物遵从对症下药,而非针对发病根源。拿糖尿病举例,常见的治疗方式是使患者控制较低水平的血糖,但是这种方法无法解决导致胰岛素β细胞受损或胰岛素抵抗(胰岛素作用的靶器官对胰岛素作用的敏感性下降)的根本功能障碍。
通过研究揭示疾病的生物机制,进而发现常见遗传性疾病的基因根源,这种思路能够为准确识别患病风险较高的...
</div>
</div>
</div>
<a class="right-panel non-pic "
href="/2023/11/04/10yearsGWASbyBroadInstitute/"
>
<i class="fa-solid fa-angle-right non-pic"></i>
</a>
</div>
</article>
<article id="post-singularity_usage" class="h-entry article article-type-post" itemprop="blogPost" itemscope itemtype="https://schema.org/BlogPosting">
<div class="article-inner">
<div class="article-main">
<header class="article-header">
<div class="main-title-bar">
<div class="main-title-dot"></div>
<h1 itemprop="name">
<a class="p-name article-title" href="/2023/11/04/singularity_usage/">Singularity Usage</a>
</h1>
</div>
<div class='meta-info-bar'>
<div class="meta-info">
<time class="dt-published" datetime="2023-11-04T04:47:40.000Z" itemprop="datePublished">2023-11-04</time>
</div>
<div class="need-seperator meta-info">
<div class="meta-cate-flex">
<a class="meta-cate-link" href="/categories/%E5%AE%B9%E5%99%A8%E6%8A%80%E6%9C%AF/">容器技术</a>
</div>
</div>
<div class="wordcount need-seperator meta-info">
404 词
</div>
</div>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E8%BD%AF%E4%BB%B6%E4%BD%BF%E7%94%A8/" rel="tag">软件使用</a></li></ul>
</header>
<div class="e-content article-entry" itemprop="articleBody">
<div class="truncate-text">
Singularity Usage
官方文档:https://docs.sylabs.io/guides/3.2/user-guide/cli.html
简介
待施工
拉取外部容器
1singularity pull QTLtools.sif docker://naotokubota/qtltools
拉取外部容器后进行更改
待施工
运行容器
类命令行工具的运行容器
1singularity exec bind /pmaster/wencjien/sceQTL:/pmaster/wenjichen/sceQTL QTLtools.sif QTLtools pca --vcf 012/chr21.filter.vcf.gz --scale --center --distance 50000 --out pca/chr21.filter
交互式运行容器
1singularity shell QTLtools.sif
Rerference
Singularity日常使用
</div>
</div>
</div>
<a class="right-panel non-pic "
href="/2023/11/04/singularity_usage/"
>
<i class="fa-solid fa-angle-right non-pic"></i>
</a>
</div>
</article>
<article id="post-seqkit_usage" class="h-entry article article-type-post" itemprop="blogPost" itemscope itemtype="https://schema.org/BlogPosting">
<div class="article-inner">
<div class="article-main">
<header class="article-header">
<div class="main-title-bar">
<div class="main-title-dot"></div>
<h1 itemprop="name">
<a class="p-name article-title" href="/2023/10/16/seqkit_usage/">Seqkit Usage</a>
</h1>
</div>
<div class='meta-info-bar'>
<div class="meta-info">
<time class="dt-published" datetime="2023-10-15T19:07:08.000Z" itemprop="datePublished">2023-10-16</time>
</div>
<div class="need-seperator meta-info">
<div class="meta-cate-flex">
<a class="meta-cate-link" href="/categories/Biotools/">Biotools</a>
</div>
</div>
<div class="wordcount need-seperator meta-info">
9.4k 词
</div>
</div>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E8%BD%AF%E4%BB%B6%E4%BD%BF%E7%94%A8/" rel="tag">软件使用</a></li></ul>
</header>
<div class="e-content article-entry" itemprop="articleBody">
<div class="truncate-text">
seqkit usage
Repo直达 https://github.com/shenwei356/seqkit
Introduction
seqkit是重庆医科大学病毒性肝炎研究所副研究员沈伟老师基于Go语言开发的跨平台的、快速的、全面的fasta/q处理工具
Installation
1234# Generalconda install -c biconda seqkit# Alternative for macbrew install seqkit
Usage
Example file: AARS.lncRPI.bed
Description: AARS蛋白结合lncRNA位点信息
Source: POSTAR3 from LuLab@Tsinghua Univeristy
subseq
Get subsequences by region/gtf/bed, including flanking sequences.
Usage:
seqkit subseq [flags]
Flags:
–bed string by tab-delimit...
</div>
</div>
</div>
<a class="right-panel non-pic "
href="/2023/10/16/seqkit_usage/"
>
<i class="fa-solid fa-angle-right non-pic"></i>
</a>
</div>
</article>
<article id="post-GlobusConnectUsage" class="h-entry article article-type-post" itemprop="blogPost" itemscope itemtype="https://schema.org/BlogPosting">
<div class="article-inner">