Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
replace print by log.info
Browse files Browse the repository at this point in the history
  • Loading branch information
Donaim committed Sep 26, 2023
1 parent 2849537 commit 2915030
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions intact/intact.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,8 +769,8 @@ def analyse_single_sequence(holistic, sequence, blast_rows):
if forward_score >= reverse_score:
aligned_sequence = forward_aligned_sequence
else:
print("Reversing sequence " + sequence.id + "; forward score "
+ str(forward_score) + "; reverse score " + str(reverse_score))
log.info("Reversing sequence " + sequence.id + "; forward score "
+ str(forward_score) + "; reverse score " + str(reverse_score))
aligned_sequence = reverse_aligned_sequence
sequence = aligned_sequence.this

Expand Down

0 comments on commit 2915030

Please sign in to comment.