From 9fdacbf43c5c62c4db10766eb10d98bcc3b4dc65 Mon Sep 17 00:00:00 2001 From: Zengtudor Date: Fri, 20 Sep 2024 15:49:05 +0800 Subject: [PATCH] update --- src/main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 93dca75..2fadc05 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -26,7 +26,6 @@ int main() { try{ //原理是这里定义处理函数,将函数传入dna::open_file_and_calculate,在open_file_and_calculate中会调用传入的函数 - //参数列表 <文件分块内存大小,单个DNA序列最长大小>("输入文件名","输出文件名",序列处理函数); //这个函数在src/tools/dna里面 dna::open_file_and_calculate<(size_t)4*1024 * 1024 *1024 , (size_t)5e4+5>("filteredReads.txt", "reversedSequence.txt",reverseComplement);