Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6fa89f0

Browse files
committedAug 2, 2023
Fix bug when calling from clipped reads
1 parent db90155 commit 6fa89f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎caller.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ void Caller::run() {
6565
int s = 0;
6666
for (int i = 0; i < config->threads; i++) {
6767
s += clipper._p_svs[i].size();
68-
clipped_svs.insert(svs.begin(), clipper._p_svs[i].begin(),
68+
clipped_svs.insert(clipped_svs.begin(), clipper._p_svs[i].begin(),
6969
clipper._p_svs[i].end());
7070
}
7171
lprint({"Predicted", to_string(s), "SVs from clipped SFS."});

0 commit comments

Comments
 (0)
Please sign in to comment.