From 80068a3c192457afdafed705b9a04cc2deeba187 Mon Sep 17 00:00:00 2001 From: Celine Mercier Date: Sun, 31 Mar 2019 15:42:30 +0200 Subject: [PATCH] ngsfilter: fixed parsing error --- python/obitools3/parsers/ngsfilter.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/obitools3/parsers/ngsfilter.pyx b/python/obitools3/parsers/ngsfilter.pyx index 1212d36..fbe3e89 100755 --- a/python/obitools3/parsers/ngsfilter.pyx +++ b/python/obitools3/parsers/ngsfilter.pyx @@ -54,7 +54,7 @@ def ngsfilterIterator(lineiterator, new_lines.append(header) for line in all_lines: - split_line = line.split(sep) + split_line = line.split() tags = split_line.pop(2) tags = tags.split(b":") if len(tags) == 1: # Forward and reverse tags are the same