forked from ShixiangWang/next-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1376 lines (884 loc) · 62.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2">
<meta name="theme-color" content="#222">
<meta name="generator" content="Hexo 5.2.0">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png">
<link rel="mask-icon" href="/images/logo.svg" color="#222">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/animate.min.css">
<script class="hexo-configurations">
var NexT = window.NexT || {};
var CONFIG = {"hostname":"example.com","root":"/","scheme":"Gemini","version":"8.0.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12},"copycode":false,"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"style":"tabs","active":null,"storage":true,"lazyload":false,"nav":null},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"fadeInDown","post_body":"fadeInDown","coll_header":"fadeInLeft","sidebar":"fadeInUp"}},"prism":false,"i18n":{"placeholder":"Searching...","empty":"We didn't find any results for the search: ${query}","hits_time":"${hits} results found in ${time} ms","hits":"${hits} results found"},"path":"search.xml","localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false}};
</script>
<meta name="description" content="Student From Shanghai Institute of Nutrition and Health(SINH), CAS">
<meta property="og:type" content="website">
<meta property="og:title" content="WENJU QIAN‘s tech blog">
<meta property="og:url" content="http://example.com/index.html">
<meta property="og:site_name" content="WENJU QIAN‘s tech blog">
<meta property="og:description" content="Student From Shanghai Institute of Nutrition and Health(SINH), CAS">
<meta property="og:locale" content="en_US">
<meta property="article:author" content="WENJU QIAN">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="http://example.com/">
<script class="page-configurations">
// https://hexo.io/docs/variables.html
CONFIG.page = {
sidebar: "",
isHome : true,
isPost : false,
lang : 'en'
};
</script>
<title>WENJU QIAN‘s tech blog</title>
<noscript>
<style>
body { margin-top: 2rem; }
.use-motion .menu-item,
.use-motion .sidebar,
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments,
.use-motion .post-header,
.use-motion .post-body,
.use-motion .collection-header {
visibility: visible;
}
.use-motion .header,
.use-motion .site-brand-container .toggle,
.use-motion .footer { opacity: initial; }
.use-motion .site-title,
.use-motion .site-subtitle,
.use-motion .custom-logo-image {
opacity: initial;
top: initial;
}
.use-motion .logo-line {
transform: scaleX(1);
}
.search-pop-overlay, .sidebar-nav { display: none; }
.sidebar-panel { display: block; }
</style>
</noscript>
</head>
<body itemscope itemtype="http://schema.org/WebPage" class="use-motion">
<div class="headband"></div>
<main class="main">
<header class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-container">
<div class="site-nav-toggle">
<div class="toggle" aria-label="Toggle navigation bar">
<span class="toggle-line"></span>
<span class="toggle-line"></span>
<span class="toggle-line"></span>
</div>
</div>
<div class="site-meta">
<a href="/" class="brand" rel="start">
<i class="logo-line"></i>
<h1 class="site-title">WENJU QIAN‘s tech blog</h1>
<i class="logo-line"></i>
</a>
<p class="site-subtitle" itemprop="description">时光匆匆独白,将颠沛磨成卡带</p>
</div>
<div class="site-nav-right">
<div class="toggle popup-trigger">
<i class="fa fa-search fa-fw fa-lg"></i>
</div>
</div>
</div>
<nav class="site-nav">
<ul class="main-menu menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section"><i class="fa fa-home fa-fw"></i>Home</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>About</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>Tags</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>Categories</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>Archives</a>
</li>
<li class="menu-item menu-item-schedule">
<a href="/schedule/" rel="section"><i class="fa fa-calendar fa-fw"></i>Schedule</a>
</li>
<li class="menu-item menu-item-sitemap">
<a href="/sitemap.xml" rel="section"><i class="fa fa-sitemap fa-fw"></i>Sitemap</a>
</li>
<li class="menu-item menu-item-commonweal">
<a href="/404/" rel="section"><i class="fa fa-heartbeat fa-fw"></i>Commonweal 404</a>
</li>
<li class="menu-item menu-item-search">
<a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>Search
</a>
</li>
</ul>
</nav>
<div class="search-pop-overlay">
<div class="popup search-popup">
<div class="search-header">
<span class="search-icon">
<i class="fa fa-search"></i>
</span>
<div class="search-input-container">
<input autocomplete="off" autocapitalize="off" maxlength="80"
placeholder="Searching..." spellcheck="false"
type="search" class="search-input">
</div>
<span class="popup-btn-close">
<i class="fa fa-times-circle"></i>
</span>
</div>
<div class="search-result-container no-result">
<div class="search-result-icon">
<i class="fa fa-spinner fa-pulse fa-5x"></i>
</div>
</div>
</div>
</div>
</div>
<div class="toggle sidebar-toggle">
<span class="toggle-line"></span>
<span class="toggle-line"></span>
<span class="toggle-line"></span>
</div>
<aside class="sidebar">
<div class="sidebar-inner sidebar-overview-active">
<ul class="sidebar-nav">
<li class="sidebar-nav-toc">
Table of Contents
</li>
<li class="sidebar-nav-overview">
Overview
</li>
</ul>
<!--noindex-->
<section class="post-toc-wrap sidebar-panel">
</section>
<!--/noindex-->
<section class="site-overview-wrap sidebar-panel">
<div class="site-author animated" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image" alt="WENJU QIAN"
src="/images/avatar.jpg">
<p class="site-author-name" itemprop="name">WENJU QIAN</p>
<div class="site-description" itemprop="description">Student From Shanghai Institute of Nutrition and Health(SINH), CAS</div>
</div>
<div class="site-state-wrap animated">
<nav class="site-state">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">33</span>
<span class="site-state-item-name">posts</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/">
<span class="site-state-item-count">5</span>
<span class="site-state-item-name">tags</span></a>
</div>
</nav>
</div>
<div class="links-of-author animated">
<span class="links-of-author-item">
<a href="https://github.com/qianwenju" title="GitHub → https://github.com/qianwenju" rel="noopener" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a>
</span>
<span class="links-of-author-item">
<a href="mailto:[email protected]" title="E-Mail → mailto:[email protected]" rel="noopener" target="_blank"><i class="fa fa-envelope fa-fw"></i>E-Mail</a>
</span>
</div>
</section>
</div>
</aside>
<div class="sidebar-dimmer"></div>
</header>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
<span>0%</span>
</div>
<noscript>
<div class="noscript-warning">Theme NexT works best with JavaScript enabled</div>
</noscript>
<div class="main-inner index posts-expand">
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="en">
<link itemprop="mainEntityOfPage" href="http://example.com/2021/08/04/hello/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="WENJU QIAN">
<meta itemprop="description" content="Student From Shanghai Institute of Nutrition and Health(SINH), CAS">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="WENJU QIAN‘s tech blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2021/08/04/hello/" class="post-title-link" itemprop="url">hello</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2021-08-04 15:47:17" itemprop="dateCreated datePublished" datetime="2021-08-04T15:47:17+08:00">2021-08-04</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2021/08/04/hello/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2021/08/04/hello/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="en">
<link itemprop="mainEntityOfPage" href="http://example.com/2021/08/04/%E6%89%B9%E9%87%8F%E5%90%88%E5%B9%B6fq%E6%96%87%E4%BB%B6%E7%9A%84python%E8%84%9A%E6%9C%AC/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="WENJU QIAN">
<meta itemprop="description" content="Student From Shanghai Institute of Nutrition and Health(SINH), CAS">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="WENJU QIAN‘s tech blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2021/08/04/%E6%89%B9%E9%87%8F%E5%90%88%E5%B9%B6fq%E6%96%87%E4%BB%B6%E7%9A%84python%E8%84%9A%E6%9C%AC/" class="post-title-link" itemprop="url">批量合并fq文件的python脚本</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2021-08-04 14:56:24 / Modified: 14:58:43" itemprop="dateCreated datePublished" datetime="2021-08-04T14:56:24+08:00">2021-08-04</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2021/08/04/%E6%89%B9%E9%87%8F%E5%90%88%E5%B9%B6fq%E6%96%87%E4%BB%B6%E7%9A%84python%E8%84%9A%E6%9C%AC/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2021/08/04/%E6%89%B9%E9%87%8F%E5%90%88%E5%B9%B6fq%E6%96%87%E4%BB%B6%E7%9A%84python%E8%84%9A%E6%9C%AC/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<figure class="highlight haskell"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br><span class="line">10</span><br><span class="line">11</span><br></pre></td><td class="code"><pre><span class="line"><span class="meta">#!/usr/bin/env python3</span></span><br><span class="line"></span><br><span class="line"><span class="meta"># os 模块提供了非常丰富的方法用来处理文件和目录</span></span><br><span class="line"><span class="keyword">import</span> os</span><br><span class="line"></span><br><span class="line"><span class="meta"># argsparse是python的命令行解析的标准模块,内置于python,不需要安装。这个库可以让我们直接在命令行中就可以向程序中传入参数并让程序运行。</span></span><br><span class="line"><span class="keyword">import</span> argparse</span><br><span class="line"></span><br><span class="line"><span class="meta"># 模块允许你生成新的进程,连接它们的输入、输出、错误管道,并且获取它们的返回码。此模块打算代替一些老旧的模块与功能</span></span><br><span class="line"><span class="keyword">import</span> subprocess</span><br><span class="line"></span><br></pre></td></tr></table></figure>
<figure class="highlight livecodeserver"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br><span class="line">10</span><br></pre></td><td class="code"><pre><span class="line"><span class="comment"># 这个模块的作用是什么???运行系统命令,比如(在python里面用Linux)</span></span><br><span class="line">def run_cmd(cmd, logfile=<span class="string">''</span>):</span><br><span class="line"> <span class="keyword">if</span> logfile:</span><br><span class="line"> <span class="keyword">with</span> <span class="built_in">open</span>(logfile, <span class="string">'w'</span>) <span class="keyword">as</span> <span class="built_in">log</span>:</span><br><span class="line"> <span class="built_in">log</span>.<span class="built_in">write</span>(cmd + <span class="string">'\n'</span>)</span><br><span class="line"> cmd_run = subprocess.Popen(cmd, <span class="built_in">shell</span>=True, <span class="keyword">stdout</span>=<span class="built_in">log</span>, <span class="keyword">stderr</span>=<span class="built_in">log</span>)</span><br><span class="line"> cmd_run.<span class="built_in">wait</span>()</span><br><span class="line"> <span class="keyword">else</span>:</span><br><span class="line"> cmd_run = subprocess.Popen(cmd, <span class="built_in">shell</span>=True)</span><br><span class="line"> cmd_run.<span class="built_in">wait</span>()</span><br></pre></td></tr></table></figure>
<p>上面的这个模块的作用是方便系统从python脚本中调用Linux系统命令。</p>
<figure class="highlight python"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br><span class="line">10</span><br><span class="line">11</span><br><span class="line">12</span><br><span class="line">13</span><br><span class="line">14</span><br><span class="line">15</span><br><span class="line">16</span><br><span class="line">17</span><br><span class="line">18</span><br><span class="line">19</span><br><span class="line">20</span><br><span class="line">21</span><br><span class="line">22</span><br><span class="line">23</span><br><span class="line">24</span><br><span class="line">25</span><br><span class="line">26</span><br><span class="line">27</span><br><span class="line">28</span><br><span class="line">29</span><br><span class="line">30</span><br><span class="line">31</span><br><span class="line">32</span><br><span class="line">33</span><br><span class="line">34</span><br><span class="line">35</span><br><span class="line">36</span><br><span class="line">37</span><br><span class="line">38</span><br><span class="line">39</span><br><span class="line">40</span><br></pre></td><td class="code"><pre><span class="line"><span class="function"><span class="keyword">def</span> <span class="title">main</span>():</span></span><br><span class="line"> args = argparse.ArgumentParser() <span class="comment">#创建实例对象</span></span><br><span class="line"> <span class="comment">#下面的就是通过argparse库来添加参数</span></span><br><span class="line"> args.add_argument(<span class="string">"-d"</span>, <span class="string">"--data"</span>, <span class="built_in">help</span>=<span class="string">"sample data dir"</span>) <span class="comment">#添加样品输入目录</span></span><br><span class="line"> args.add_argument(<span class="string">"-s"</span>, <span class="string">"--sample"</span>, <span class="built_in">help</span>=<span class="string">"sample info file"</span>) <span class="comment">#添加样本信息表</span></span><br><span class="line"> <span class="comment"># args.add_argument("-t", "--seqtype", help="seq type", choices=["seq200", "seq2000"])</span></span><br><span class="line"> args.add_argument(<span class="string">"-o"</span>, <span class="string">"--outdir"</span>, <span class="built_in">help</span>=<span class="string">"output dir"</span>) <span class="comment">#添加输出目录</span></span><br><span class="line"> args = args.parse_args() <span class="comment"># 解析</span></span><br><span class="line"> </span><br><span class="line"> <span class="comment">#获取绝对输入输出文件的绝对路径</span></span><br><span class="line"> data_dir = os.path.abspath(args.data)</span><br><span class="line"> out_dir = os.path.abspath(args.outdir)</span><br><span class="line"> <span class="comment">#用with语句的好处,就是到达语句末尾时,会自动关闭文件,即便出现异常</span></span><br><span class="line"> </span><br><span class="line"> <span class="keyword">with</span> <span class="built_in">open</span>(args.sample, <span class="string">'r'</span>) <span class="keyword">as</span> sample_f:</span><br><span class="line"> <span class="keyword">for</span> index, line <span class="keyword">in</span> <span class="built_in">enumerate</span>(sample_f): <span class="comment">#enumerate() #函数用于将一个可遍历的数据对象(如列表、元组或字符串)组合为一个索引序列,同时列出数据和数据下标,一般用在 for 循环当中.</span></span><br><span class="line"> <span class="comment">#写入一个固定化输出的文件,format 函数可以接受不限个参数,位置可以不按顺序;</span></span><br><span class="line"> <span class="keyword">with</span> <span class="built_in">open</span>(<span class="string">'{0}/cat_{1}.sh'</span>.<span class="built_in">format</span>(args.outdir, index), <span class="string">'w'</span>) <span class="keyword">as</span> cmd_f:</span><br><span class="line"> chip, lib, sample, tag, indexes = line.rstrip().split(<span class="string">'\t'</span>) <span class="comment">#rstrip()的目的是什么?? #去除末端的空字符</span></span><br><span class="line"> </span><br><span class="line"> <span class="comment">#将cat这个字符赋值给”cat_cmd“</span></span><br><span class="line"> cat_cmd = <span class="string">'cat '</span></span><br><span class="line"> </span><br><span class="line"> <span class="comment"># 构建一个for循环,将indexes中的数据按照,分割成多个数据</span></span><br><span class="line"> <span class="keyword">for</span> i <span class="keyword">in</span> indexes.split(<span class="string">','</span>):</span><br><span class="line"> </span><br><span class="line"> <span class="comment">#1.对于可变类型: + : 代表连接操作,其结果会创建一个新的对象。+=: 代表追加操作,即in-place 操作,在原地把另一个对象的内容追加到对象中。</span></span><br><span class="line"> <span class="comment">#将cat 以及后面跟着的文件写入到cat_index.sh的脚本中</span></span><br><span class="line"> cat_cmd += <span class="string">'{0}/{1}/L01/{1}_L01_{2}.fq.gz '</span>.<span class="built_in">format</span>(data_dir, chip, i)</span><br><span class="line"> cat_cmd += <span class="string">'> {0}/{1}.fq.gz'</span>.<span class="built_in">format</span>(out_dir, sample)</span><br><span class="line"> </span><br><span class="line"> <span class="comment">#脚本结束之后需要</span></span><br><span class="line"> cmd_f.write(cat_cmd + <span class="string">'\n'</span>)</span><br><span class="line"></span><br><span class="line"></span><br><span class="line"><span class="comment">#__name__ 是当前模块名,当模块被直接运行时模块名为 __main__ 。这句话的意思就是,当模块被直接运行时,以下代码块将被运行,当模块是被导入时,代码块不被运行。</span></span><br><span class="line"></span><br><span class="line"><span class="keyword">if</span> __name__ == <span class="string">'__main__'</span>:</span><br><span class="line"> main()</span><br><span class="line"></span><br></pre></td></tr></table></figure>
<p>所以综上,这个脚本的基本思路是通过python将要执行的.sh程序编辑好之后,再通过qsub批量投递,并没有在python中直接调用Linux语法。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2021/08/04/%E6%89%B9%E9%87%8F%E5%90%88%E5%B9%B6fq%E6%96%87%E4%BB%B6%E7%9A%84python%E8%84%9A%E6%9C%AC/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="en">
<link itemprop="mainEntityOfPage" href="http://example.com/2021/08/04/STAR%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="WENJU QIAN">
<meta itemprop="description" content="Student From Shanghai Institute of Nutrition and Health(SINH), CAS">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="WENJU QIAN‘s tech blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2021/08/04/STAR%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/" class="post-title-link" itemprop="url">Untitled</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2021-08-04 10:12:35" itemprop="dateCreated datePublished" datetime="2021-08-04T10:12:35+08:00">2021-08-04</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2021/08/04/STAR%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2021/08/04/STAR%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="STAR数据分析"><a href="#STAR数据分析" class="headerlink" title="STAR数据分析"></a>STAR数据分析</h1><p><strong>1、首先将目标文件通过软链接加载到自己的目录中</strong> </p>
<figure class="highlight awk"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br></pre></td><td class="code"><pre><span class="line">$ ln -s <span class="regexp">/mnt/</span>X500<span class="regexp">/farmers/</span>panxiao<span class="regexp">/rna/</span>Suzhou_2020_11_16<span class="regexp">/2000/</span>last_1_2020_12_18<span class="regexp">/input/</span><span class="number">201023</span>_Q100020005_V300077787A-V19116-<span class="number">1023</span>_L004_200007575FRR1_HUM_C_GC1A_4085_Z_0_A <span class="regexp">/mnt/</span>X500<span class="regexp">/farmers/</span>qinwj<span class="regexp">/RNAseq_re/</span><span class="number">201023</span>_Q100020005_V300077787A-V19116-<span class="number">1023</span>_L004_200007575FRR1_HUM_C_GC1A_4085_Z_0_A</span><br><span class="line"></span><br><span class="line">$ ln -s <span class="regexp">/mnt/</span>X500<span class="regexp">/farmers/</span>panxiao<span class="regexp">/rna/</span>Suzhou_2020_11_16<span class="regexp">/2000/</span>last_1_2020_12_18<span class="regexp">/input/</span><span class="number">201023</span>_Q100020005_V300077787A-V19116-<span class="number">1023</span>_L003_200007575FRR1_HUM_C_GC1A_4085_Z_0_A <span class="regexp">/mnt/</span>X500<span class="regexp">/farmers/</span>qinwj<span class="regexp">/RNAseq_re/</span><span class="number">201023</span>_Q100020005_V300077787A-V19116-<span class="number">1023</span>_L003_200007575FRR1_HUM_C_GC1A_4085_Z_0_A</span><br><span class="line"></span><br></pre></td></tr></table></figure>
<figure class="highlight angelscript"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br></pre></td><td class="code"><pre><span class="line">qinwj <span class="number">12</span>:<span class="number">02</span>:<span class="number">08</span> R290<span class="number">-1</span>: /mnt/X500/farmers/qinwj/RNAseq_re</span><br><span class="line">$ ll</span><br><span class="line">total <span class="number">1</span></span><br><span class="line">lrwxrwxrwx. <span class="number">1</span> qinwj qinwj <span class="number">159</span> Jul <span class="number">6</span> <span class="number">12</span>:<span class="number">02</span> <span class="number">201023</span>_Q100020005_V300077787A-V19116<span class="number">-1023</span>_L003_200007575FRR1_HUM_C_GC1A_4085_Z_0_A -> /mnt/X500/farmers/panxiao/rna/Suzhou_2020_11_16/<span class="number">2000</span>/last_1_2020_12_18/input/<span class="number">201023</span>_Q100020005_V300077787A-V19116<span class="number">-1023</span>_L003_200007575FRR1_HUM_C_GC1A_4085_Z_0_A</span><br><span class="line">lrwxrwxrwx. <span class="number">1</span> qinwj qinwj <span class="number">159</span> Jul <span class="number">6</span> <span class="number">11</span>:<span class="number">50</span> <span class="number">201023</span>_Q100020005_V300077787A-V19116<span class="number">-1023</span>_L004_200007575FRR1_HUM_C_GC1A_4085_Z_0_A -> /mnt/X500/farmers/panxiao/rna/Suzhou_2020_11_16/<span class="number">2000</span>/last_1_2020_12_18/input/<span class="number">201023</span>_Q100020005_V300077787A-V19116<span class="number">-1023</span>_L004_200007575FRR1_HUM_C_GC1A_4085_Z_0_A</span><br><span class="line"></span><br></pre></td></tr></table></figure>
<p><strong>2、将Line3和Lin4文件夹中的fastq1和fastq2分别合并</strong></p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2021/08/04/STAR%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="en">
<link itemprop="mainEntityOfPage" href="http://example.com/2021/07/29/STAR%E6%95%B0%E6%8D%AE%E6%AF%94%E5%AF%B9%E4%BB%BB%E5%8A%A1/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="WENJU QIAN">
<meta itemprop="description" content="Student From Shanghai Institute of Nutrition and Health(SINH), CAS">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="WENJU QIAN‘s tech blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2021/07/29/STAR%E6%95%B0%E6%8D%AE%E6%AF%94%E5%AF%B9%E4%BB%BB%E5%8A%A1/" class="post-title-link" itemprop="url">STAR数据比对任务</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2021-07-29 11:36:09" itemprop="dateCreated datePublished" datetime="2021-07-29T11:36:09+08:00">2021-07-29</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2021-08-04 10:12:35" itemprop="dateModified" datetime="2021-08-04T10:12:35+08:00">2021-08-04</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2021/07/29/STAR%E6%95%B0%E6%8D%AE%E6%AF%94%E5%AF%B9%E4%BB%BB%E5%8A%A1/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2021/07/29/STAR%E6%95%B0%E6%8D%AE%E6%AF%94%E5%AF%B9%E4%BB%BB%E5%8A%A1/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="STAR数据分析"><a href="#STAR数据分析" class="headerlink" title="STAR数据分析"></a>STAR数据分析</h1><p><strong>1、首先将目标文件通过软链接加载到自己的目录中</strong> </p>
<figure class="highlight awk"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br></pre></td><td class="code"><pre><span class="line">$ ln -s <span class="regexp">/mnt/</span>X500<span class="regexp">/farmers/</span>panxiao<span class="regexp">/rna/</span>Suzhou_2020_11_16<span class="regexp">/2000/</span>last_1_2020_12_18<span class="regexp">/input/</span><span class="number">201023</span>_Q100020005_V300077787A-V19116-<span class="number">1023</span>_L004_200007575FRR1_HUM_C_GC1A_4085_Z_0_A <span class="regexp">/mnt/</span>X500<span class="regexp">/farmers/</span>qinwj<span class="regexp">/RNAseq_re/</span><span class="number">201023</span>_Q100020005_V300077787A-V19116-<span class="number">1023</span>_L004_200007575FRR1_HUM_C_GC1A_4085_Z_0_A</span><br><span class="line"></span><br><span class="line">$ ln -s <span class="regexp">/mnt/</span>X500<span class="regexp">/farmers/</span>panxiao<span class="regexp">/rna/</span>Suzhou_2020_11_16<span class="regexp">/2000/</span>last_1_2020_12_18<span class="regexp">/input/</span><span class="number">201023</span>_Q100020005_V300077787A-V19116-<span class="number">1023</span>_L003_200007575FRR1_HUM_C_GC1A_4085_Z_0_A <span class="regexp">/mnt/</span>X500<span class="regexp">/farmers/</span>qinwj<span class="regexp">/RNAseq_re/</span><span class="number">201023</span>_Q100020005_V300077787A-V19116-<span class="number">1023</span>_L003_200007575FRR1_HUM_C_GC1A_4085_Z_0_A</span><br><span class="line"></span><br></pre></td></tr></table></figure>
<figure class="highlight angelscript"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br></pre></td><td class="code"><pre><span class="line">qinwj <span class="number">12</span>:<span class="number">02</span>:<span class="number">08</span> R290<span class="number">-1</span>: /mnt/X500/farmers/qinwj/RNAseq_re</span><br><span class="line">$ ll</span><br><span class="line">total <span class="number">1</span></span><br><span class="line">lrwxrwxrwx. <span class="number">1</span> qinwj qinwj <span class="number">159</span> Jul <span class="number">6</span> <span class="number">12</span>:<span class="number">02</span> <span class="number">201023</span>_Q100020005_V300077787A-V19116<span class="number">-1023</span>_L003_200007575FRR1_HUM_C_GC1A_4085_Z_0_A -> /mnt/X500/farmers/panxiao/rna/Suzhou_2020_11_16/<span class="number">2000</span>/last_1_2020_12_18/input/<span class="number">201023</span>_Q100020005_V300077787A-V19116<span class="number">-1023</span>_L003_200007575FRR1_HUM_C_GC1A_4085_Z_0_A</span><br><span class="line">lrwxrwxrwx. <span class="number">1</span> qinwj qinwj <span class="number">159</span> Jul <span class="number">6</span> <span class="number">11</span>:<span class="number">50</span> <span class="number">201023</span>_Q100020005_V300077787A-V19116<span class="number">-1023</span>_L004_200007575FRR1_HUM_C_GC1A_4085_Z_0_A -> /mnt/X500/farmers/panxiao/rna/Suzhou_2020_11_16/<span class="number">2000</span>/last_1_2020_12_18/input/<span class="number">201023</span>_Q100020005_V300077787A-V19116<span class="number">-1023</span>_L004_200007575FRR1_HUM_C_GC1A_4085_Z_0_A</span><br><span class="line"></span><br></pre></td></tr></table></figure>
<p><strong>2、将Line3和Lin4文件夹中的fastq1和fastq2分别合并</strong></p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2021/07/29/STAR%E6%95%B0%E6%8D%AE%E6%AF%94%E5%AF%B9%E4%BB%BB%E5%8A%A1/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="en">
<link itemprop="mainEntityOfPage" href="http://example.com/2020/12/22/%E6%95%B0%E6%8D%AE%E6%95%B4%E7%90%86%E4%B8%8Etidyverse%E7%B3%BB%E7%BB%9F%EF%BC%88%E4%BA%8C%EF%BC%89/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="WENJU QIAN">
<meta itemprop="description" content="Student From Shanghai Institute of Nutrition and Health(SINH), CAS">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="WENJU QIAN‘s tech blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/12/22/%E6%95%B0%E6%8D%AE%E6%95%B4%E7%90%86%E4%B8%8Etidyverse%E7%B3%BB%E7%BB%9F%EF%BC%88%E4%BA%8C%EF%BC%89/" class="post-title-link" itemprop="url">数据整理与tidyverse系统(二)</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2020-12-22 17:51:37" itemprop="dateCreated datePublished" datetime="2020-12-22T17:51:37+08:00">2020-12-22</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2021-08-04 10:12:35" itemprop="dateModified" datetime="2021-08-04T10:12:35+08:00">2021-08-04</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2020/12/22/%E6%95%B0%E6%8D%AE%E6%95%B4%E7%90%86%E4%B8%8Etidyverse%E7%B3%BB%E7%BB%9F%EF%BC%88%E4%BA%8C%EF%BC%89/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/12/22/%E6%95%B0%E6%8D%AE%E6%95%B4%E7%90%86%E4%B8%8Etidyverse%E7%B3%BB%E7%BB%9F%EF%BC%88%E4%BA%8C%EF%BC%89/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>用rename()修改变量名</p>
<p>在dplyr包的rename()中用“新名字=旧名字”格式修改变量名, 如</p>
<pre><code>> d2.class <- d.class %>%
+ dplyr::rename(h=height,w=weight)
> d2.class
# A tibble: 19 x 5
name sex age h w
<chr> <fct> <dbl> <dbl> <dbl>
1 Alice F 13 56.5 84
2 Becka F 13 65.3 98
3 Gail F 14 64.3 90
4 Karen F 12 56.3 77
5 Kathy F 12 59.8 84.5
6 Mary F 15 66.5 112
7 Sandy F 11 51.3 50.5
8 Sharon F 15 62.5 112.
9 Tammy F 14 62.8 102.
10 Alfred M 14 69 112.
11 Duke M 14 63.5 102.
12 Guido M 15 67 133
13 James M 12 57.3 83
14 Jeffrey M 13 62.5 84
15 John M 12 59 99.5
16 Philip M 16 72 150
17 Robert M 12 64.8 128
18 Thomas M 11 57.5 85
19 William M 15 66.5 112 </code></pre>
<p>注意这样改名字不是对原始数据框修改而是<strong>返回改了名字后的新数据框</strong>。</p>
<p>rename()这个函数可能出现在其它包中, 保险起见写成<strong>dplyr::rename()</strong></p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2020/12/22/%E6%95%B0%E6%8D%AE%E6%95%B4%E7%90%86%E4%B8%8Etidyverse%E7%B3%BB%E7%BB%9F%EF%BC%88%E4%BA%8C%EF%BC%89/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="en">
<link itemprop="mainEntityOfPage" href="http://example.com/2020/12/05/GEO%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E4%BD%BF%E7%94%A8%E5%8F%8A%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="WENJU QIAN">
<meta itemprop="description" content="Student From Shanghai Institute of Nutrition and Health(SINH), CAS">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="WENJU QIAN‘s tech blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/12/05/GEO%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E4%BD%BF%E7%94%A8%E5%8F%8A%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/" class="post-title-link" itemprop="url">GEO数据库的使用及数据分析(练习)</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2020-12-05 18:28:23" itemprop="dateCreated datePublished" datetime="2020-12-05T18:28:23+08:00">2020-12-05</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2021-08-04 10:12:35" itemprop="dateModified" datetime="2021-08-04T10:12:35+08:00">2021-08-04</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2020/12/05/GEO%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E4%BD%BF%E7%94%A8%E5%8F%8A%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/12/05/GEO%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E4%BD%BF%E7%94%A8%E5%8F%8A%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p><strong>GEO数据链接:</strong><br><a target="_blank" rel="noopener" href="https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE61763">https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE61763</a></p>
<pre><code>#安装GEOquery package
> if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
> BiocManager::install("GEOquery")
> library(GEOquery)</code></pre>
<p>因为GFW的原因,导致部分用户出现网络错误,进而导致不能下载数据,所以需要修改一下这个option</p>
<pre><code>> options('download.file.method.GEOquery'='libcurl')
#开始下载GEO数据
> gse <- getGEO('GSE61763')
## Found 1 file(s)
GSE61763_series_matrix.txt.gz
试开URL’https://ftp.ncbi.nlm.nih.gov/geo/series/GSE61nnn/GSE61763/matrix/GSE61763_series_matrix.txt.gz'
length 7625052 bytes (7.3 MB)
downloaded 7.3 MB
-- Column specification ------------------------------------------------------------------------------
cols(
.default = col_double(),
ID_REF = col_character()
)
i Use `spec()` for the full column specifications.
File stored at:
C:\Users\lenovo\AppData\Local\Temp\RtmpABSroa/GPL19197.soft</code></pre>
<h2 id="查看下载的GSE数据"><a href="#查看下载的GSE数据" class="headerlink" title="查看下载的GSE数据"></a>查看下载的GSE数据</h2>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2020/12/05/GEO%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E4%BD%BF%E7%94%A8%E5%8F%8A%E6%95%B0%E6%8D%AE%E5%88%86%E6%9E%90/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="en">
<link itemprop="mainEntityOfPage" href="http://example.com/2020/12/01/%E6%95%B0%E6%8D%AE%E6%95%B4%E7%90%86%E4%B8%8Etidyverse%E7%B3%BB%E7%BB%9F/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="WENJU QIAN">
<meta itemprop="description" content="Student From Shanghai Institute of Nutrition and Health(SINH), CAS">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="WENJU QIAN‘s tech blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/12/01/%E6%95%B0%E6%8D%AE%E6%95%B4%E7%90%86%E4%B8%8Etidyverse%E7%B3%BB%E7%BB%9F/" class="post-title-link" itemprop="url">数据整理与tidyverse系统</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2020-12-01 20:27:36" itemprop="dateCreated datePublished" datetime="2020-12-01T20:27:36+08:00">2020-12-01</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2021-08-04 10:12:35" itemprop="dateModified" datetime="2021-08-04T10:12:35+08:00">2021-08-04</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2020/12/01/%E6%95%B0%E6%8D%AE%E6%95%B4%E7%90%86%E4%B8%8Etidyverse%E7%B3%BB%E7%BB%9F/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/12/01/%E6%95%B0%E6%8D%AE%E6%95%B4%E7%90%86%E4%B8%8Etidyverse%E7%B3%BB%E7%BB%9F/" itemprop="commentCount"></span>
</a>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="en">
<link itemprop="mainEntityOfPage" href="http://example.com/2020/12/01/%E6%95%B0%E6%8D%AE%E6%95%B4%E7%90%86%E4%B8%8Etidyverse%E7%B3%BB%E7%BB%9F(%E4%B8%80)/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="WENJU QIAN">
<meta itemprop="description" content="Student From Shanghai Institute of Nutrition and Health(SINH), CAS">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="WENJU QIAN‘s tech blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/12/01/%E6%95%B0%E6%8D%AE%E6%95%B4%E7%90%86%E4%B8%8Etidyverse%E7%B3%BB%E7%BB%9F(%E4%B8%80)/" class="post-title-link" itemprop="url">数据整理与tidyverse系统(一)</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2020-12-01 20:27:36" itemprop="dateCreated datePublished" datetime="2020-12-01T20:27:36+08:00">2020-12-01</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>