上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 49 下一页
摘要: file文件如下: 想实现第8列和第9列相加,则直接$8+$9即可实现: awk ' {print $1,$2,$3,$4,$5,$6,$7,$8,$9,$8+$9,$10,$11,$12,$13,$14,$15,$16,$17}' test 效果如下: 阅读全文
posted @ 2021-05-14 13:06 橙子牛奶糖 阅读(1067) 评论(0) 推荐(1) 编辑
摘要: 现有文件 file 如下所示: 想利用awk将这一列转为一行,并且分隔符为双引号和逗号; 用如下命令实现: awk '{printf $0"\",\""}' file 得到如下结果: 阅读全文
posted @ 2021-05-13 23:18 橙子牛奶糖 阅读(1941) 评论(0) 推荐(1) 编辑
摘要: 看文献时,翻到一张保守性得分图: 图片来源:Reducing the structure bias of RNA-Seq reveals a large number of non-annotated non-coding RNA 原文描述:As expected, the most conserv 阅读全文
posted @ 2021-05-13 15:22 橙子牛奶糖 阅读(404) 评论(0) 推荐(1) 编辑
摘要: file文件如下所示: 任务1:提取所有列数为7的行 awk '{if(NF==7) print $0}' file > filecol7 生成的filecol7如下所示: 任务2:提取所有列数不为7的行 awk '{if(NF!=7) print $0}' file > fileno7 生成的fi 阅读全文
posted @ 2021-05-10 12:46 橙子牛奶糖 阅读(196) 评论(0) 推荐(1) 编辑
摘要: 本周最新文献速递20210509 一 文献题目: Neuronal ApoE upregulates MHC-I expression to drive selective neurodegeneration in Alzheimer's disease 不想看英文题目: 神经元ApoE上调MHC- 阅读全文
posted @ 2021-05-09 20:24 橙子牛奶糖 阅读(263) 评论(0) 推荐(1) 编辑
摘要: 第一天: 第17天: 第32天: 第46天: 第56天: 回广东了,把它们留在上海了,希望办公室的人能帮我照顾好它们。 第86天:图片来自倩倩姐 阅读全文
posted @ 2021-05-09 14:58 橙子牛奶糖 阅读(204) 评论(0) 推荐(1) 编辑
摘要: 使用命令conda install -c conda-forge rpy2安装python模块时出现报错: UnavailableInvalidChannel: The channel is not accessible or is invalid. channel name: None chann 阅读全文
posted @ 2021-05-09 00:31 橙子牛奶糖 阅读(8607) 评论(0) 推荐(1) 编辑
摘要: 使用awk提取数值时遇到一个问题。 具体来说,我想提取第一列数值为1,第二列数值在61804和61807之间。 使用以下命令以及各自对应的结果为: 第一种情况,第二列不加上双引号: 第一种情况,第二列加上双引号: 很显然,第一种情况才是我们要的结果。 暂时的结论是:数值型不需要加双引号,字符型才需要 阅读全文
posted @ 2021-05-06 13:16 橙子牛奶糖 阅读(150) 评论(4) 推荐(1) 编辑
摘要: 本周最新文献速递20210425 一 文献题目: Barcoded viral tracing of single-cell interactions in central nervous system inflammation 不想看英文题目: 中枢神经系统炎症中细胞间相互作用机制的研究 杂志和影 阅读全文
posted @ 2021-04-25 21:02 橙子牛奶糖 阅读(215) 评论(0) 推荐(1) 编辑
摘要: 本周最新文献速递20210418 一 文献题目: Single cell transcriptional and chromatin accessibility profiling redefine cellular heterogeneity in the adult human kidney 不 阅读全文
posted @ 2021-04-18 20:09 橙子牛奶糖 阅读(277) 评论(0) 推荐(1) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 49 下一页