@@ -217,9 +217,6 @@ pub enum Subcli {
217
217
/// the number of reads in the chunk on each thread
218
218
#[ arg( short, long, default_value_t = 5000 , value_name = "INT" ) ]
219
219
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 ,
223
220
/// specify the file to store reads(interleaved) that cannot pass the filters, file ending in .gz/.bz2/.xz will be compressed automatically
224
221
#[ arg( short = 'u' , long = "failed" , value_name = "FILE" ) ]
225
222
failed : String ,
@@ -260,9 +257,6 @@ pub enum Subcli {
260
257
/// the number of reads in the chunk on each thread
261
258
#[ arg( short, long, default_value_t = 5000 , value_name = "INT" ) ]
262
259
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 ,
266
260
/// output contain pattern/motif reads result fastq file or write to stdout, file ending in .gz/.bz2/.xz will be compressed automatically
267
261
#[ arg( short = 'o' , long = "out" , value_name = "FILE" ) ]
268
262
out : Option < String > ,
@@ -334,9 +328,6 @@ pub enum Subcli {
334
328
/// the number of reads in the chunk on each thread
335
329
#[ arg( short, long, default_value_t = 5000 , value_name = "INT" ) ]
336
330
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 ,
340
331
/// output file name or write to stdout, file ending in .gz/.bz2/.xz will be compressed automatically
341
332
#[ arg( short = 'o' , long = "out" , value_name = "FILE" ) ]
342
333
out : Option < String > ,
0 commit comments