From a53154259823bd62e32dc698e73e8418a7978407 Mon Sep 17 00:00:00 2001 From: Katy Brown Date: Thu, 23 May 2024 10:25:12 +0100 Subject: [PATCH] messed up indentation doing pep8 --- CIAlign/consensusSeq.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CIAlign/consensusSeq.py b/CIAlign/consensusSeq.py index f458cdb..6240f0d 100755 --- a/CIAlign/consensusSeq.py +++ b/CIAlign/consensusSeq.py @@ -771,11 +771,11 @@ def compareAlignmentConsensus(arr, typ, booleanOrSimilarity="boolean", raise RuntimeError("This substitution matrix is not \ valid for \ alignment type %s" % typ) - else: - # verifies if the user would like to use the default matrix or - # their own - mat = pd.read_csv("%s/%s" % (matrix_dir, MatrixName), - comment="#", sep=r"\s+") + else: + # verifies if the user would like to use the default matrix or + # their own + mat = pd.read_csv("%s/%s" % (matrix_dir, MatrixName), + comment="#", sep=r"\s+") elif MatrixName == "default": mat = pd.read_csv("%s/BLOSUM62" % (matrix_dir), comment="#", sep=r"\s+")