-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.xml
2345 lines (1824 loc) · 187 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>Li's Bioinfo-Blog</title>
<link>https://lishensuo.github.io/</link>
<description>Recent content on Li's Bioinfo-Blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh-cn</language>
<lastBuildDate>Fri, 24 Jan 2025 00:00:00 +0000</lastBuildDate><atom:link href="https://lishensuo.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>统计学基础--统计描述指标与常见统计分布</title>
<link>https://lishensuo.github.io/posts/basic/001%E7%BB%9F%E8%AE%A1%E5%AD%A6%E5%9F%BA%E7%A1%80--%E7%BB%9F%E8%AE%A1%E6%8F%8F%E8%BF%B0%E6%8C%87%E6%A0%87%E4%B8%8E%E5%B8%B8%E8%A7%81%E7%BB%9F%E8%AE%A1%E5%88%86%E5%B8%83/</link>
<pubDate>Mon, 18 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/basic/001%E7%BB%9F%E8%AE%A1%E5%AD%A6%E5%9F%BA%E7%A1%80--%E7%BB%9F%E8%AE%A1%E6%8F%8F%E8%BF%B0%E6%8C%87%E6%A0%87%E4%B8%8E%E5%B8%B8%E8%A7%81%E7%BB%9F%E8%AE%A1%E5%88%86%E5%B8%83/</guid>
<description>统计的对象是数据,其中会涉及到不同类型的数据;统计的目的是描述,描述一组数据的分布特征、两组至多组数据之间的关系。 1、数据分类 根据数据特点,</description>
</item>
<item>
<title>Python基础-(1)初识</title>
<link>https://lishensuo.github.io/posts/program/001python%E5%9F%BA%E7%A1%80-1%E5%88%9D%E8%AF%86/</link>
<pubDate>Sun, 10 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/001python%E5%9F%BA%E7%A1%80-1%E5%88%9D%E8%AF%86/</guid>
<description>print()打印 1 2 3 4 5 6 7 8 print(&#34;Hello, world!&#34;) #打印多个字符串,默认用空格链接 print(&#34;A&#34;, &#34;B&#34;, &#34;C&#34;) print(&#34;A&#34;, &#34;B&#34;, &#34;C&#34;,sep=&#34;,&#34;) #`+`可直接拼接字符串 print(&#34;A&#34;+&#34;B&#34;,&#34;C&#34;) #AB C input()取用户输入 1 2</description>
</item>
<item>
<title>统计学基础--以T检验为例学习基于中心极限定理的假设检验</title>
<link>https://lishensuo.github.io/posts/basic/002%E7%BB%9F%E8%AE%A1%E5%AD%A6%E5%9F%BA%E7%A1%80--%E4%BB%A5t%E6%A3%80%E9%AA%8C%E4%B8%BA%E4%BE%8B%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8E%E4%B8%AD%E5%BF%83%E6%9E%81%E9%99%90%E5%AE%9A%E7%90%86%E7%9A%84%E5%81%87%E8%AE%BE%E6%A3%80%E9%AA%8C/</link>
<pubDate>Tue, 10 May 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/basic/002%E7%BB%9F%E8%AE%A1%E5%AD%A6%E5%9F%BA%E7%A1%80--%E4%BB%A5t%E6%A3%80%E9%AA%8C%E4%B8%BA%E4%BE%8B%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8E%E4%B8%AD%E5%BF%83%E6%9E%81%E9%99%90%E5%AE%9A%E7%90%86%E7%9A%84%E5%81%87%E8%AE%BE%E6%A3%80%E9%AA%8C/</guid>
<description>统计学常用样本数据推断总体结果,或者说使用样本统计量推断总体参数。包含如下意义: (1)对于样本数据,根据问题的不同,会有不同的形式。例如单纯</description>
</item>
<item>
<title>conda环境下载管理软件、R包</title>
<link>https://lishensuo.github.io/posts/bioinfo/002conda%E7%8E%AF%E5%A2%83%E4%B8%8B%E8%BD%BD%E7%AE%A1%E7%90%86%E8%BD%AF%E4%BB%B6r%E5%8C%85/</link>
<pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/002conda%E7%8E%AF%E5%A2%83%E4%B8%8B%E8%BD%BD%E7%AE%A1%E7%90%86%E8%BD%AF%E4%BB%B6r%E5%8C%85/</guid>
<description>conda开源包管理系统和环境管理系统 ,包括多种语言的包安装,运行,更新,删除,最重要的是可以解决包依赖问题。在做生信分析时,感觉就是一个软</description>
</item>
<item>
<title>Python基础-(2)列表、元组、字符串、字典</title>
<link>https://lishensuo.github.io/posts/program/002python%E5%9F%BA%E7%A1%80-2%E5%88%97%E8%A1%A8%E5%85%83%E7%BB%84%E5%AD%97%E7%AC%A6%E4%B8%B2%E5%AD%97%E5%85%B8/</link>
<pubDate>Sun, 10 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/002python%E5%9F%BA%E7%A1%80-2%E5%88%97%E8%A1%A8%E5%85%83%E7%BB%84%E5%AD%97%E7%AC%A6%E4%B8%B2%E5%AD%97%E5%85%B8/</guid>
<description>关于序列 序列:有顺序的元素排列;第一个元素的索引为0 列表list,元组tuple,字符串str都属于序列;但一般情况下,只有list可修改,</description>
</item>
<item>
<title>统计学基础--方差分析与卡方检验</title>
<link>https://lishensuo.github.io/posts/basic/003%E7%BB%9F%E8%AE%A1%E5%AD%A6%E5%9F%BA%E7%A1%80--%E6%96%B9%E5%B7%AE%E5%88%86%E6%9E%90%E4%B8%8E%E5%8D%A1%E6%96%B9%E6%A3%80%E9%AA%8C/</link>
<pubDate>Fri, 13 May 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/basic/003%E7%BB%9F%E8%AE%A1%E5%AD%A6%E5%9F%BA%E7%A1%80--%E6%96%B9%E5%B7%AE%E5%88%86%E6%9E%90%E4%B8%8E%E5%8D%A1%E6%96%B9%E6%A3%80%E9%AA%8C/</guid>
<description>方差分析(analysis of variance)可以简单的理解为多组间的均值比较。例如A班、B班、C班、D班的考试成绩均值是否存在显著差异。方</description>
</item>
<item>
<title>Python基础-(3)条件与循环语句</title>
<link>https://lishensuo.github.io/posts/program/003python%E5%9F%BA%E7%A1%80-3%E6%9D%A1%E4%BB%B6%E4%B8%8E%E5%BE%AA%E7%8E%AF%E8%AF%AD%E5%8F%A5/</link>
<pubDate>Sun, 10 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/003python%E5%9F%BA%E7%A1%80-3%E6%9D%A1%E4%BB%B6%E4%B8%8E%E5%BE%AA%E7%8E%AF%E8%AF%AD%E5%8F%A5/</guid>
<description>一、条件语句 1、布尔值 在python中,这些值均为视为假:False, None, 0, '',(), [], {}。其余所有可能的值都视为真 1 2 3 4 5 6 7 bool(None) # False bool(&#39;&#39;) # False bool(&#34;anything&#34;) # True</description>
</item>
<item>
<title>统计学基础--相关性与一致性</title>
<link>https://lishensuo.github.io/posts/basic/004%E7%BB%9F%E8%AE%A1%E5%AD%A6%E5%9F%BA%E7%A1%80--%E7%9B%B8%E5%85%B3%E6%80%A7%E4%B8%8E%E4%B8%80%E8%87%B4%E6%80%A7/</link>
<pubDate>Thu, 02 Jun 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/basic/004%E7%BB%9F%E8%AE%A1%E5%AD%A6%E5%9F%BA%E7%A1%80--%E7%9B%B8%E5%85%B3%E6%80%A7%E4%B8%8E%E4%B8%80%E8%87%B4%E6%80%A7/</guid>
<description>一、相关性 1、线性相关系数 (1)线性相关系数用于描述多个样本数据中两个变量之间的线性相关的程度。 变量通常为连续型变量; 两个变量一般为描述样本</description>
</item>
<item>
<title>服务器外网文件传输--奶牛快传、阿里云盘</title>
<link>https://lishensuo.github.io/posts/bioinfo/004%E6%9C%8D%E5%8A%A1%E5%99%A8%E5%A4%96%E7%BD%91%E6%96%87%E4%BB%B6%E4%BC%A0%E8%BE%93--%E5%A5%B6%E7%89%9B%E5%BF%AB%E4%BC%A0%E9%98%BF%E9%87%8C%E4%BA%91%E7%9B%98/</link>
<pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/004%E6%9C%8D%E5%8A%A1%E5%99%A8%E5%A4%96%E7%BD%91%E6%96%87%E4%BB%B6%E4%BC%A0%E8%BE%93--%E5%A5%B6%E7%89%9B%E5%BF%AB%E4%BC%A0%E9%98%BF%E9%87%8C%E4%BA%91%E7%9B%98/</guid>
<description>1、奶牛快传 (1) linux服务器安装 https://github.com/Mikubill/cowtransfer-uploader/releases 选择一个最新的linux版本下载(如果wget下载太慢,就下载的本地电脑,再上传到linux) 解压即用 1</description>
</item>
<item>
<title>Python基础-(4)函数Function</title>
<link>https://lishensuo.github.io/posts/program/004python%E5%9F%BA%E7%A1%80-4%E5%87%BD%E6%95%B0function/</link>
<pubDate>Sun, 10 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/004python%E5%9F%BA%E7%A1%80-4%E5%87%BD%E6%95%B0function/</guid>
<description>1、定义函数 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 # def语句定义函数 def hello(name): print(&#34;Hello,&#34;, name) # 添加return语句有两个作用 ## (1) 表示函数的结束 ## (2)</description>
</item>
<item>
<title>统计学基础--二分类模型评价指标</title>
<link>https://lishensuo.github.io/posts/basic/005%E7%BB%9F%E8%AE%A1%E5%AD%A6%E5%9F%BA%E7%A1%80--%E4%BA%8C%E5%88%86%E7%B1%BB%E6%A8%A1%E5%9E%8B%E8%AF%84%E4%BB%B7%E6%8C%87%E6%A0%87/</link>
<pubDate>Thu, 09 Jun 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/basic/005%E7%BB%9F%E8%AE%A1%E5%AD%A6%E5%9F%BA%E7%A1%80--%E4%BA%8C%E5%88%86%E7%B1%BB%E6%A8%A1%E5%9E%8B%E8%AF%84%E4%BB%B7%E6%8C%87%E6%A0%87/</guid>
<description>1、混淆矩阵相关指标 假设某医生对100个挂号的人进行某疾病的判断,具体情况如下 前提已知这100人的真实患病情况:60人患病,40人健康 医生根</description>
</item>
<item>
<title>单细胞分析工具--cellranger</title>
<link>https://lishensuo.github.io/posts/bioinfo/005%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--cellranger%E6%AF%94%E5%AF%B9/</link>
<pubDate>Tue, 24 May 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/005%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--cellranger%E6%AF%94%E5%AF%B9/</guid>
<description>单细胞转录组测序技术历经10余年的发展,目前以高通量的Droplet技术广为应用。其中以10X Genomics公司开发的实验及分析系统最为流</description>
</item>
<item>
<title>Python基础-(5)类Class与实例Instance</title>
<link>https://lishensuo.github.io/posts/program/005python%E5%9F%BA%E7%A1%80-5%E7%B1%BBclass%E4%B8%8E%E5%AE%9E%E4%BE%8Binstance/</link>
<pubDate>Sun, 10 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/005python%E5%9F%BA%E7%A1%80-5%E7%B1%BBclass%E4%B8%8E%E5%AE%9E%E4%BE%8Binstance/</guid>
<description>面向对象的设计思想是抽象出Class(类),根据Class创建Instance(实例)。 类是一个相对抽象的概念,而实例是其具体化。例如将学生</description>
</item>
<item>
<title>统计学基础--重抽样Bootstrap与置换检验permutation test</title>
<link>https://lishensuo.github.io/posts/basic/006%E7%BB%9F%E8%AE%A1%E5%AD%A6%E5%9F%BA%E7%A1%80--%E9%87%8D%E6%8A%BD%E6%A0%B7bootstrap%E4%B8%8E%E7%BD%AE%E6%8D%A2%E6%A3%80%E9%AA%8Cpermutation-test/</link>
<pubDate>Sun, 10 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/basic/006%E7%BB%9F%E8%AE%A1%E5%AD%A6%E5%9F%BA%E7%A1%80--%E9%87%8D%E6%8A%BD%E6%A0%B7bootstrap%E4%B8%8E%E7%BD%AE%E6%8D%A2%E6%A3%80%E9%AA%8Cpermutation-test/</guid>
<description>重抽样本质上是从观测数据中反复抽取数据,有两种不同用法 1、Bootstrap (1)Bootstrap的核心是有放回的抽样,常用于估计统计量(</description>
</item>
<item>
<title>单细胞分析工具--Seurat4基础流程</title>
<link>https://lishensuo.github.io/posts/bioinfo/006%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--seurat4%E5%9F%BA%E7%A1%80%E6%B5%81%E7%A8%8B/</link>
<pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/006%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--seurat4%E5%9F%BA%E7%A1%80%E6%B5%81%E7%A8%8B/</guid>
<description>1 2 3 4 5 6 packageVersion(&#34;Seurat&#34;) # [1] ‘4.0.6’ library(Seurat) library(tidyverse) library(ggplot2) library(clustree) 0、导入数据方式 (1)cellranger比对结果 对每个测序样本数据经cellranger上游比对,</description>
</item>
<item>
<title>Python基础-(6)捕捉异常Error</title>
<link>https://lishensuo.github.io/posts/program/006python%E5%9F%BA%E7%A1%80-6%E5%BC%82%E5%B8%B8error/</link>
<pubDate>Sun, 10 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/006python%E5%9F%BA%E7%A1%80-6%E5%BC%82%E5%B8%B8error/</guid>
<description>1、什么是异常 异常通常是指因各种原因的出错程序代码不能正常运行,从而返回报错信息,中断程序。 报错信息由两部分组成(1)Traceback:追</description>
</item>
<item>
<title>统计学-生信中常见统计指标</title>
<link>https://lishensuo.github.io/posts/basic/010%E7%BB%9F%E8%AE%A1%E5%AD%A6--%E7%94%9F%E4%BF%A1%E4%B8%AD%E5%B8%B8%E8%A7%81%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87/</link>
<pubDate>Sun, 10 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/basic/010%E7%BB%9F%E8%AE%A1%E5%AD%A6--%E7%94%9F%E4%BF%A1%E4%B8%AD%E5%B8%B8%E8%A7%81%E7%BB%9F%E8%AE%A1%E6%8C%87%E6%A0%87/</guid>
<description>1、KS统计量 Kolmogorov-Smirnov Tests Gene Set Enrichment Analysis https://github.com/franapoli/signed-ks-test 1 2 3 4 5 6 7 8 9 10 11 12 13 source(&#34;signed-ks-test.R&#34;) # c(&#34;two.sided&#34;, &#34;less&#34;, &#34;greater&#34;) ks = ks.test.2(c(2,10,11,20), 1:100, alternative = &#34;greater&#34;) # Two-sample Kolmogorov-Smirnov test # data: c(2, 10, 11, 20) and 1:100 # D^+ = 0.8, p-value = 0.007277 # alternative hypothesis: the CDF of x lies above that of y</description>
</item>
<item>
<title>Python基础-(7)模块/包Module</title>
<link>https://lishensuo.github.io/posts/program/007python%E5%9F%BA%E7%A1%80-7%E6%A8%A1%E5%9D%97%E5%9F%BA%E7%A1%80module/</link>
<pubDate>Sun, 10 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/007python%E5%9F%BA%E7%A1%80-7%E6%A8%A1%E5%9D%97%E5%9F%BA%E7%A1%80module/</guid>
<description>1、加载模块 模块简单来说是用来定义函数、类、变量的python脚本文件。 模块的分类 根据来源不同:可分为内置模块、第三方模块以及自建模块。 无论</description>
</item>
<item>
<title>Python基础-(8)常用基础模块Module</title>
<link>https://lishensuo.github.io/posts/program/008python%E5%9F%BA%E7%A1%80-8%E5%B8%B8%E7%94%A8%E5%86%85%E7%BD%AE%E6%A8%A1%E5%9D%97module/</link>
<pubDate>Sun, 17 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/008python%E5%9F%BA%E7%A1%80-8%E5%B8%B8%E7%94%A8%E5%86%85%E7%BD%AE%E6%A8%A1%E5%9D%97module/</guid>
<description>1. sys 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ##(1) sys.argv 给脚本传参 #如下定义一个sys.py脚本 #!/usr/bin/env python import sys print(sys.argv[0]) #第0个参数为脚本名 print(sys.argv[1]) python sys.py first # sys.py # first ##(2) sys.path 一个列表,包</description>
</item>
<item>
<title>单细胞分析工具--monocle轨迹分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/008%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--monocle%E8%BD%A8%E8%BF%B9%E5%88%86%E6%9E%90/</link>
<pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/008%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--monocle%E8%BD%A8%E8%BF%B9%E5%88%86%E6%9E%90/</guid>
<description>一、monocle 参考教程/笔记 (1)http://cole-trapnell-lab.github.io/monocle-release/</description>
</item>
<item>
<title>Python基础-(9)文本读写与pickle保存</title>
<link>https://lishensuo.github.io/posts/program/009python%E5%9F%BA%E7%A1%80-9%E6%96%87%E6%9C%AC%E8%AF%BB%E5%86%99%E4%B8%8Epickle%E4%BF%9D%E5%AD%98/</link>
<pubDate>Sun, 17 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/009python%E5%9F%BA%E7%A1%80-9%E6%96%87%E6%9C%AC%E8%AF%BB%E5%86%99%E4%B8%8Epickle%E4%BF%9D%E5%AD%98/</guid>
<description>1、打开文件 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 ## (1) r 只能读取。若文件不存在,会报错。 f = open(&#34;test.txt&#34;, &#34;r&#34;) #由于默认mode=&#34;r&#34;, 等</description>
</item>
<item>
<title>单细胞分析工具--CellChat细胞通讯分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/009%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--cellchat%E7%BB%86%E8%83%9E%E9%80%9A%E8%AE%AF%E5%88%86%E6%9E%90/</link>
<pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/009%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--cellchat%E7%BB%86%E8%83%9E%E9%80%9A%E8%AE%AF%E5%88%86%E6%9E%90/</guid>
<description>主要参考资料: 1、https://htmlpreview.github.io/?https://github.com/sqjin/CellC</description>
</item>
<item>
<title>Python-Dunder双下划线特殊方法</title>
<link>https://lishensuo.github.io/posts/program/010python-dunder%E5%8F%8C%E4%B8%8B%E5%88%92%E7%BA%BF%E7%89%B9%E6%AE%8A%E6%96%B9%E6%B3%95/</link>
<pubDate>Wed, 16 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/010python-dunder%E5%8F%8C%E4%B8%8B%E5%88%92%E7%BA%BF%E7%89%B9%E6%AE%8A%E6%96%B9%E6%B3%95/</guid>
<description>特殊类变量 在定义类时,Python 提供了一些特殊方法(也称为“魔术方法”或“dunder 方法”,因为它们的名称前后都有双下划线 __, double under</description>
</item>
<item>
<title>单细胞分析工具--pySCENIC转录因子分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/010%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--%E8%BD%AC%E5%BD%95%E5%9B%A0%E5%AD%90pyscenic/</link>
<pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/010%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--%E8%BD%AC%E5%BD%95%E5%9B%A0%E5%AD%90pyscenic/</guid>
<description>SCENIC全称Single-Cell rEgulatory Network Inference and Clustering,即转录因子分析,用于构建GRN,gene regulatory network基因调控网络。2</description>
</item>
<item>
<title>Python-装饰器Decorator</title>
<link>https://lishensuo.github.io/posts/program/011python-%E8%A3%85%E9%A5%B0%E5%99%A8decorator/</link>
<pubDate>Wed, 16 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/011python-%E8%A3%85%E9%A5%B0%E5%99%A8decorator/</guid>
<description>在 Python 中,装饰器(decorator)是一种特殊的函数或类,用于在不修改原始代码的情况下,动态地修改或增强函数、方法或类的行为。 函数:独立的代</description>
</item>
<item>
<title>单细胞分析工具--Palantir轨迹分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/011%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--palantir%E8%BD%A8%E8%BF%B9%E5%88%86%E6%9E%90-/</link>
<pubDate>Thu, 12 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/011%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--palantir%E8%BD%A8%E8%BF%B9%E5%88%86%E6%9E%90-/</guid>
<description>Paper:https://www.nature.com/articles/s41587-019-0068-4 github:https://</description>
</item>
<item>
<title>Python-tdigest分位数统计</title>
<link>https://lishensuo.github.io/posts/program/012python-tdigest%E5%88%86%E4%BD%8D%E6%95%B0%E7%BB%9F%E8%AE%A1/</link>
<pubDate>Thu, 23 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/012python-tdigest%E5%88%86%E4%BD%8D%E6%95%B0%E7%BB%9F%E8%AE%A1/</guid>
<description>tdigest python工具 是一种用于高效计算近似分位数的数据结构和算法。相较于传统的分位数计算方法,tdigest可以实现以较小的内存开销和较快的计</description>
</item>
<item>
<title>使用Seurat包分析空间转录组数据</title>
<link>https://lishensuo.github.io/posts/bioinfo/015%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--seurat%E7%A9%BA%E9%97%B4%E8%BD%AC%E5%BD%95%E7%BB%84/</link>
<pubDate>Sun, 05 Jun 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/015%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--seurat%E7%A9%BA%E9%97%B4%E8%BD%AC%E5%BD%95%E7%BB%84/</guid>
<description>单细胞数据分析常用的Seurat包也集成了空间转录组的分析流程。 https://satijalab.org/seurat/articles/</description>
</item>
<item>
<title>单细胞分析工具--hdWGCNA共表达网络</title>
<link>https://lishensuo.github.io/posts/bioinfo/016%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--hdwgcna%E5%85%B1%E8%A1%A8%E8%BE%BE%E7%BD%91%E7%BB%9C/</link>
<pubDate>Thu, 07 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/016%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--hdwgcna%E5%85%B1%E8%A1%A8%E8%BE%BE%E7%BD%91%E7%BB%9C/</guid>
<description>WGCNA是适用于大批量样本的array或者Bulk RNAseq数据的加权基因共表达网络分析。由于单细胞数据的稀疏性,不适用于WGCNA直接</description>
</item>
<item>
<title>单细胞分析工具--ECAUGT提取hECA数据</title>
<link>https://lishensuo.github.io/posts/bioinfo/017%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--ecaugt%E6%8F%90%E5%8F%96heca%E6%95%B0%E6%8D%AE/</link>
<pubDate>Thu, 19 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/017%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--ecaugt%E6%8F%90%E5%8F%96heca%E6%95%B0%E6%8D%AE/</guid>
<description>基于先前的hECA文献笔记,学习使用python工具ECAUGHT高效提取特定类型的人类单细胞图谱数据。值得注意的是hECA对不同来源数据集</description>
</item>
<item>
<title>Python-lambda函数表达式</title>
<link>https://lishensuo.github.io/posts/program/015python-lambda%E5%87%BD%E6%95%B0%E8%A1%A8%E8%BE%BE%E5%BC%8F/</link>
<pubDate>Sat, 17 Sep 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/015python-lambda%E5%87%BD%E6%95%B0%E8%A1%A8%E8%BE%BE%E5%BC%8F/</guid>
<description>lambda表达式可用于定义简单的一行式函数,并且可搭配其它函数时有多种衍生用法。 https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.apply.html https://www.learncodewithmike.com/2019/12/python-lambda-functions.html https://pythonviz.com/pandas/3-ways-to-use-pandas-apply-in-python/ 1、基础用法 如下所示,lambda表达式有3个组分 关</description>
</item>
<item>
<title>单细胞分析工具--细胞周期分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/020%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--%E7%BB%86%E8%83%9E%E5%91%A8%E6%9C%9F%E5%88%86%E6%9E%90/</link>
<pubDate>Sun, 22 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/020%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--%E7%BB%86%E8%83%9E%E5%91%A8%E6%9C%9F%E5%88%86%E6%9E%90/</guid>
<description>A cell cycle is a series of events that takes place in a cell as it grows and divides.即描述细胞生长、分裂整个过程中细胞变化过程。最重要的两个特点就是DNA复制、分裂成两个一</description>
</item>
<item>
<title>Python-threading多线程</title>
<link>https://lishensuo.github.io/posts/program/016python-threading%E5%A4%9A%E7%BA%BF%E7%A8%8B/</link>
<pubDate>Mon, 19 Sep 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/016python-threading%E5%A4%9A%E7%BA%BF%E7%A8%8B/</guid>
<description>python内置的threading模块可以实现多任务的多线程并行处理,如下简单记录一下用法。 参考链接 https://zhuanlan.zhihu.com/p/34004179 https://www.runoob.com/python3/python3-multithreading.html 1、threading 1 2 3 4 5 6</description>
</item>
<item>
<title>单细胞分析工具--多样本批次校正</title>
<link>https://lishensuo.github.io/posts/bioinfo/021%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--%E5%A4%9A%E6%A0%B7%E6%9C%AC%E6%89%B9%E6%AC%A1%E6%A0%A1%E6%AD%A3/</link>
<pubDate>Sun, 22 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/021%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--%E5%A4%9A%E6%A0%B7%E6%9C%AC%E6%89%B9%E6%AC%A1%E6%A0%A1%E6%AD%A3/</guid>
<description>当分析多个样本的单细胞数据集时,其中重要的一步是判断并校正潜在的批次效应。如下简单学习两种单细胞批次效应分析方法,分别基于Seurat与ha</description>
</item>
<item>
<title>单细胞分析工具--SingleCellExperiment对象格式</title>
<link>https://lishensuo.github.io/posts/bioinfo/022%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--singlecellexperiment%E5%AF%B9%E8%B1%A1%E6%A0%BC%E5%BC%8F/</link>
<pubDate>Sun, 22 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/022%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--singlecellexperiment%E5%AF%B9%E8%B1%A1%E6%A0%BC%E5%BC%8F/</guid>
<description>SingleCellExperiment是通过SingleCellExperiment包创建的单细胞数据分析对象,已有几十个单细胞R包支持。</description>
</item>
<item>
<title>单细胞分析工具--infercnv拷贝数变异鉴定</title>
<link>https://lishensuo.github.io/posts/bioinfo/018%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--infercnv%E6%8B%B7%E8%B4%9D%E6%95%B0%E5%8F%98%E5%BC%82%E9%89%B4%E5%AE%9A/</link>
<pubDate>Fri, 20 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/018%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--infercnv%E6%8B%B7%E8%B4%9D%E6%95%B0%E5%8F%98%E5%BC%82%E9%89%B4%E5%AE%9A/</guid>
<description>inferCNV包可根据肿瘤组织相关的单细胞表达数据,推测肿瘤细胞的拷贝数变异情况,从而完成恶性细胞的鉴定。 1 2 3 BiocManager::install(&#34;infercnv&#34;) library(infercnv) # 暂时在window安</description>
</item>
<item>
<title>单细胞分析工具--scanpy基础用法(anndata,loom格式)</title>
<link>https://lishensuo.github.io/posts/bioinfo/023%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--scanpy%E5%9F%BA%E7%A1%80%E7%94%A8%E6%B3%95/</link>
<pubDate>Mon, 23 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/023%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--scanpy%E5%9F%BA%E7%A1%80%E7%94%A8%E6%B3%95/</guid>
<description>scanpy是单细胞数据分析的python工具包,将数据以Anndata对象的格式进行储存。如下将学习Anndata对象操作以及scanpy</description>
</item>
<item>
<title>单细胞分析工具--SingleR细胞类型注释</title>
<link>https://lishensuo.github.io/posts/bioinfo/019%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--singler%E7%BB%86%E8%83%9E%E7%B1%BB%E5%9E%8B%E6%B3%A8%E9%87%8A/</link>
<pubDate>Fri, 20 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/019%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--singler%E7%BB%86%E8%83%9E%E7%B1%BB%E5%9E%8B%E6%B3%A8%E9%87%8A/</guid>
<description>SingleR包是在单细胞数据分析时用于细胞类型自动注释的常用工具。其基本原理是使用已有细胞标签的参考转录组数据集的表达谱,基于相似性原则注</description>
</item>
<item>
<title>单细胞分析工具--RNAvelocity速率分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/024%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--rnavelocity%E9%80%9F%E7%8E%87%E5%88%86%E6%9E%90/</link>
<pubDate>Thu, 26 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/024%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--rnavelocity%E9%80%9F%E7%8E%87%E5%88%86%E6%9E%90/</guid>
<description>RNA velocity(RNA速率)分析是基于单细胞转录组测序数据分析细胞发育状态动力学的方法。简单来说,该模型根据测序read片段属于unsp</description>
</item>
<item>
<title>Python数据科学-(1)IPython的特点</title>
<link>https://lishensuo.github.io/posts/program/020python%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6-ipython%E9%AD%94%E6%B3%95%E5%91%BD%E4%BB%A4/</link>
<pubDate>Tue, 26 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/020python%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6-ipython%E9%AD%94%E6%B3%95%E5%91%BD%E4%BB%A4/</guid>
<description>Python有不少解释器,默认使用的是CPython。而IPython,interactive python可以提供交互式开发环境;是Jupy</description>
</item>
<item>
<title>单细胞分析工具--CytoTRACE轨迹分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/025%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--cytotrace%E8%BD%A8%E8%BF%B9%E5%88%86%E6%9E%90/</link>
<pubDate>Thu, 26 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/025%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--cytotrace%E8%BD%A8%E8%BF%B9%E5%88%86%E6%9E%90/</guid>
<description>CytoTRACE是根据单细胞表达矩阵推断细胞分化轨迹的工具,目前提供网页端与R包两种形式。如下。简单学习其R包用法。 官方手册:https:</description>
</item>
<item>
<title>Python数据科学-(2)Numpy数组(torch张量)</title>
<link>https://lishensuo.github.io/posts/program/021python%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6-numpy%E6%95%B0%E7%BB%84torch%E5%BC%A0%E9%87%8F/</link>
<pubDate>Fri, 29 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/021python%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6-numpy%E6%95%B0%E7%BB%84torch%E5%BC%A0%E9%87%8F/</guid>
<description>NumPy,Numerical Python创建的ndarray数组在某些方面与Python中的list对象很相似;但是二者还是很多区别,比如数据类型一致性的要求、维度等</description>
</item>
<item>
<title>单细胞分析工具--cellphonedb细胞通讯分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/026%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--cellphonedb%E7%BB%86%E8%83%9E%E9%80%9A%E8%AE%AF%E5%88%86%E6%9E%90/</link>
<pubDate>Sat, 28 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/026%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--cellphonedb%E7%BB%86%E8%83%9E%E9%80%9A%E8%AE%AF%E5%88%86%E6%9E%90/</guid>
<description>cellphonedb是基于配受体对表达水平,分析单细胞数据中不同细胞类型间相互作用的Python工具。其于2020年在nature prot</description>
</item>
<item>
<title>Python数据科学-(3)Pandas表格</title>
<link>https://lishensuo.github.io/posts/program/022python%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6-pandas%E8%A1%A8%E6%A0%BC/</link>
<pubDate>Tue, 03 May 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/022python%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6-pandas%E8%A1%A8%E6%A0%BC/</guid>
<description>Pandas相比Numpy数组支持行列标签、多种数据类型,类似R语言中data.frame数据框。 1、Pandas结构 1.1 Series:有索引</description>
</item>
<item>
<title>单细胞分析工具--DoubletFinder识别双细胞</title>
<link>https://lishensuo.github.io/posts/bioinfo/027%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--doubletfinder%E8%AF%86%E5%88%AB%E5%8F%8C%E7%BB%86%E8%83%9E/</link>
<pubDate>Sat, 28 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/027%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--doubletfinder%E8%AF%86%E5%88%AB%E5%8F%8C%E7%BB%86%E8%83%9E/</guid>
<description>R包DoubletFinder可用于检测基于Droplet单细胞测序技术(10X)的双细胞。如下简单学习识别原理以用法。 原始论文:https</description>
</item>
<item>
<title>Python数据科学-(4)Matplotlib可视化</title>
<link>https://lishensuo.github.io/posts/program/023python%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6-matplotlib%E5%8F%AF%E8%A7%86%E5%8C%96/</link>
<pubDate>Thu, 19 May 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/023python%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6-matplotlib%E5%8F%AF%E8%A7%86%E5%8C%96/</guid>
<description>1、启动方式 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 import matplotlib.pyplot as plt %matplotlib inline import numpy as np ##(1)在普通python解释器/python脚本中 x = np.linspace(0,10,100) plt.plot(x, np.sin(x), &#39;-&#39;) plt.show() ##</description>
</item>
<item>
<title>单细胞分析工具--MAST差异基因分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/030%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--mast%E5%B7%AE%E5%BC%82%E5%9F%BA%E5%9B%A0%E5%88%86%E6%9E%90/</link>
<pubDate>Fri, 10 Feb 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/030%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--mast%E5%B7%AE%E5%BC%82%E5%9F%BA%E5%9B%A0%E5%88%86%E6%9E%90/</guid>
<description>MAST,全称Model-based Analysis of Single-cell Transcriptomics,是2015年于Genome Biology发表的R包工具,主要用于单</description>
</item>
<item>
<title>单细胞分析工具--Scissor表型相关亚群鉴定</title>
<link>https://lishensuo.github.io/posts/bioinfo/031%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--scissor%E8%A1%A8%E5%9E%8B%E7%9B%B8%E5%85%B3%E4%BA%9A%E7%BE%A4%E9%89%B4%E5%AE%9A/</link>
<pubDate>Sun, 19 Feb 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/031%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--scissor%E8%A1%A8%E5%9E%8B%E7%9B%B8%E5%85%B3%E4%BA%9A%E7%BE%A4%E9%89%B4%E5%AE%9A/</guid>
<description>Scissor是2022年发表在Nature Biotechnology的一个单细胞数据分析工具包。该包通过纳入Bulk表达与表型数据,试图分</description>
</item>
<item>
<title>单细胞分析工具--MARVEL单细胞可变剪切</title>
<link>https://lishensuo.github.io/posts/bioinfo/032%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--marvel%E5%8D%95%E7%BB%86%E8%83%9E%E5%8F%AF%E5%8F%98%E5%89%AA%E5%88%87/</link>
<pubDate>Mon, 06 Mar 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/032%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--marvel%E5%8D%95%E7%BB%86%E8%83%9E%E5%8F%AF%E5%8F%98%E5%89%AA%E5%88%87/</guid>
<description>R包MARVEL是由牛津大学MRC Weatherall分子医学研究所团队开发的,用于分析单细胞水平的可变剪切事件。相关文章于2023年1月在</description>
</item>
<item>
<title>单细胞分析工具--scCustomize包改进Seurat可视化</title>
<link>https://lishensuo.github.io/posts/bioinfo/033%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--sccustomize%E5%8C%85%E6%94%B9%E8%BF%9Bseurat%E5%8F%AF%E8%A7%86%E5%8C%96/</link>
<pubDate>Sat, 11 Mar 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/033%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--sccustomize%E5%8C%85%E6%94%B9%E8%BF%9Bseurat%E5%8F%AF%E8%A7%86%E5%8C%96/</guid>
<description>scCustomize包由来自波士顿儿童医院/哈佛医学院的博士后Samuel E. Marsh编写。该包基于Seurat,提供了若干便捷、高效的可</description>
</item>
<item>
<title>单细胞分析工具--Asgard单细胞药物重定向</title>
<link>https://lishensuo.github.io/posts/bioinfo/034%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--asgard%E5%8D%95%E7%BB%86%E8%83%9E%E8%8D%AF%E7%89%A9%E9%87%8D%E5%AE%9A%E5%90%91/</link>
<pubDate>Sat, 18 Mar 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/034%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--asgard%E5%8D%95%E7%BB%86%E8%83%9E%E8%8D%AF%E7%89%A9%E9%87%8D%E5%AE%9A%E5%90%91/</guid>
<description>来自密歇根大学医学院的计算医学与生物信息学部的LanaX.Garmire(拉娜·加米尔)团队近日于Nature Communication发表</description>
</item>
<item>
<title>单细胞分析工具--基于文献的细胞类型注释marker</title>
<link>https://lishensuo.github.io/posts/bioinfo/028%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--%E5%9F%BA%E4%BA%8E%E6%96%87%E7%8C%AE%E7%9A%84%E7%BB%86%E8%83%9E%E7%B1%BB%E5%9E%8B%E6%B3%A8%E9%87%8Amarker/</link>
<pubDate>Tue, 07 Feb 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/028%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--%E5%9F%BA%E4%BA%8E%E6%96%87%E7%8C%AE%E7%9A%84%E7%BB%86%E8%83%9E%E7%B1%BB%E5%9E%8B%E6%B3%A8%E9%87%8Amarker/</guid>
<description>根据平时的文献阅读,汇总前人注释单细胞数据的细胞类型所使用的marker gene,以供后续研究参考。(持续更新) 1、Tumor B cell:C</description>
</item>
<item>
<title>单细胞分析工具--scSTAR挖掘分组样本细胞亚型</title>
<link>https://lishensuo.github.io/posts/bioinfo/035%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--scstar%E6%8C%96%E6%8E%98%E5%88%86%E7%BB%84%E6%A0%B7%E6%9C%AC%E7%BB%86%E8%83%9E%E4%BA%9A%E5%9E%8B/</link>
<pubDate>Mon, 17 Apr 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/035%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--scstar%E6%8C%96%E6%8E%98%E5%88%86%E7%BB%84%E6%A0%B7%E6%9C%AC%E7%BB%86%E8%83%9E%E4%BA%9A%E5%9E%8B/</guid>
<description>scSTAR是由复旦大学附属中山医院郝洁研究员等人开发的单细胞分析工具包,于2023年2月发表在Briefings in Bioinformati</description>
</item>
<item>
<title>单细胞分析工具--NicheNet细胞通讯分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/029%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--nichenet%E7%BB%86%E8%83%9E%E9%80%9A%E8%AE%AF%E5%88%86%E6%9E%90/</link>
<pubDate>Thu, 09 Feb 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/029%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--nichenet%E7%BB%86%E8%83%9E%E9%80%9A%E8%AE%AF%E5%88%86%E6%9E%90/</guid>
<description>原始论文:https://www.nature.com/articles/s41592-019-0667-5 官方手册:https://git</description>
</item>
<item>
<title>单细胞分析工具--celldancer细胞速率分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/036%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--celldancer%E7%BB%86%E8%83%9E%E9%80%9F%E7%8E%87%E5%88%86%E6%9E%90/</link>
<pubDate>Sat, 22 Apr 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/036%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--celldancer%E7%BB%86%E8%83%9E%E9%80%9F%E7%8E%87%E5%88%86%E6%9E%90/</guid>
<description>cellDancer是美国休斯顿卫理公会研究所的助理教授Guangyu Wang团队开发的RNA速率分析新工具,于2023年4月发表于natu</description>
</item>
<item>
<title>Python-可视化-pandas绘图</title>
<link>https://lishensuo.github.io/posts/program/030python-%E5%8F%AF%E8%A7%86%E5%8C%96-pandas%E7%BB%98%E5%9B%BE/</link>
<pubDate>Sat, 30 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/030python-%E5%8F%AF%E8%A7%86%E5%8C%96-pandas%E7%BB%98%E5%9B%BE/</guid>
<description>https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.plot.html pandas的dataframe自带一些绘图语法用以简单的表格数据可视化,适合于数据的初步探索、分析 1 import pandas as pd 1、barplot柱状图 1 2</description>
</item>
<item>
<title>单细胞分析工具--sccode综合差异分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/037%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--sccode%E7%BB%BC%E5%90%88%E5%B7%AE%E5%BC%82%E5%88%86%E6%9E%90/</link>
<pubDate>Sun, 30 Apr 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/037%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--sccode%E7%BB%BC%E5%90%88%E5%B7%AE%E5%BC%82%E5%88%86%E6%9E%90/</guid>
<description>scCODE( single-cell consensus optimization of differentially expressed gene detection)是由复旦大学附属金山医院邹欣等人开发的R包工具,于2022年12月发表于Briefing in Bioinfo</description>
</item>
<item>
<title>单细胞分析工具--ShinyCell交互式展示单细胞数据</title>
<link>https://lishensuo.github.io/posts/bioinfo/040%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--shinycell%E4%BA%A4%E4%BA%92%E5%BC%8F%E5%B1%95%E7%A4%BA%E5%8D%95%E7%BB%86%E8%83%9E%E6%95%B0%E6%8D%AE/</link>
<pubDate>Mon, 07 Aug 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/040%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--shinycell%E4%BA%A4%E4%BA%92%E5%BC%8F%E5%B1%95%E7%A4%BA%E5%8D%95%E7%BB%86%E8%83%9E%E6%95%B0%E6%8D%AE/</guid>
<description>ShinyCell包是由杜克-新加坡国立大学医学院的John F. Ouyang团队开发的单细胞分析工具包,实现基于shiny网页交互式展示单细胞</description>
</item>
<item>
<title>单细胞分析工具--Seurat5基础用法</title>
<link>https://lishensuo.github.io/posts/bioinfo/041%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--seurat5%E5%9F%BA%E7%A1%80%E7%94%A8%E6%B3%95/</link>
<pubDate>Tue, 17 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/041%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--seurat5%E5%9F%BA%E7%A1%80%E7%94%A8%E6%B3%95/</guid>
<description>Seurat V5版本有一段时间了,由于时间原因未来得及了解。现根据其官方文档简单整理其用法,与V4比较类似的地方就不多叙述了。此外,V5的亮点之一还在</description>
</item>
<item>
<title>单细胞分析工具--CELLxGENE数据库</title>
<link>https://lishensuo.github.io/posts/bioinfo/042%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--cellxgene%E6%95%B0%E6%8D%AE%E5%BA%93/</link>
<pubDate>Wed, 16 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/042%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--cellxgene%E6%95%B0%E6%8D%AE%E5%BA%93/</guid>
<description>网站:https://cellxgene.cziscience.com/ API:https://chanzuckerberg.github.</description>
</item>
<item>
<title>单细胞分析工具--scVI去除批次效应</title>
<link>https://lishensuo.github.io/posts/bioinfo/043%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--scvi%E5%8E%BB%E9%99%A4%E6%89%B9%E6%AC%A1%E6%95%88%E5%BA%94/</link>
<pubDate>Tue, 05 Nov 2024 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/043%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--scvi%E5%8E%BB%E9%99%A4%E6%89%B9%E6%AC%A1%E6%95%88%E5%BA%94/</guid>
<description>scVI (single-cell variational inference)是2018年发表的一项单细胞分析工具。它主要基于VAE变分自编码器的思想,计算去除批次效应后的细胞低维空间表示。而</description>
</item>
<item>
<title>单细胞分析工具--sccoda细胞组成比较</title>
<link>https://lishensuo.github.io/posts/bioinfo/038%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--sccoda%E7%BB%86%E8%83%9E%E7%BB%84%E6%88%90%E6%AF%94%E8%BE%83/</link>
<pubDate>Sun, 30 Apr 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/038%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--sccoda%E7%BB%86%E8%83%9E%E7%BB%84%E6%88%90%E6%AF%94%E8%BE%83/</guid>
<description>scCODA(single-cell compositional data analysis)是由德国环境健康研究中心计算生物学研究所M Büttner等人基于python开发的单细胞数据分析工具,于2021年1</description>
</item>
<item>
<title>单细胞分析工具--COSG鉴定marker基因</title>
<link>https://lishensuo.github.io/posts/bioinfo/039%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--cosg%E9%89%B4%E5%AE%9Amarker%E5%9F%BA%E5%9B%A0/</link>
<pubDate>Sat, 01 Jul 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/039%E5%8D%95%E7%BB%86%E8%83%9E%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7--cosg%E9%89%B4%E5%AE%9Amarker%E5%9F%BA%E5%9B%A0/</guid>
<description>COSG(COSine similarity-based marker Gene identification)是由来自哈佛医学院和Broad研究所博后Ming Dai等人开发,旨在从余弦相似度的角度鉴定cluste</description>
</item>
<item>
<title>差异分析R包-DESeq2+edgeR+limma</title>
<link>https://lishensuo.github.io/posts/bioinfo/045%E5%B7%AE%E5%BC%82%E5%88%86%E6%9E%90r%E5%8C%85-deseq2+edger+limma/</link>
<pubDate>Sat, 11 Jun 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/045%E5%B7%AE%E5%BC%82%E5%88%86%E6%9E%90r%E5%8C%85-deseq2+edger+limma/</guid>
<description>在对转录组数据分析时,分组比较的差异分析前提时获得测序表达矩阵。 根据测序技术分为两种,对应的分析R包如下所示。 RNAseq的原始count表</description>
</item>
<item>
<title>TCGAbiolinks包-TCGA数据下载与差异分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/046tcgabiolinks%E5%8C%85-tcga%E6%95%B0%E6%8D%AE%E4%B8%8B%E8%BD%BD%E4%B8%8E%E5%B7%AE%E5%BC%82%E5%88%86%E6%9E%90/</link>
<pubDate>Sat, 30 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/046tcgabiolinks%E5%8C%85-tcga%E6%95%B0%E6%8D%AE%E4%B8%8B%E8%BD%BD%E4%B8%8E%E5%B7%AE%E5%BC%82%E5%88%86%E6%9E%90/</guid>
<description>TCGAbiolinks包是一站式分析TCGA数据的R包工具,它集成了TCGA数据下载、分析、可视化的全部流程。此次系列笔记主要跟着 TCGA</description>
</item>
<item>
<title>表达矩阵TPM,FPKM标准化</title>
<link>https://lishensuo.github.io/posts/bioinfo/047%E8%A1%A8%E8%BE%BE%E7%9F%A9%E9%98%B5tpmfpkm%E6%A0%87%E5%87%86%E5%8C%96/</link>
<pubDate>Sat, 30 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/047%E8%A1%A8%E8%BE%BE%E7%9F%A9%E9%98%B5tpmfpkm%E6%A0%87%E5%87%86%E5%8C%96/</guid>
<description>1、计算公式 sample 1 sample 2 &hellip;&hellip;.. sample k Gene 1 10 12 30 Gene 2 20 25 60 &hellip;&hellip; &hellip; &hellip; &hellip; &hellip; Gene n 0 0 &hellip; 1 对于(n*k)表达矩阵中k个样本的n个基因的count表达数据。 在任意样</description>
</item>
<item>
<title>从GEO下载芯片或RNAseq测序数据</title>
<link>https://lishensuo.github.io/posts/bioinfo/048%E4%BB%8Egeo%E4%B8%8B%E8%BD%BD%E8%8A%AF%E7%89%87%E6%88%96rnaseq%E6%B5%8B%E5%BA%8F%E6%95%B0%E6%8D%AE/</link>
<pubDate>Sat, 30 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/048%E4%BB%8Egeo%E4%B8%8B%E8%BD%BD%E8%8A%AF%E7%89%87%E6%88%96rnaseq%E6%B5%8B%E5%BA%8F%E6%95%B0%E6%8D%AE/</guid>
<description>挖掘GEO数据时,主要一方面是下载GEO的测序数据(包括基因芯片array与RNAseq两类)的表达矩阵。同时会涉及到一些细节问题,例如ar</description>
</item>
<item>
<title>下载测序数据SRR与fastq.gz方式</title>
<link>https://lishensuo.github.io/posts/bioinfo/049%E4%B8%8B%E8%BD%BD%E6%B5%8B%E5%BA%8F%E6%95%B0%E6%8D%AEsrr%E4%B8%8Efastq.gz%E6%96%B9%E5%BC%8F/</link>
<pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/049%E4%B8%8B%E8%BD%BD%E6%B5%8B%E5%BA%8F%E6%95%B0%E6%8D%AEsrr%E4%B8%8Efastq.gz%E6%96%B9%E5%BC%8F/</guid>
<description>1、准备conda环境与软件 1 2 3 4 5 6 7 8 # 准备download环境 conda create -n download conda activate download # 安装软件 conda install -c hcc aspera-cli conda install -c bioconda sra-tools conda install -c conda-forge pigz 以SRR1391</description>
</item>
<item>
<title>050快捷键</title>
<link>https://lishensuo.github.io/posts/program/050%E5%BF%AB%E6%8D%B7%E9%94%AE%E7%B3%BB%E5%88%97/</link>
<pubDate>Tue, 26 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/050%E5%BF%AB%E6%8D%B7%E9%94%AE%E7%B3%BB%E5%88%97/</guid>
<description>shell Ctrl + a : 将光标移到本行的开始处 Ctrl + e : 将光标移到本行的末尾处 Backsapce : 删除前一个字符 Ctrl + d : 删除后一个字符 Ctrl + k : 从光标开始剪切至行的末尾 Ctrl + y</description>
</item>
<item>
<title>Refgenie下载参考基因组</title>
<link>https://lishensuo.github.io/posts/bioinfo/050refgenie%E4%B8%8B%E8%BD%BD%E5%8F%82%E8%80%83%E5%9F%BA%E5%9B%A0%E7%BB%84/</link>
<pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/050refgenie%E4%B8%8B%E8%BD%BD%E5%8F%82%E8%80%83%E5%9F%BA%E5%9B%A0%E7%BB%84/</guid>
<description>refgenie:参考基因组(阿拉丁)商店 http://refgenie.databio.org/ Here we provide a web interface and a RESTful API to access genome assets for popular reference genome assemblies. 该平台由位于弗吉尼亚大学公共卫生基因组学中心的计算生物学和</description>
</item>
<item>
<title>STRINGdb包下载蛋白PPI数据</title>
<link>https://lishensuo.github.io/posts/bioinfo/051stringdb%E5%8C%85%E4%B8%8B%E8%BD%BD%E8%9B%8B%E7%99%BDppi%E6%95%B0%E6%8D%AE/</link>
<pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/051stringdb%E5%8C%85%E4%B8%8B%E8%BD%BD%E8%9B%8B%E7%99%BDppi%E6%95%B0%E6%8D%AE/</guid>
<description>1 2 3 4 5 if (!require(&#34;BiocManager&#34;, quietly = TRUE)) install.packages(&#34;BiocManager&#34;) BiocManager::install(&#34;STRINGdb&#34;) library(STRINGdb) 1、定义要使用的STRING版本、物种,以及PPI阈值分数 1 2 3 4 string_db &lt;- STRINGdb$new(version=&#34;11&#34;, species=9606, score_threshold=200, input_directory=&#34;&#34;) 2、示例基因 1 2 3 4 5 6 7 8 9 10 11 12</description>
</item>
<item>
<title>使用clusterProfiler下载GO&KEGG通路基因</title>
<link>https://lishensuo.github.io/posts/bioinfo/052%E4%BD%BF%E7%94%A8clusterprofiler%E4%B8%8B%E8%BD%BDgokegg%E9%80%9A%E8%B7%AF%E5%9F%BA%E5%9B%A0/</link>
<pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/052%E4%BD%BF%E7%94%A8clusterprofiler%E4%B8%8B%E8%BD%BDgokegg%E9%80%9A%E8%B7%AF%E5%9F%BA%E5%9B%A0/</guid>
<description>1、GO 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</description>
</item>
<item>
<title>人类基因组基础知识与下载查询</title>
<link>https://lishensuo.github.io/posts/bioinfo/053%E4%BA%BA%E7%B1%BB%E5%9F%BA%E5%9B%A0%E7%BB%84%E5%9F%BA%E7%A1%80%E7%9F%A5%E8%AF%86%E4%B8%8E%E4%B8%8B%E8%BD%BD%E6%9F%A5%E8%AF%A2/</link>
<pubDate>Sat, 28 May 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/053%E4%BA%BA%E7%B1%BB%E5%9F%BA%E5%9B%A0%E7%BB%84%E5%9F%BA%E7%A1%80%E7%9F%A5%E8%AF%86%E4%B8%8E%E4%B8%8B%E8%BD%BD%E6%9F%A5%E8%AF%A2/</guid>
<description>一、基因组大小 (1)人类基因组主要由细胞核的23对染色体组成(核基因组),还包括线粒体中的小DNA分子(线粒体基因组)。 (2)单倍体基因组大</description>
</item>
<item>
<title>基因-蛋白-化合物ID转换</title>
<link>https://lishensuo.github.io/posts/bioinfo/054%E5%9F%BA%E5%9B%A0-%E8%9B%8B%E7%99%BD-%E5%8C%96%E5%90%88%E7%89%A9id%E8%BD%AC%E6%8D%A2/</link>
<pubDate>Sat, 28 May 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/054%E5%9F%BA%E5%9B%A0-%E8%9B%8B%E7%99%BD-%E5%8C%96%E5%90%88%E7%89%A9id%E8%BD%AC%E6%8D%A2/</guid>
<description>1、不同基因ID转换 1.1 org.Hs.eg.db包 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 library(dplyr) library(org.Hs.eg.db) keytypes(org.Hs.eg.db) # [1] &#34;ACCNUM&#34; &#34;ALIAS&#34; &#34;ENSEMBL&#34; &#34;ENSEMBLPROT&#34; &#34;ENSEMBLTRANS&#34; &#34;ENTREZID&#34; # [7] &#34;ENZYME&#34; &#34;EVIDENCE&#34; &#34;EVIDENCEALL&#34;</description>
</item>
<item>
<title>GSEA富集分析工具</title>
<link>https://lishensuo.github.io/posts/bioinfo/055gsea%E5%AF%8C%E9%9B%86%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7/</link>
<pubDate>Fri, 13 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/055gsea%E5%AF%8C%E9%9B%86%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7/</guid>
<description>以前通路富集分析直接使用clusterprofiler包,阅读文献发现GSEA分析及可视化较多使用Broad团队研发的工具,现简要学习其(w</description>
</item>
<item>
<title>clusterProfiler包富集分析与可视化</title>
<link>https://lishensuo.github.io/posts/bioinfo/056clusterprofiler%E5%8C%85%E5%AF%8C%E9%9B%86%E5%88%86%E6%9E%90%E4%B8%8E%E5%8F%AF%E8%A7%86%E5%8C%96/</link>
<pubDate>Sat, 14 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/056clusterprofiler%E5%8C%85%E5%AF%8C%E9%9B%86%E5%88%86%E6%9E%90%E4%B8%8E%E5%8F%AF%E8%A7%86%E5%8C%96/</guid>
<description>1、背景知识 (1)两种富集分析 基于超几何检验的ORA(over representation analysis)富集分析 ① 假设对转录组分组测序的10000个基因表达数据进</description>
</item>
<item>
<title>富集通路可视化方式</title>
<link>https://lishensuo.github.io/posts/bioinfo/057%E5%AF%8C%E9%9B%86%E9%80%9A%E8%B7%AF%E5%8F%AF%E8%A7%86%E5%8C%96%E6%96%B9%E5%BC%8F/</link>
<pubDate>Sat, 14 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/057%E5%AF%8C%E9%9B%86%E9%80%9A%E8%B7%AF%E5%8F%AF%E8%A7%86%E5%8C%96%E6%96%B9%E5%BC%8F/</guid>
<description>0、示例数据 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 library(clusterProfiler) library(org.Hs.eg.db) data(geneList, package=&#34;DOSE&#34;) str(geneList) # Named num [1:12495] 4.57 4.51 4.42 4.14 3.88 ... # - attr(*, &#34;names&#34;)= chr [1:12495] &#34;4312&#34; &#34;8318&#34; &#34;10874&#34; &#34;55143&#34; ... gene_ids&lt;-AnnotationDbi::select(org.Hs.eg.db, keys=as.character(names(gene_list)), columns=&#34;SYMBOL&#34;, #目标格式 keytype=&#34;ENTREZID&#34;)</description>
</item>
<item>
<title>WGCNA基因加权共表达网络分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/071wgcna%E5%9F%BA%E5%9B%A0%E5%8A%A0%E6%9D%83%E5%85%B1%E8%A1%A8%E8%BE%BE%E7%BD%91%E7%BB%9C%E5%88%86%E6%9E%90/</link>
<pubDate>Mon, 25 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/071wgcna%E5%9F%BA%E5%9B%A0%E5%8A%A0%E6%9D%83%E5%85%B1%E8%A1%A8%E8%BE%BE%E7%BD%91%E7%BB%9C%E5%88%86%E6%9E%90/</guid>
<description>1、关于WGCNA原理 1.1 建立共表达网络 在基因共表达网络中,节点node代表基因,边edge代表两个基因间共表达关系。 若一个基因同时与多个基因</description>
</item>
<item>
<title>GSVA包单样本富集分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/058gsva%E5%8C%85%E5%8D%95%E6%A0%B7%E6%9C%AC%E5%AF%8C%E9%9B%86%E5%88%86%E6%9E%90/</link>
<pubDate>Sun, 15 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/058gsva%E5%8C%85%E5%8D%95%E6%A0%B7%E6%9C%AC%E5%AF%8C%E9%9B%86%E5%88%86%E6%9E%90/</guid>
<description>1、GSVA函数 1 2 3 4 5 6 7 # BiocManager::install(&#34;GSVA&#34;) library(GSVA) ?gsva gsva(expr = , #metrix格式表达矩阵(行--基因,列--样本) gset.idx.list = , #list格式基因集 method=c(&#34;gsva&#34;, &#34;ssgsea&#34;, &#34;zscore&#34;, &#34;plage&#34;), # defaul:gsva kcdf=c(&#34;Gaussian&#34;, &#34;Poisson&#34;, &#34;none&#34;))</description>
</item>
<item>
<title>xCell与CIBERSORT等免疫浸润分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/072xcell%E4%B8%8Ecibersort%E7%AD%89%E5%85%8D%E7%96%AB%E6%B5%B8%E6%B6%A6%E5%88%86%E6%9E%90/</link>
<pubDate>Mon, 25 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/072xcell%E4%B8%8Ecibersort%E7%AD%89%E5%85%8D%E7%96%AB%E6%B5%B8%E6%B6%A6%E5%88%86%E6%9E%90/</guid>
<description>xCell xCell包 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 devtools::install_github(&#39;dviraran/xCell&#39;) library(xCell) data(&#34;xCell.data&#34;) ##查看支持的64种细胞类型,同下图 colnames(xCell.data$spill$K) ##预测函数的关键参数解释 ?xCellAnalysis() # expr = 交代表达矩阵; ##</description>
</item>
<item>
<title>ClusterGVis包绘制基因表达矩阵热图</title>
<link>https://lishensuo.github.io/posts/bioinfo/073clustergvis%E5%8C%85%E7%BB%98%E5%88%B6%E5%9F%BA%E5%9B%A0%E8%A1%A8%E8%BE%BE%E7%9F%A9%E9%98%B5%E7%83%AD%E5%9B%BE/</link>
<pubDate>Sun, 19 Mar 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/073clustergvis%E5%8C%85%E7%BB%98%E5%88%B6%E5%9F%BA%E5%9B%A0%E8%A1%A8%E8%BE%BE%E7%9F%A9%E9%98%B5%E7%83%AD%E5%9B%BE/</guid>
<description>ClusterGVis包是中国药科大学Jun Zhang博士开发的系列可视化工具包之一,可以基因表达矩阵进行高级的热图可视化分析。如下根据其g</description>
</item>
<item>
<title>survival包生存分析及glmnet包lasso回归</title>
<link>https://lishensuo.github.io/posts/bioinfo/059survival%E5%8C%85%E7%94%9F%E5%AD%98%E5%88%86%E6%9E%90%E5%8F%8Aglmnet%E5%8C%85lasso%E5%9B%9E%E5%BD%92/</link>
<pubDate>Sat, 28 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/059survival%E5%8C%85%E7%94%9F%E5%AD%98%E5%88%86%E6%9E%90%E5%8F%8Aglmnet%E5%8C%85lasso%E5%9B%9E%E5%BD%92/</guid>
<description>生存分析(survival analysis)的主要目的是发现与患者生存事件相关的指标因素,例如年龄性别、基因表达/突变等。如下学习相关基础知</description>
</item>
<item>
<title>MuSiC包根据scRNAseq预测Bulk细胞组成</title>
<link>https://lishensuo.github.io/posts/bioinfo/074music%E5%8C%85%E6%A0%B9%E6%8D%AEscrnaseq%E9%A2%84%E6%B5%8Bbulk%E7%BB%86%E8%83%9E%E7%BB%84%E6%88%90/</link>
<pubDate>Sun, 26 Mar 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/074music%E5%8C%85%E6%A0%B9%E6%8D%AEscrnaseq%E9%A2%84%E6%B5%8Bbulk%E7%BB%86%E8%83%9E%E7%BB%84%E6%88%90/</guid>
<description>MuSiC(MUlti-Subject SIngle Cell deconvolution)是来自宾夕法尼亚大学Biostatistics, Epidemiology and Informatics系的Mingyao Li课题组于2</description>
</item>
<item>
<title>从RNAseq的fastq.gz提取表达矩阵</title>
<link>https://lishensuo.github.io/posts/bioinfo/060%E4%BB%8Ernaseq%E7%9A%84fastq.gz%E6%8F%90%E5%8F%96%E8%A1%A8%E8%BE%BE%E7%9F%A9%E9%98%B5/</link>
<pubDate>Sun, 29 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/060%E4%BB%8Ernaseq%E7%9A%84fastq.gz%E6%8F%90%E5%8F%96%E8%A1%A8%E8%BE%BE%E7%9F%A9%E9%98%B5/</guid>
<description>RNA-seq数据比对流程主要分为三步(1)整理数据;(2)质控;(3)比对。其中每一步都涉及到若干软件的用法,如下简单整理基本的分析流程。</description>
</item>
<item>
<title>生信相关网站数据库集锦</title>
<link>https://lishensuo.github.io/posts/bioinfo/075%E7%94%9F%E4%BF%A1%E7%9B%B8%E5%85%B3%E7%BD%91%E7%AB%99%E6%95%B0%E6%8D%AE%E5%BA%93%E9%9B%86%E9%94%A6/</link>
<pubDate>Sun, 02 Apr 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/075%E7%94%9F%E4%BF%A1%E7%9B%B8%E5%85%B3%E7%BD%91%E7%AB%99%E6%95%B0%E6%8D%AE%E5%BA%93%E9%9B%86%E9%94%A6/</guid>
<description>1、HPA HPA:the Human Protein Atlas,由2003年来自瑞典的科研机构发起,旨在绘制综合性人类蛋白质图谱。 https://www.proteinatlas.org/ 蛋白质表达数据库,常见用途包括:</description>
</item>
<item>
<title>TCGA的SNV数据下载与maftools可视化</title>
<link>https://lishensuo.github.io/posts/bioinfo/076tcga%E7%9A%84snv%E6%95%B0%E6%8D%AE%E4%B8%8B%E8%BD%BD%E4%B8%8Emaftools%E5%8F%AF%E8%A7%86%E5%8C%96/</link>
<pubDate>Sun, 09 Apr 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/076tcga%E7%9A%84snv%E6%95%B0%E6%8D%AE%E4%B8%8B%E8%BD%BD%E4%B8%8Emaftools%E5%8F%AF%E8%A7%86%E5%8C%96/</guid>
<description>1、TCGAbiolinks下载数据 使用TCGAbiolinks下载特定肿瘤类型的SNV数据 https://bioconductor.org/packages/release/bioc/vignettes/TCGAbiolinks/inst/doc/mutation.html 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23</description>
</item>
<item>
<title>肿瘤亚型分群工具ConsensusClusterPlus</title>
<link>https://lishensuo.github.io/posts/bioinfo/077%E8%82%BF%E7%98%A4%E4%BA%9A%E5%9E%8B%E5%88%86%E7%BE%A4%E5%B7%A5%E5%85%B7consensusclusterplus/</link>
<pubDate>Thu, 20 Apr 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/077%E8%82%BF%E7%98%A4%E4%BA%9A%E5%9E%8B%E5%88%86%E7%BE%A4%E5%B7%A5%E5%85%B7consensusclusterplus/</guid>
<description>ConsensusClusterPlus包是肿瘤分型研究的常用工具,其于2010年发表于Bioinformatics。 Paper:https</description>
</item>
<item>
<title>使用IsoformSwitchAnalyzeR包进行可变剪切分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/070%E4%BD%BF%E7%94%A8isoformswitchanalyzer%E5%8C%85%E8%BF%9B%E8%A1%8C%E5%8F%AF%E5%8F%98%E5%89%AA%E5%88%87%E5%88%86%E6%9E%90/</link>
<pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/070%E4%BD%BF%E7%94%A8isoformswitchanalyzer%E5%8C%85%E8%BF%9B%E8%A1%8C%E5%8F%AF%E5%8F%98%E5%89%AA%E5%88%87%E5%88%86%E6%9E%90/</guid>
<description>https://bioconductor.org/packages/release/bioc/html/IsoformSwitchAnalyzeR.html 1、背景知识 The usage of Alternative Transcription Start sites (aTSS可选择转录起始位点), Alternative Splicing (AS可选择剪切位点) and alternative Transcription Termination Sites (aTTS可选择终止位点) are collectively collectively results in the production of different</description>
</item>
<item>
<title>诺模图或列线图绘制分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/078%E8%AF%BA%E6%A8%A1%E5%9B%BE%E6%88%96%E5%88%97%E7%BA%BF%E5%9B%BE%E7%BB%98%E5%88%B6%E5%88%86%E6%9E%90/</link>
<pubDate>Fri, 28 Apr 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/078%E8%AF%BA%E6%A8%A1%E5%9B%BE%E6%88%96%E5%88%97%E7%BA%BF%E5%9B%BE%E7%BB%98%E5%88%B6%E5%88%86%E6%9E%90/</guid>
<description>肿瘤预后类文章的常规步骤之一是绘制诺模图,并进行相关分析。以下总结了相关基础绘制工具。 示例数据集 1 2 3 4 5 6 library(survival) head(lung) # inst time status age sex ph.ecog ph.karno pat.karno meal.cal wt.loss # 1 3</description>
</item>
<item>
<title>UCSCXenaShiny包肿瘤数据分析可视化</title>
<link>https://lishensuo.github.io/posts/bioinfo/079ucscxenashiny%E5%8C%85%E8%82%BF%E7%98%A4%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90%E5%8F%AF%E8%A7%86%E5%8C%96/</link>
<pubDate>Fri, 12 May 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/079ucscxenashiny%E5%8C%85%E8%82%BF%E7%98%A4%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90%E5%8F%AF%E8%A7%86%E5%8C%96/</guid>
<description>UCSCXenaShiny是基于集成了多种肿瘤数据库的UCSCXena平台,进行数据下载、分析、可视化的Shiny工具(以及同名R包),由上</description>
</item>
<item>
<title>EnhancedVolcano包绘制火山图</title>
<link>https://lishensuo.github.io/posts/bioinfo/080enhancedvolcano%E5%8C%85%E7%BB%98%E5%88%B6%E7%81%AB%E5%B1%B1%E5%9B%BE/</link>
<pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/080enhancedvolcano%E5%8C%85%E7%BB%98%E5%88%B6%E7%81%AB%E5%B1%B1%E5%9B%BE/</guid>
<description>EnhancedVolcano包可根据差异分析结果,基于ggplot2绘图结构,方便地绘制美观的火山图,下面根据自己的理解小结下基本用法。 官</description>
</item>
<item>
<title>IOBR包肿瘤signature打分与免疫浸润分析</title>
<link>https://lishensuo.github.io/posts/bioinfo/081iobr%E5%8C%85%E8%82%BF%E7%98%A4signature%E6%89%93%E5%88%86%E4%B8%8E%E5%85%8D%E7%96%AB%E6%B5%B8%E6%B6%A6%E5%88%86%E6%9E%90/</link>
<pubDate>Mon, 15 May 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/081iobr%E5%8C%85%E8%82%BF%E7%98%A4signature%E6%89%93%E5%88%86%E4%B8%8E%E5%85%8D%E7%96%AB%E6%B5%B8%E6%B6%A6%E5%88%86%E6%9E%90/</guid>
<description>IOBR包集signature打分与免疫浸润分析为一体的肿瘤数据分析工具,由南方医科大学南方医院廖旺军教授,曾东强博士等人于2021年7月发</description>
</item>
<item>
<title>BayesPrism包根据scRNAseq预测Bulk细胞组成</title>
<link>https://lishensuo.github.io/posts/bioinfo/082bayesprism%E5%8C%85%E6%A0%B9%E6%8D%AEscrnaseq%E9%A2%84%E6%B5%8Bbulk%E7%BB%86%E8%83%9E%E7%BB%84%E6%88%90/</link>
<pubDate>Sat, 03 Jun 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/082bayesprism%E5%8C%85%E6%A0%B9%E6%8D%AEscrnaseq%E9%A2%84%E6%B5%8Bbulk%E7%BB%86%E8%83%9E%E7%BB%84%E6%88%90/</guid>
<description>BayesPrism是由美国康奈尔大学Tin Yi Chu等人开发的R包工具,于2022年4月发表在Nature Cancer。简单来说,该方法使用</description>
</item>
<item>
<title>R包NMF非负矩阵分解</title>
<link>https://lishensuo.github.io/posts/bioinfo/083r%E5%8C%85nmf%E9%9D%9E%E8%B4%9F%E7%9F%A9%E9%98%B5%E5%88%86%E8%A7%A3/</link>
<pubDate>Sat, 17 Jun 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/083r%E5%8C%85nmf%E9%9D%9E%E8%B4%9F%E7%9F%A9%E9%98%B5%E5%88%86%E8%A7%A3/</guid>
<description>(1)NMF是非负矩阵分解(Non-negative Matrix Factorization)的缩写。它是将一个非负数据矩阵分解为两个非负矩阵的乘积,其</description>
</item>
<item>
<title>UCSCXenaShiny V2简要教程</title>
<link>https://lishensuo.github.io/posts/bioinfo/084ucscxenashiny-v2%E7%AE%80%E8%A6%81%E6%95%99%E7%A8%8B/</link>
<pubDate>Sat, 05 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/084ucscxenashiny-v2%E7%AE%80%E8%A6%81%E6%95%99%E7%A8%8B/</guid>
<description>Github仓库:https://github.com/openbiox/UCSCXenaShiny Online App:https://shiny.z</description>
</item>
<item>
<title>机器学习基于R(0)--mlr3基本流程 V2</title>
<link>https://lishensuo.github.io/posts/bioinfo/099%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr30--mlr3%E5%9F%BA%E6%9C%AC%E6%B5%81%E7%A8%8B_v2/</link>
<pubDate>Tue, 18 Jun 2024 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/099%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr30--mlr3%E5%9F%BA%E6%9C%AC%E6%B5%81%E7%A8%8B_v2/</guid>
<description>https://mlr3book.mlr-org.com/ 1 2 3 4 5 6 7 8 9 10 library(mlr3verse) library(tidyverse) tsks() #预置数据任务 lrns() #机器学习算法 msrs() #性能评价指标 as.data.table() 1. Task 任务 https://mlr3book.mlr-org.com/chapters/chapter2/data_and_basic_modeling.html 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 tsk() #预置数据任务 as.data.table(tsk()) tsk(&#34;mtcars&#34;) #</description>
</item>
<item>
<title>机器学习基于R(0)--mlr3基本流程</title>
<link>https://lishensuo.github.io/posts/bioinfo/099%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr30--mlr3%E5%9F%BA%E6%9C%AC%E6%B5%81%E7%A8%8B/</link>
<pubDate>Sun, 26 Jun 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/099%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr30--mlr3%E5%9F%BA%E6%9C%AC%E6%B5%81%E7%A8%8B/</guid>
<description>1 2 library(mlr3verse) library(tidyverse) 1、Task训练数据与目的 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ## 分类任务 task_classif = as_task_classif(data, target = &#34;col_target&#34;) #根据预测结果又可分为:twoclass二分类, mul</description>
</item>
<item>
<title>机器学习基于R包mlr3(1)--分类--KNN</title>
<link>https://lishensuo.github.io/posts/bioinfo/100%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr31--%E5%88%86%E7%B1%BB--knn/</link>
<pubDate>Thu, 30 Jun 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/100%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr31--%E5%88%86%E7%B1%BB--knn/</guid>
<description>KNN&ndash;K近邻 1、KNN的步骤 (1)计算输入数据与训练数据的距离(一般欧几里得距离); (2)从训练集中,选取距离输入数据点最近的</description>
</item>
<item>
<title>正则表达式基础</title>
<link>https://lishensuo.github.io/posts/program/100%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F%E5%9F%BA%E7%A1%80/</link>
<pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/100%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F%E5%9F%BA%E7%A1%80/</guid>
<description>在R、shell,Python等进行字符串处理时,常常使用正则表达式进行高效的文本编辑。下面小结一下关于正则表达式的基础用法 1、匹配字符(集</description>
</item>
<item>
<title>文献--AD星形胶质与小胶质细胞的单细胞数据分析</title>
<link>https://lishensuo.github.io/posts/basic/100%E6%96%87%E7%8C%AE--ad%E6%98%9F%E5%BD%A2%E8%83%B6%E8%B4%A8%E7%BB%86%E8%83%9E%E4%B8%8E%E5%B0%8F%E8%83%B6%E8%B4%A8%E7%BB%86%E8%83%9E%E7%9A%84%E5%8D%95%E7%BB%86%E8%83%9E%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/</link>
<pubDate>Sun, 10 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/basic/100%E6%96%87%E7%8C%AE--ad%E6%98%9F%E5%BD%A2%E8%83%B6%E8%B4%A8%E7%BB%86%E8%83%9E%E4%B8%8E%E5%B0%8F%E8%83%B6%E8%B4%A8%E7%BB%86%E8%83%9E%E7%9A%84%E5%8D%95%E7%BB%86%E8%83%9E%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/</guid>
<description>AD星形胶质细胞与小胶质细胞的snRNA-seq数据分析 Diverse human astrocyte and microglial transcriptional responses to Alzheimer’s pathology Acta Neuropathologica (2022) 143:75–91 IF=17 https://doi.org/10.1007/s00401-021-02372-6 1、测序样本 24</description>
</item>
<item>
<title>hugo+github搭建我的个人博客</title>
<link>https://lishensuo.github.io/posts/program/101hugo+github%E6%90%AD%E5%BB%BA%E6%88%91%E7%9A%84%E4%B8%AA%E4%BA%BA%E5%8D%9A%E5%AE%A2/</link>
<pubDate>Sun, 29 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/program/101hugo+github%E6%90%AD%E5%BB%BA%E6%88%91%E7%9A%84%E4%B8%AA%E4%BA%BA%E5%8D%9A%E5%AE%A2/</guid>
<description>博客网页:https://lishensuo.github.io/ github:https://github.com/lishensuo/l</description>
</item>
<item>
<title>文献--AD小鼠空间转录组数据分析</title>
<link>https://lishensuo.github.io/posts/basic/101%E6%96%87%E7%8C%AE--ad%E5%B0%8F%E9%BC%A0%E7%A9%BA%E9%97%B4%E8%BD%AC%E5%BD%95%E7%BB%84%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/</link>
<pubDate>Fri, 10 Jun 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/basic/101%E6%96%87%E7%8C%AE--ad%E5%B0%8F%E9%BC%A0%E7%A9%BA%E9%97%B4%E8%BD%AC%E5%BD%95%E7%BB%84%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/</guid>
<description>Spatial Transcriptomics and In Situ Sequencing to Study Alzheimer&rsquo;s Disease Cell. 2020 Aug 20 | IF=41.5 DOI: 10.1016/j.cell.2020.06.038 这是关于AD的第一次空间转录组学的相关研究。如下为该文章中涉及空间转录组分析部分的简要笔记,具体可参看原</description>
</item>
<item>
<title>机器学习基于R包mlr3(2)--分类--逻辑回归.md</title>
<link>https://lishensuo.github.io/posts/bioinfo/101%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr32--%E5%88%86%E7%B1%BB--%E9%80%BB%E8%BE%91%E5%9B%9E%E5%BD%92/</link>
<pubDate>Sun, 10 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/101%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr32--%E5%88%86%E7%B1%BB--%E9%80%BB%E8%BE%91%E5%9B%9E%E5%BD%92/</guid>
<description>1、逻辑回归的算法理解 逻辑回归 = 线性回归 + Sigmoid函数 与线性回归相同的是同样需要学习变量的权重(系数)与偏置(截距);与线性回归不同的</description>
</item>
<item>
<title>文献--挖掘AD单细胞数据分析NK浸润</title>
<link>https://lishensuo.github.io/posts/basic/102%E6%96%87%E7%8C%AE--%E6%8C%96%E6%8E%98ad%E5%8D%95%E7%BB%86%E8%83%9E%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90nk%E6%B5%B8%E6%B6%A6/</link>
<pubDate>Sun, 30 Oct 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/basic/102%E6%96%87%E7%8C%AE--%E6%8C%96%E6%8E%98ad%E5%8D%95%E7%BB%86%E8%83%9E%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90nk%E6%B5%B8%E6%B6%A6/</guid>
<description>Expression of Immune Related Genes and Possible Regulatory Mechanisms in Alzheimer’s Disease doi: 10.3389/fimmu.2021.768966 05 November 2021 核心结论:AD病人外周血中的NK细胞浸润到大脑中参与AD病理过程的免疫反应。 1、公共数</description>
</item>
<item>
<title>机器学习基于R包mlr3(3)--分类--LDA与QDA</title>
<link>https://lishensuo.github.io/posts/bioinfo/102%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr33--%E5%88%86%E7%B1%BB--lda%E4%B8%8Eqda/</link>
<pubDate>Sun, 10 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/102%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr33--%E5%88%86%E7%B1%BB--lda%E4%B8%8Eqda/</guid>
<description>1、概述 LDA与QDA可以简单理解为有监督的降维,将多个预测变量信息压缩成少数(类别数-1)新的预测变量。 每一个新的预测变量称之为判别函数,</description>
</item>
<item>
<title>文献--基于肝细胞癌M2样肿瘤巨噬细胞建立预后模型</title>
<link>https://lishensuo.github.io/posts/basic/103%E6%96%87%E7%8C%AE--%E5%9F%BA%E4%BA%8E%E8%82%9D%E7%BB%86%E8%83%9E%E7%99%8Cm2%E6%A0%B7%E8%82%BF%E7%98%A4%E5%B7%A8%E5%99%AC%E7%BB%86%E8%83%9E%E5%BB%BA%E7%AB%8B%E9%A2%84%E5%90%8E%E6%A8%A1%E5%9E%8B/</link>
<pubDate>Sun, 13 Nov 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/basic/103%E6%96%87%E7%8C%AE--%E5%9F%BA%E4%BA%8E%E8%82%9D%E7%BB%86%E8%83%9E%E7%99%8Cm2%E6%A0%B7%E8%82%BF%E7%98%A4%E5%B7%A8%E5%99%AC%E7%BB%86%E8%83%9E%E5%BB%BA%E7%AB%8B%E9%A2%84%E5%90%8E%E6%A8%A1%E5%9E%8B/</guid>
<description>文章题目:M2-like tumor-associated macrophage-related biomarkers to construct a novel prognostic signature, reveal the immune landscape, and screen drugs in hepatocellular carcinoma 发表期刊及日期:Front Immunol, 2022 Sep 13 DOI:10.3389/fim</description>
</item>
<item>
<title>机器学习基于R包mlr3(4)--分类--朴素贝叶斯</title>
<link>https://lishensuo.github.io/posts/bioinfo/103%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr34--%E5%88%86%E7%B1%BB--%E6%9C%B4%E7%B4%A0%E8%B4%9D%E5%8F%B6%E6%96%AF/</link>
<pubDate>Sun, 10 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/103%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr34--%E5%88%86%E7%B1%BB--%E6%9C%B4%E7%B4%A0%E8%B4%9D%E5%8F%B6%E6%96%AF/</guid>
<description>1、朴素贝叶斯简介 Naive Bayes:预测样本属于每一类别的概率,取概率最高的类别。包含四个概念:后验概率、似然、先验概率以及全概率。如下图示例 例</description>
</item>
<item>
<title>文献--椎间盘退行性疾病bulk与scRNA-seq数据挖掘</title>
<link>https://lishensuo.github.io/posts/basic/104%E6%96%87%E7%8C%AE--%E6%A4%8E%E9%97%B4%E7%9B%98%E9%80%80%E8%A1%8C%E6%80%A7%E7%96%BE%E7%97%85bulk%E4%B8%8Escrna-seq%E6%95%B0%E6%8D%AE%E6%8C%96%E6%8E%98/</link>
<pubDate>Thu, 01 Dec 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/basic/104%E6%96%87%E7%8C%AE--%E6%A4%8E%E9%97%B4%E7%9B%98%E9%80%80%E8%A1%8C%E6%80%A7%E7%96%BE%E7%97%85bulk%E4%B8%8Escrna-seq%E6%95%B0%E6%8D%AE%E6%8C%96%E6%8E%98/</guid>
<description>文章题目:Revealing the Key MSCs Niches and Pathogenic Genes in Influencing CEP Homeostasis: A Conjoint Analysis of Single-Cell and WGCNA 杂志/日期:Front. Immunol. / 27 June 2022 DOI:10.3389/fimmu.202</description>
</item>
<item>
<title>机器学习基于R包mlr3(5)--分类--SVM</title>
<link>https://lishensuo.github.io/posts/bioinfo/104%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr35--%E5%88%86%E7%B1%BB--svm/</link>
<pubDate>Sun, 10 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/bioinfo/104%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E5%9F%BA%E4%BA%8Er%E5%8C%85mlr35--%E5%88%86%E7%B1%BB--svm/</guid>
<description>1、SVM相关 基本概念 超平面:比数据集的变量少一个维度的平面,也称为决策边界; 间隔:(对于硬间隔)训练数据中最接近决策边界的样本点与决策边界</description>
</item>
<item>
<title>文献--小鼠缺血性中风单细胞数据分析</title>
<link>https://lishensuo.github.io/posts/basic/105%E6%96%87%E7%8C%AE--%E5%B0%8F%E9%BC%A0%E7%BC%BA%E8%A1%80%E6%80%A7%E4%B8%AD%E9%A3%8E%E5%8D%95%E7%BB%86%E8%83%9E%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/</link>
<pubDate>Sun, 11 Dec 2022 00:00:00 +0000</pubDate>
<guid>https://lishensuo.github.io/posts/basic/105%E6%96%87%E7%8C%AE--%E5%B0%8F%E9%BC%A0%E7%BC%BA%E8%A1%80%E6%80%A7%E4%B8%AD%E9%A3%8E%E5%8D%95%E7%BB%86%E8%83%9E%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/</guid>
<description>题目:Single-cell RNA-seq reveals the transcriptional landscape in ischemic stroke 期刊/日期:ournal of Cerebral Blood Flow &amp; Metabolism / 24 May 2021 DOI:10.1177/0271678X211026</description>
</item>
<item>