Skip to content

Commit

Permalink
Merge pull request #49 from martinghunt/master
Browse files Browse the repository at this point in the history
Make tests pass from last merge
  • Loading branch information
John Tate committed Jul 15, 2015
2 parents 649daea + b4e2f3b commit d291ef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iva/tests/assembly_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def test_good_intervals_from_strand_coverage(self):
fwd_cov = [0, 1, 1, 2, 5, 10, 100, 10, 10, 6, 0, 10, 10, 10, 5, 10]
rev_cov = [0, 5, 5, 5, 5, 20, 10, 10, 10, 100, 9, 10, 10, 10, 5, 0]
expected = [(3,5), (7,8), (11,14)]
a = assembly.Assembly()
a = assembly.Assembly(strand_bias=0.2)
got = a._good_intervals_from_strand_coverage(fwd_cov, rev_cov)
self.assertListEqual(expected, got)

Expand Down

0 comments on commit d291ef1

Please sign in to comment.