上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 367 下一页
摘要: 001、方法1 ## step1: awk 'NR % 4 == 1' batch9.fastq | sed 'N; s/\n/\t/; s/\//\t/g' | awk '{if($1 == $3 && $2 != $4) {print (NR - 1) * 8 + 1, NR * 8}}' > 阅读全文
posted @ 2023-10-12 01:56 小鲨鱼2018 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@pc1 test2]# ls index.txt [root@pc1 test2]# cat index.txt ## 测试的一列数字 2 3 4 8 9 11 [root@pc1 test2]# awk '{if(NR == 1) {a = $0 - 0 - 1; for ( 阅读全文
posted @ 2023-10-11 23:16 小鲨鱼2018 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 001、测试数据 [root@pc1 test1]# ls a.txt index.txt [root@pc1 test1]# cat a.txt ## 测试文件 01 02 1 03 04 2 05 06 3 07 08 4 09 10 5 11 12 6 13 14 7 15 16 8 17 1 阅读全文
posted @ 2023-10-11 22:18 小鲨鱼2018 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 001、问题 samtools安装执行 ./configure报错如下: configure: error: liblzma development files not found 002、解决方法: yum -y install xz-devel 参考: 01、https://blog.csdn. 阅读全文
posted @ 2023-10-11 20:46 小鲨鱼2018 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 001、问题: ./a.out: error while loading shared libraries: libgsl.so.25: cannot open shared object file: No such file or directory 002、解决方法 [root@pc1 test 阅读全文
posted @ 2023-10-10 22:53 小鲨鱼2018 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 001、问题:安装gemma软件报错 src/param.cpp:30:26: fatal error: gsl/gsl_blas.h: No such file or directory 002、解决方法, 安装gls a、官网下载 http://mirrors.ustc.edu.cn/gnu/g 阅读全文
posted @ 2023-10-10 22:51 小鲨鱼2018 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 111111111、 以vcftools为例: 001、解压软件,查看软件内容 [root@pc1 software]# ls vcftools-0.1.16.tar.gz [root@pc1 software]# tar -xzf vcftools-0.1.16.tar.gz ## 解压缩 [ro 阅读全文
posted @ 2023-10-10 20:51 小鲨鱼2018 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 以bamtools软件为例。 001、 解压该软件 [root@pc1 software]# ls ## 列出安装包 bamtools-2.5.2.zip cmake-3.27.7 [root@pc1 software]# unzip bamtools-2.5.2.zip &> /dev/null 阅读全文
posted @ 2023-10-10 20:07 小鲨鱼2018 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 001、 为什么gnu具有这么大的推动作用 ? 阅读全文
posted @ 2023-10-10 19:34 小鲨鱼2018 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 001、 configure: 配置环境? ./configure 是用来检测你的安装平台的目标特征的。比如它会检测你是不是有CC或GCC,它是个shell脚本,另外,./configure是源代码安装的第一步,主要的作用是对即将安装的软件进行配置,检查当前的环境是否满足要安装软件的依赖关系。 00 阅读全文
posted @ 2023-10-10 18:05 小鲨鱼2018 阅读(107) 评论(0) 推荐(0) 编辑
上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 367 下一页