摘要: 001、 [root@pc1 test]# ls a.txt [root@pc1 test]# cat a.txt 01 02bb 03 04 05 06aa 07 08bb 09 10 11b 12 13 aa14 15bb 16 17 18 19 20 [root@pc1 test]# sed 阅读全文
posted @ 2026-06-24 18:12 小鲨鱼2018 阅读(4) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test2]# ls a.txt [root@PC1 test2]# cat a.txt ./KVC/267189.chr13.error ./KVC/267182.chr6.error ./KVC/267183.chr7.error ./MGH/267281.chr2 阅读全文
posted @ 2026-06-23 15:19 小鲨鱼2018 阅读(5) 评论(0) 推荐(0)
摘要: 001、 。 阅读全文
posted @ 2026-06-21 23:30 小鲨鱼2018 阅读(3) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test2]# ls a.txt [root@PC1 test2]# cat a.txt ## 测试数据 ANM CYM IFM ARM LRM HYB URI [root@PC1 test2]# awk '{ay1[NR]=$1} END {for(i=1;i<=NR 阅读全文
posted @ 2026-06-18 17:51 小鲨鱼2018 阅读(2) 评论(0) 推荐(0)
摘要: 001、方差:观测值偏离平均值的平方的平均值,反映数据的离散程度。 002、协方差:每个位置的“偏离均值乘积”的平均。 。 阅读全文
posted @ 2026-06-16 23:45 小鲨鱼2018 阅读(5) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test2]# ls a.txt [root@PC1 test2]# cat a.txt 0|2 03 0|4 07 08 09 17 1|8 19 22 23 24 27 2|8 29 [root@PC1 test2]# grep "|" a.txt 0|2 03 0 阅读全文
posted @ 2026-06-15 17:03 小鲨鱼2018 阅读(4) 评论(0) 推荐(0)
摘要: 001、安装python3.8环境 conda create -n loter_py38 python=3.8 conda activate loter_py38 002、 下载安装包并安装 git clone https://github.com/bcm-uga/Loter.gitcd Loter 阅读全文
posted @ 2026-06-15 15:54 小鲨鱼2018 阅读(4) 评论(0) 推荐(0)
摘要: 001、loter安装报错: 002、解决方法: conda install -c conda-forge "libblas=*=*openblas" "liblapack=*=*openblas" openblas -y 。 阅读全文
posted @ 2026-06-15 15:10 小鲨鱼2018 阅读(4) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试数据,第一列是类别数目 3 Algeria 6 Cameroon 5 Chad [root@PC1 test]# awk '{for(i=1; i<=$1; i++) {su 阅读全文
posted @ 2026-06-11 09:10 小鲨鱼2018 阅读(4) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试数据 AFI:103 U AFI AFI:11 U AFI MEA:10A U MEA [root@PC1 test]# awk '{match($1,/:.*/); pri 阅读全文
posted @ 2026-06-04 16:35 小鲨鱼2018 阅读(6) 评论(0) 推荐(0)