@@ -296,21 +296,17 @@ OptionMap parse_options(const int argc, const char** argv)
296296 po::bool_switch ()->default_value (false ),
297297 " Filter reads with possible adapter contamination" )
298298
299- (" no-reads-with-decoy-supplementary-alignments" ,
300- po::bool_switch ()->default_value (false ),
301- " Filter reads with supplementary alignments mapped to decoy contigs" )
302-
303- (" allow-reads-with-good-decoy-supplementary-alignments" ,
304- po::bool_switch ()->default_value (false ),
305- " Do not filer reads with supplementary alignments mapped to decoy contigs with high mapping quality (--min-mapping-quality)" )
299+ (" max-decoy-supplementary-alignment-mapping-quality" ,
300+ po::value<int >()->default_value (5 ),
301+ " Filter reads with supplementary alignments mapped to decoy contigs with mapping quality greater than this" )
306302
307- (" no-reads-with- unplaced-or-unlocalized-supplementary-alignments " ,
308- po::bool_switch ()->default_value (false ),
309- " Filter reads with supplementary alignments mapped to unplaced or unlocalized contigs " )
303+ (" max- unplaced-supplementary-alignment-mapping-quality " ,
304+ po::value< int > ()->default_value (5 ),
305+ " Filter reads with supplementary alignments mapped to unplaced contigs with mapping quality greater than this " )
310306
311- (" allow-reads-with-good-unplaced-or- unlocalized-supplementary-alignments " ,
312- po::bool_switch ()->default_value (false ),
313- " Do not filer reads with supplementary alignments mapped to unplaced or unlocalized contigs with high mapping quality (--min-mapping-quality) " )
307+ (" max- unlocalized-supplementary-alignment-mapping-quality " ,
308+ po::value< int > ()->default_value (5 ),
309+ " Filter reads with supplementary alignments mapped to unlocalized contigs with mapping quality greater than this " )
314310
315311 (" disable-downsampling" ,
316312 po::bool_switch ()->default_value (false ),
0 commit comments