Skip to content

Commit

Permalink
Fix 4dExtract problem w/ intra-exon duplication
Browse files Browse the repository at this point in the history
(hopefully)
  • Loading branch information
joelarmstrong committed Nov 15, 2013
1 parent 01df73c commit bba26fe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions extract/impl/hal4dExtract.cpp
Expand Up @@ -264,9 +264,11 @@ void Extract4d::extractConservedBlocks4d()
if (reversed) {
colIt->toSite(colIt->getReferenceSequencePosition() + _refSequence->getStartPosition() - 1,
colIt->getReferenceSequencePosition() + _refSequence->getStartPosition(),
false);
true);
} else {
colIt->toRight();
colIt->toSite(colIt->getReferenceSequencePosition() + _refSequence->getStartPosition() + 1,
colIt->getReferenceSequencePosition() + _refSequence->getStartPosition() + 2,
true);
}
}
}
Expand Down

0 comments on commit bba26fe

Please sign in to comment.