@@ -378,6 +378,11 @@ int parse_arguments(int argc, const char ** argv)
378
378
verbose = atoi (argv[i + 1 ]);
379
379
i++;
380
380
}
381
+ else if (string (argv[i]) == " --assemble_duplicates" )
382
+ {
383
+ assemble_duplicates = atoi (argv[i + 1 ]);
384
+ i++;
385
+ }
381
386
else if (string (argv[i]) == " --batch_bundle_size" )
382
387
{
383
388
batch_bundle_size = atoi (argv[i + 1 ]);
@@ -541,6 +546,7 @@ int print_help()
541
546
printf (" %-42s %s\n " , " --version" , " print current version of Scallop and exit" );
542
547
printf (" %-42s %s\n " , " --preview" , " determine fragment-length-range and library-type and exit" );
543
548
printf (" %-42s %s\n " , " --verbose <0, 1, 2>" , " 0: quiet; 1: one line for each graph; 2: with details, default: 1" );
549
+ printf (" %-42s %s\n " , " --assemble_duplicates <integer>" , " the number of consensus runs of the decomposition, default: 10" );
544
550
printf (" %-42s %s\n " , " --library_type <first, second, unstranded>" , " library type of the sample, default: unstranded" );
545
551
printf (" %-42s %s\n " , " --min_transcript_coverage <float>" , " minimum coverage required for a multi-exon transcript, default: 0.5" );
546
552
printf (" %-42s %s\n " , " --min_single_exon_coverage <float>" , " minimum coverage required for a single-exon transcript, default: 20" );
0 commit comments