Skip to content

Commit

Permalink
fixing end location of left UTR by one
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjohnwright committed May 9, 2019
1 parent 91e73b4 commit ba85805
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rest_api/classes/sequence/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@
(conj
feature
{:start (- end
(+ 1 (- (:stop feature) (:start feature))))
(- (:stop feature) (:start feature)))
:stop (count sequence-positive)})))))))
modified-positive-features-with-padding (if (> padding 0)
(add-padding-to-feature-list
Expand Down

0 comments on commit ba85805

Please sign in to comment.