会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小鲨鱼2018
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
129
130
131
132
133
134
135
136
137
···
403
下一页
2023年3月14日
linux 中如何同时提取数据的开头和结尾的指定行数
摘要: 今天遇到一个小问题,要提取文件的行首和行尾指定的行数, 不想生成中间文件, 一时没有想出来怎么处理,后来想到一个组合命令实现。如下: 001、 [root@PC1 test2]# ls a.txt [root@PC1 test2]# cat a.txt ## 测试数据 01 02 03 04 05
阅读全文
posted @ 2023-03-14 12:45 小鲨鱼2018
阅读(134)
评论(0)
推荐(0)
2023年3月13日
plink 软件中 --recode 12 选项
摘要: 测试plink 软件中 --recode 12 做了什么。 001、首选看一下plink格式的测试数据 [root@PC1 test01]# ls outcome.map outcome.ped [root@PC1 test01]# cat outcome.map ## 一共5个位点 1 snp1
阅读全文
posted @ 2023-03-13 17:28 小鲨鱼2018
阅读(307)
评论(0)
推荐(0)
2023年3月10日
linux 中awk语句统计pav矩阵中基因的存在频率
摘要: 001、测试数据如下: [root@PC1 test2]# ls a.txt [root@PC1 test2]# cat a.txt 1 0 1 0 1 0 1 1 1 1 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1 0 0 0 1 1 以上测试数据中,行为样本,也就是以此为
阅读全文
posted @ 2023-03-10 18:48 小鲨鱼2018
阅读(50)
评论(0)
推荐(0)
word中明明都是单倍行距,而且字体、字号都一样,为什么看着间距不一样?
摘要: 今天遇到一个比较2的问题。 001、word中字体、字号都一样,而且行间距都是单倍行距,但是看着行距明显不一样,如下图所示: 就是1和2中的行距明显不一样,哪里出了问题??? 002、 查了一下, 有可能是文档网格的原因导致的,可以这样解决。 其中的第4步骤中,打开默认是44, 调整为42,然后点击
阅读全文
posted @ 2023-03-10 15:17 小鲨鱼2018
阅读(3576)
评论(0)
推荐(0)
2023年3月8日
samtools 统计重测序数据深度 depth、depth -a、depth -aa的联系与区别
摘要: 测试数据链接: 链接:https://pan.baidu.com/s/18_R3W1K7DYdUA9DxGZ0jxw 提取码:nklh --来自百度网盘超级会员V6的分享 背景知识: 将质控后的fastq文件比对到参考基因组之后,有可能会有部分染色体根本比对不上。 比如参考基因组中一共有10条染色体
阅读全文
posted @ 2023-03-08 16:20 小鲨鱼2018
阅读(5114)
评论(0)
推荐(1)
2023年3月2日
linux 中 判断一列数据中指定的字符是否有连续的重复
摘要: 001、 [root@PC1 test]# ls a.txt b.txt [root@PC1 test]# cat a.txt ## 测试数据a.txt gene exon gene exon exon exon exon [root@PC1 test]# awk 'BEGIN{idx=0} {if
阅读全文
posted @ 2023-03-02 22:58 小鲨鱼2018
阅读(37)
评论(0)
推荐(0)
2023年2月27日
centos7中 /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory
摘要: 001、 安装strcuture遇到如下问题: [root@PC1 console]# ./structure -bash: ./structure: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory 002、解决方
阅读全文
posted @ 2023-02-27 17:19 小鲨鱼2018
阅读(393)
评论(0)
推荐(0)
Error downloading packages: glibc-2.17-326.el7_9.i686: [Errno 5]
摘要: 001、yum安装软件出现如下报错 002、其中的一个原因是 python的版本造成的,即将系统默认调用的python有python2改用了python3, 而yum命令兼容的python版本是python2,因此解决方法是将yum调用的python改为2,及修改yum下载器中的python调用路径
阅读全文
posted @ 2023-02-27 17:04 小鲨鱼2018
阅读(673)
评论(0)
推荐(0)
win10 中tassel5安装后字体特别小的解决方法
摘要: 001、问题:win10中安装tassel5后字体特别小,如下: 解决方法: 002、 找到tassel5的安装位置(在左下角任务栏中找到该应用后,右击, 然后依次选择) 出现如下界面: 003、右击, 选择属性 004、选择兼容性, 点击更改高DPI设置 005、执行1、2、3. 006、点击应用
阅读全文
posted @ 2023-02-27 16:32 小鲨鱼2018
阅读(240)
评论(0)
推荐(0)
centos 7中 出现 bash: pip: command not found...解决方法
摘要: 001、系统为centos7.6 [root@PC1 test]# cat /etc/system-release CentOS Linux release 7.6.1810 (Core) 002、默认可以调用的python版本为2.7 [root@PC1 test]# python --versi
阅读全文
posted @ 2023-02-27 09:46 小鲨鱼2018
阅读(2001)
评论(0)
推荐(0)
上一页
1
···
129
130
131
132
133
134
135
136
137
···
403
下一页
公告