@@ -217,9 +217,6 @@ pub enum Subcli {
217217 /// the number of reads in the chunk on each thread
218218 #[ arg( short, long, default_value_t = 5000 , value_name = "INT" ) ]
219219 chunk : usize ,
220- /// number of additional worker threads to use
221- #[ arg( short = '@' , long = "thread" , default_value_t = 4 , value_name = "INT" ) ]
222- thread : usize ,
223220 /// specify the file to store reads(interleaved) that cannot pass the filters, file ending in .gz/.bz2/.xz will be compressed automatically
224221 #[ arg( short = 'u' , long = "failed" , value_name = "FILE" ) ]
225222 failed : String ,
@@ -260,9 +257,6 @@ pub enum Subcli {
260257 /// the number of reads in the chunk on each thread
261258 #[ arg( short, long, default_value_t = 5000 , value_name = "INT" ) ]
262259 chunk : usize ,
263- /// number of additional worker threads to use
264- #[ arg( short = '@' , long = "thread" , default_value_t = 1 , value_name = "INT" ) ]
265- thread : usize ,
266260 /// output contain pattern/motif reads result fastq file or write to stdout, file ending in .gz/.bz2/.xz will be compressed automatically
267261 #[ arg( short = 'o' , long = "out" , value_name = "FILE" ) ]
268262 out : Option < String > ,
@@ -334,9 +328,6 @@ pub enum Subcli {
334328 /// the number of reads in the chunk on each thread
335329 #[ arg( short, long, default_value_t = 5000 , value_name = "INT" ) ]
336330 chunk : usize ,
337- /// number of additional worker threads to use
338- #[ arg( short = '@' , long = "thread" , default_value_t = 3 , value_name = "INT" ) ]
339- thread : usize ,
340331 /// output file name or write to stdout, file ending in .gz/.bz2/.xz will be compressed automatically
341332 #[ arg( short = 'o' , long = "out" , value_name = "FILE" ) ]
342333 out : Option < String > ,
0 commit comments