摘要: 001、不使用对象式宏 [root@localhost test]# ls test.c [root@localhost test]# cat test.c ## 测试程序 #include <stdio.h> int main(void) { int i, sum = 0; int v[5] = 阅读全文
posted @ 2024-10-04 11:59 小鲨鱼2018 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 001、 genes <- read.table("genes.txt") ## 读取基因symbol head(genes) tail(genes) genes <- genes[genes != "NA_NA" & genes != "unknow",, drop = FALSE] ## 去除无 阅读全文
posted @ 2024-10-04 11:51 小鲨鱼2018 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 001、列表转换为字符串 >>> list1 ['xxx', 'yyy', 'zzz'] >>> "".join(list1) ## 使用字符串内置函数join + 可迭代对象 'xxxyyyzzz' >>> "_".join(list1) 'xxx_yyy_zzz' 002、字符串转换为列表 >> 阅读全文
posted @ 2024-10-01 15:40 小鲨鱼2018 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@localhost test]# ls a.txt [root@localhost test]# cat a.txt ## 测试数据 aadd kk;gene=ABEK:ett 8735 fdfk jj;gene=IYNF:34DF UYG [root@localhost te 阅读全文
posted @ 2024-09-25 11:16 小鲨鱼2018 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试文本 abk akkkkccc 8777 ,,, aaaf 333444 uukk22 [root@PC1 test]# cat a.txt | tr -s [:alnum: 阅读全文
posted @ 2024-09-22 19:52 小鲨鱼2018 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试数据 afdf eDET FDSS FFde fexk mxnd [root@PC1 test]# cat a.txt | awk '{for(i = 1; i <= NF; 阅读全文
posted @ 2024-09-22 19:40 小鲨鱼2018 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 001、大写转换为小写 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试数据 ab cD EF HI KL mn Op qM [root@PC1 test]# sed 's/[A-Z]/\L&/g' a.txt ## 所有的大写转换 阅读全文
posted @ 2024-09-22 19:28 小鲨鱼2018 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 001、 >>> list1 ## 测试列表 ['chicken', 'duck', 'goose', 'iron', 'xxx'] >>> list1[:3] ## 前三个 ['chicken', 'duck', 'goose'] >>> list1[-3:] ## 后三个 ['goose', ' 阅读全文
posted @ 2024-09-22 15:11 小鲨鱼2018 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int main(void) { int i; puts("please input an integer."); printf("i = " 阅读全文
posted @ 2024-09-20 13:07 小鲨鱼2018 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@localhost test]# ls ## 两个测试c程序 test01.c test02.c [root@localhost test]# cat test01.c ## 后置递增运算符,表达式的值等于递增前的表达式的值 #include <stdio.h> int mai 阅读全文
posted @ 2024-09-20 08:47 小鲨鱼2018 阅读(5) 评论(0) 推荐(0) 编辑