上一页 1 ··· 82 83 84 85 86 87 88 89 90 ··· 367 下一页
摘要: 001、 [root@PC1 test3]# ls a.txt [root@PC1 test3]# cat a.txt ## 测试文件 10 2 3 0 3 6 6 12 1 1 5 1 2 2 2 4 2 26 8 3 33 34 5 3 [root@PC1 test3]# python ## 启 阅读全文
posted @ 2023-05-16 23:54 小鲨鱼2018 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 001、生成基因名称的列表 awk -F "\t" '$3 == "gene" && $NF ~ /gene=/ {print $NF}' chr1.gff | sed 's/\(.*\)\(gene=[^;]\+\)\(.*\)/\2/' | sort | uniq > gene.list 002 阅读全文
posted @ 2023-05-16 22:27 小鲨鱼2018 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test4]# ls a.txt [root@PC1 test4]# cat a.txt ## 测试数据 gbkey=mRNA;gene=ATP5O;model;evidence;Supporting [root@PC1 test4]# sed 's/\(.*\)\(g 阅读全文
posted @ 2023-05-16 18:34 小鲨鱼2018 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 ~]# pip config list 002、 [root@PC1 ~]# cd ~ [root@PC1 ~]# ls -a . .bash_history .bashrc .cshrc Documents .ICEauthority Music Public .tc 阅读全文
posted @ 2023-05-16 01:07 小鲨鱼2018 阅读(783) 评论(0) 推荐(0) 编辑
摘要: 001、python版本 和 pip版本 a、python版本 [root@PC1 pip]# python --version Python 3.11.3 b、pip版本 [root@PC1 Python-3.11.3]# pip --version pip 23.1.2 from /usr/lo 阅读全文
posted @ 2023-05-15 23:11 小鲨鱼2018 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 001、在利用python2.7环境下利用pip安装pyfaidx模块时报如下错误: ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command out 阅读全文
posted @ 2023-05-15 23:00 小鲨鱼2018 阅读(1003) 评论(0) 推荐(0) 编辑
摘要: python2.7中安装pip命令 001、 [root@PC1 test]# pip bash: pip: command not found... 002、 [root@PC1 test]# cat /etc/redhat-release 003、 [root@PC1 software]# cu 阅读全文
posted @ 2023-05-15 13:20 小鲨鱼2018 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 001 下载静态软件 wget https://github.com/shenwei356/seqkit/releases/download/v2.4.0/seqkit_linux_amd64.tar.gz 002、解压 tar -xzvf seqkit_linux_amd64.tar.gz 003 阅读全文
posted @ 2023-05-15 12:43 小鲨鱼2018 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 2>&1 & 0:标准输入 1:标准输出 2:标准错误输出 command 2>&1 > file.txt:将标准输出输出到file中,标准错误输出输出屏幕 command > file.txt 2>&1: 将标准错误输出 输出到标准输出中。 command 2> error.txt 1> righ 阅读全文
posted @ 2023-05-15 00:37 小鲨鱼2018 阅读(686) 评论(0) 推荐(0) 编辑
摘要: pscp属于putty软件下的命令。 001、从远端传输至本地 pscp root@192.168.254.130:/home/test/a.txt C:\Users\ljx\Desktop 002、从本地上传至远端 pscp C:\Users\ljx\Desktop\b.txt root@192. 阅读全文
posted @ 2023-05-14 23:59 小鲨鱼2018 阅读(59) 评论(0) 推荐(0) 编辑
上一页 1 ··· 82 83 84 85 86 87 88 89 90 ··· 367 下一页