上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 385 下一页
摘要: 000、pcre是什么? perl正则表达式函数库 ‌PCRE(Perl Compatible Regular Expressions)是一个用C语言编写的正则表达式函数库,由菲利普·海泽(Philip Hazel)编写‌。 001、问题 configure: error: PCRE2 librar 阅读全文
posted @ 2024-12-10 15:44 小鲨鱼2018 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 001、 >>> eval("10 + 100") ## 对字符串数值进行计算 110 >>> eval("10 - 100") -90 >>> eval("10 * 100") 1000 >>> eval("10 / 100") 0.1 >>> eval(10 / 100) ## 参数需要是字符串 阅读全文
posted @ 2024-12-10 10:40 小鲨鱼2018 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 01、基础用法,获取路径中的最后一个字段 [root@PC1 test]# echo $PWD /home/test [root@PC1 test]# basename $PWD ## 基本用法, 获取路径的最后一个字段 test [root@PC1 test]# basename /home/xx 阅读全文
posted @ 2024-12-10 09:15 小鲨鱼2018 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 001、dir列出指定目录下的所有文件 [root@localhost test]# ls 1.txt 3.txt 5.txt 8.txt a.txt result.txt [root@localhost test]# dir ## 列出当前目录下的所有文件 1.txt 3.txt 5.txt 8. 阅读全文
posted @ 2024-12-09 23:22 小鲨鱼2018 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@localhost test]# ls a.txt [root@localhost test]# cat a.txt ## 测试数据 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 阅读全文
posted @ 2024-12-09 23:07 小鲨鱼2018 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 001、 conda install bioconda::dedup 002、调用测试 (base) [b20223040323@admin2 DeDup-0.12.9]$ dedup --version DeDup v0.12.9 DeDup v0.12.9 。 ref: 01、https://a 阅读全文
posted @ 2024-12-09 21:44 小鲨鱼2018 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 001、问题 Exception in thread "Thread-0" java.lang.RuntimeException: Sequence and quality length don't match: 002、 出现这个问题的原因是原始fastq文件损坏,需要重新下载a、通过解压原始gz 阅读全文
posted @ 2024-12-08 18:06 小鲨鱼2018 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 001、问题 /usr/bin/ld: cannot find -lopenblas 。 002、解决方法 yum -y install epel-release yum -y install openblas-devel 003、检测效果 make install 。 阅读全文
posted @ 2024-12-07 19:29 小鲨鱼2018 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 1、 make clean和make clobber区别。 https://blog.csdn.net/qq_32014215/article/details/106155403; 阅读全文
posted @ 2024-12-07 17:04 小鲨鱼2018 阅读(8) 评论(0) 推荐(0) 编辑
摘要: c语言中作用域和存储期的区别 阅读全文
posted @ 2024-12-07 13:01 小鲨鱼2018 阅读(9) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 385 下一页