Skip to content

Commit 962808d

Browse files
committed
Change description
1 parent 46aa2b2 commit 962808d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Key parameters:
2323
- `-a` Output file name. Format .gam or .json.
2424

2525
Parameters related to colinear chaining:
26-
- `--speed <int>` Use 2 or 3 (or larger values) if you want GraphChainer to be faster, but slightly less accurate (default 1).
26+
- `--speed <double>` Speed-up factor (default 1). Use >1 (<1, >0) for faster (slower), but less (more) accurate alignments. It increases (decreases) the sampling rate of fragments.
2727
- `--colinear-split-len <int>` The length of the fragments in which the long read is split to create anchors (default 35).
2828
- `--colinear-split-gap <int>` The distance between consecutive fragments (default 35). If `--speed` is set, then always `--colinear-split-gap = ceil(--speed * --colinear-split-len`).
2929
- `--colinear-gap <int>` When converting an optimal chain of anchors into an alignment path, split the path if the distance in the graph between consecutive anchors is greater than this value (default 10000).

src/AlignerMain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ int main(int argc, char** argv)
4040
;
4141
boost::program_options::options_description clcparams("Colinear chaining parameters");
4242
clcparams.add_options()
43-
("speed", boost::program_options::value<long long>(), "Speed-up factor [default 1]. Use >1 (<1) for faster (slower), but less (more) accurate alignments. It increases (decreases) the sampling rate of fragments.")
43+
("speed", boost::program_options::value<long long>(), "Speed-up factor [default 1]. Use >1 (<1, >0) for faster (slower), but less (more) accurate alignments. It increases (decreases) the sampling rate of fragments.")
4444
("colinear-split-len", boost::program_options::value<long long>(), "The length of the fragments in which the long read is split to create anchors. [default 35]")
4545
("colinear-split-gap", boost::program_options::value<long long>(), "The distance between consecutive fragments [default 35]. If --speed is set, then always --colinear-split-gap = ceil(--speed * --colinear-split-len).")
4646
("colinear-gap", boost::program_options::value<long long>(), "When converting an optimal chain of anchors into an alignment path, split the path if the distance between consecutive anchors is greater than this value [default 10000].")

0 commit comments

Comments
 (0)