From a7380925f8594b56461d4bfb3f152417d50662be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20H=C3=A4gglund?= Date: Wed, 29 Mar 2017 14:27:53 +0200 Subject: [PATCH] Update version number and changelog --- CanSNPer/__main__.py | 6 ++++-- changelog | 4 ++++ setup.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CanSNPer/__main__.py b/CanSNPer/__main__.py index 766e2ed..e3dfe98 100755 --- a/CanSNPer/__main__.py +++ b/CanSNPer/__main__.py @@ -4,7 +4,7 @@ CanSNPer: A toolkit for SNP-typing using NGS data. Copyright (C) 2016 Adrian Lärkeryd -VERSION 1.0.8 +VERSION 1.0.9 This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -376,7 +376,9 @@ 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) diff --git a/changelog b/changelog index 3765b52..14c7359 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,7 @@ +2017-03-29 Emil Hägglund & Andreas Sjödin + CanSNPer version 1.0.9 + * Added Dockerfile + 2016-11-25 Emil Hägglund & Andreas Sjödin CanSNPer version 1.0.8 * bug fix release diff --git a/setup.py b/setup.py index f0b79c5..98a1ec3 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="CanSNPer", - version="1.0.8", + version="1.0.9", url="https://github.com/adrlar/CanSNPer", description="CanSNPer: A toolkit for SNP-typing using NGS data.", license="GPL'",