Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
tchen-tt committed Jul 30, 2024
1 parent c96affa commit f782777
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
^.*\.Rproj$
^\.Rproj\.user$
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
src/*.o
src/*.so
src/*.dll
2 changes: 1 addition & 1 deletion src/teseq.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ void processSequence1(bam1_t *b, bam_hdr_t *hdr, FILE *f, int length, int tsd) {
continue;
}
}
else if (i == c->n_cigar){
else if (i == c->n_cigar - 1){
if (bam_cigar_op(cigar[i-1]) == 0) {
type = 2; //MS
} else {
Expand Down

0 comments on commit f782777

Please sign in to comment.