Skip to content
This repository has been archived by the owner on May 26, 2020. It is now read-only.

Commit

Permalink
Removed prints that was used for tracing error
Browse files Browse the repository at this point in the history
  • Loading branch information
emilhaegglund committed Mar 29, 2017
1 parent 421a3fb commit 7790374
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions CanSNPer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,9 +376,7 @@ def import_sequence(file_name, config, c):
seq_file = open(file_name, "r")
seq = "".join(seq_file.read().split("\n")[1:])
seq_file.close()
print(seq)
print(len(seq))
print("Here is error")

# Going to search for ATCGN and see if that is all we find
sequence_validation_regex = re.compile("[ATCGN]+")
validation_search = sequence_validation_regex.search(seq)
Expand Down

0 comments on commit 7790374

Please sign in to comment.