From 779037404808f5cb5638fcdcdcab396c0a51edd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20H=C3=A4gglund?= Date: Wed, 29 Mar 2017 14:32:23 +0200 Subject: [PATCH] Removed prints that was used for tracing error --- CanSNPer/__main__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CanSNPer/__main__.py b/CanSNPer/__main__.py index e3dfe98..3936492 100755 --- a/CanSNPer/__main__.py +++ b/CanSNPer/__main__.py @@ -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)