Skip to content

Commit

Permalink
Merge 6b56044 into f73e9f1
Browse files Browse the repository at this point in the history
  • Loading branch information
genomematt committed Jun 8, 2019
2 parents f73e9f1 + 6b56044 commit 19f56c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xenomapper/xenomapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ def main_paired_end(readpairs,
if secondary_multi:
print('\t'.join(previous_line2),file=secondary_multi)
print('\t'.join(line2),file=secondary_multi)
elif forward_state == 'unresloved' or reverse_state == 'unresolved':
elif forward_state == 'unresolved' or reverse_state == 'unresolved':
if unresolved:
print('\t'.join(previous_line1),file=unresolved)
print('\t'.join(line1),file=unresolved)
Expand Down Expand Up @@ -520,7 +520,7 @@ def conservative_main_paired_end(readpairs,
if unassigned:
print('\t'.join(previous_line1),file=unassigned)
print('\t'.join(line1),file=unassigned)
elif forward_state == 'unresloved' or reverse_state == 'unresolved' \
elif forward_state == 'unresolved' or reverse_state == 'unresolved' \
or (forward_state in ['primary_specific','primary_multi'] and \
reverse_state in ['secondary_specific','secondary_multi']) \
or (forward_state in ['secondary_specific','secondary_multi'] and \
Expand Down

0 comments on commit 19f56c1

Please sign in to comment.