03 2025 档案
摘要:001、 [root@PC1 test]# echo ${array1[*]} 100 aaa xxxYYY [root@PC1 test]# echo ${array1[@]} 100 aaa xxxYYY [root@PC1 test]# echo ${!array1[@]} 0 1 2 [ro
阅读全文
摘要:001、 [root@PC1 test]# ls a.sh [root@PC1 test]# cat a.sh #!/bin/bash echo hello world [root@PC1 test]# sh -c bash a.sh ## 更新了系统环境变量? (base) [root@PC1 t
阅读全文
摘要:001、 [root@PC1 test]# ls a.txt b.txt test [root@PC1 test]# tree . ├── a.txt ├── b.txt └── test 1 directory, 2 files [root@PC1 test]# find *.txt a.txt
阅读全文
摘要:001、 [root@PC1 test2]# ls a.txt [root@PC1 test2]# cat a.txt ## 测试数据 W-URI-20 W-HYB-21 aaa fff-ddd-eee ZOM-1 ZOM-9 AWA-A-1 AWA-A-6 [root@PC1 test2]# se
阅读全文
摘要:001、 软件下载: github网站:https://github.com/BGI-shenzhen/PopLDdecay 002、下载最新版本 wget -c https://github.com/BGI-shenzhen/PopLDdecay/archive/refs/tags/v3.43.t
阅读全文
摘要:001、测试文件vcf文件 (base) [b20223040323@admin2 02_NJ_tree]$ ls outcome.vcf 002、格式转换;输入文件为vcf文件 run_pipeline.pl -Xms1G -Xmx5G -importGuess outcome.vcf -Expo
阅读全文
摘要:Linux 中 phylip软件的安装 001、官方网站:https://phylipweb.github.io/phylip/ 002、下载安装包: a、 b、 c、 wget -c https://phylipweb.github.io/phylip/download/phylip-3.697.
阅读全文
摘要:001、 library(randomcoloR) palette <- randomColor(count = 54) #随机生成60种颜色,其实里面有重复的 palette <- distinctColorPalette(54) #差异明显的60种 palette plot(1:54, pch
阅读全文