Skip to content

Commit b66a21d

Browse files
committed
fixed a few typos
1 parent 18d3439 commit b66a21d

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

stringtie.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ the following options are available:\n\
8080
(default: 1.0)\n\
8181
-f <min_iso> minimum isoform fraction (default: 0.01)\n\
8282
-g <gap_len> gap between transcripts to merge together (default: 250)\n\
83-
-i keep merged transcripts with retained introns; be default\n\
84-
these are not kept unless there is strong evidence for them\n\
83+
-i keep merged transcripts with retained introns; by default\n\
84+
these are not kept unless there is strong evidence for them\n\
8585
-l <label> name prefix for output transcripts (default: MSTRG)\n\
8686
"
8787
/*
@@ -875,13 +875,12 @@ void processOptions(GArgs& args) {
875875

876876
s=args.getOpt('g');
877877
if (!s.is_empty()) bundledist=s.asInt();
878+
else if(mergeMode) bundledist=250; // should figure out here a reasonable parameter for merge
878879
s=args.getOpt('p');
879880
if (!s.is_empty()) {
880881
num_cpus=s.asInt();
881882
if (num_cpus<=0) num_cpus=1;
882883
}
883-
else if(mergeMode) bundledist=250; // should figure out here a reasonable parameter for merge
884-
885884
s=args.getOpt('a');
886885
if (!s.is_empty()) {
887886
junctionsupport=(uint)s.asInt();

0 commit comments

Comments
 (0)