下载源码:https://github.com/OpenGene/fastp
修改options.cpp 下列代码 :将16改成你想要的线程数比如96
if(thread < 1) {
thread = 1;
} else if(thread > 16) {
cerr << "WARNING: fastp uses up to 16 threads although you specified " << thread << endl;
thread = 16;
}
修改后编译:
sudo apt-get install libisal-dev
sudo apt-get install libdeflate-dev
make