Skip to content

Commit 362fd7d

Browse files
committed
update cmd
1 parent 19b9111 commit 362fd7d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/config.cc

+6
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,11 @@ int parse_arguments(int argc, const char ** argv)
378378
verbose = atoi(argv[i + 1]);
379379
i++;
380380
}
381+
else if(string(argv[i]) == "--assemble_duplicates")
382+
{
383+
assemble_duplicates = atoi(argv[i + 1]);
384+
i++;
385+
}
381386
else if(string(argv[i]) == "--batch_bundle_size")
382387
{
383388
batch_bundle_size = atoi(argv[i + 1]);
@@ -541,6 +546,7 @@ int print_help()
541546
printf(" %-42s %s\n", "--version", "print current version of Scallop and exit");
542547
printf(" %-42s %s\n", "--preview", "determine fragment-length-range and library-type and exit");
543548
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");
544550
printf(" %-42s %s\n", "--library_type <first, second, unstranded>", "library type of the sample, default: unstranded");
545551
printf(" %-42s %s\n", "--min_transcript_coverage <float>", "minimum coverage required for a multi-exon transcript, default: 0.5");
546552
printf(" %-42s %s\n", "--min_single_exon_coverage <float>", "minimum coverage required for a single-exon transcript, default: 20");

0 commit comments

Comments
 (0)