Skip to content

Commit

Permalink
fix pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Feb 25, 2017
1 parent fe48787 commit 756454e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_read_parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -634,14 +634,14 @@ def test_read_cleaning_output_partitions():
kmer = 'ACTGGGCG'
x.add_tag(kmer)
x.set_partition_id(kmer, 2)

kmer = 'CCGGCGTG'
x.add_tag(kmer)
x.set_partition_id(kmer, 3)

x.output_partitions(infile, savepath)

read_names = [ read.name for read in ReadParser(savepath) ]
read_names = [read.name for read in ReadParser(savepath)]
print(read_names)
assert len(read_names) == 4

Expand Down

0 comments on commit 756454e

Please sign in to comment.