MECAT: fast mapping, error correction, and de novo assembly for single-molecule sequencing reads2021-07-152023-03-16Bioinformaticsbioinformatics/essay2021-07-15|391|0|0
ubuntu/debian相关2021-04-102025-08-18otherscrontab 定时器问题WSL 设置代理,使用外部windows的代理cat /etc/resolv.conf 查看 DNS 服务器 IP。可以看到 DNS 服务器 172.20.176.1 ,通过ALL_PROXY设置代理,export ALL_PROXY="http://172.20.176.1:10809&2021-04-10|419|0|0
leetcode-每日一题2020-12-022023-03-16leetcodeC/C++/leetcode204. 计数质数暴力筛选法,对所有数进行标记,对于一个质数,他所有的倍数都不是质数。class Solution {public: int countPrimes(int n) { if(n<3) return 0; vector<int> re2020-12-02|346|0|0