Skip to content

Commit

Permalink
allowed soft-clipping in mapped read cigar string
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Pratt committed Apr 25, 2017
1 parent b644a9e commit f789997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clipper/src/readsToWiggle.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def get_full_length_cigar(read):
value, times = t

#value 3 is splice junction value 2 is deletion in read
if value == 3 or value == 2 or value == 1:
if value == 3 or value == 2 or value == 1 or value == 4:
continue
for x in xrange(times):
yield value

0 comments on commit f789997

Please sign in to comment.