Skip to content

Commit

Permalink
Add comment about confusion parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianwalenz committed Jul 13, 2020
1 parent 3c16a58 commit dee9262
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/bogart/AS_BAT_MarkRepeatReads.C
Original file line number Diff line number Diff line change
Expand Up @@ -669,6 +669,14 @@ findConfusedEdges(TigVector &tigs,
// extends into a repeat region, and the overlap region is entirely
// inside the repeat.
//
// We'll call it confused if there is an overlap to some other read
// that is comparable in length to the overlap to the read in the tig.
// Confused if:
// extOlapLen > intOlapLen - 2500 (confusedAbsolute, -ca parameter)
// extOlapLen > intOlapLen * 0.85 (confusedPercent, -cp parameter)
//
// (if only it was implemented that way)
//

if ((internal5sco.score > 0.0) &&
(external5sco.score > 0.0)) {
Expand Down

0 comments on commit dee9262

Please sign in to comment.