From ed5b28b14f606f496d017c79e2ec6cc11fcb7669 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Mon, 15 May 2023 14:57:16 +0200 Subject: [PATCH] Patch regular patterns Former-commit-id: 4c05238859cbb95c68902dbfb0b8f5d91f9f82d0 Former-commit-id: 15ae6fd0b11548a0701c99c9305232d5a238d39d --- detectors/cds/lib/bestclust.awk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/detectors/cds/lib/bestclust.awk b/detectors/cds/lib/bestclust.awk index 104a9d7..a07bb9b 100644 --- a/detectors/cds/lib/bestclust.awk +++ b/detectors/cds/lib/bestclust.awk @@ -13,13 +13,13 @@ BEGIN { if (EXCLUDE == "") EXCLUDE = 0 } -/^\# --- START OF GFF DUMP ---/ { +/^# --- START OF GFF DUMP ---/ { State = "gff" NbEntry++ next } -/^\# --- END OF GFF DUMP ---/ { +/^# --- END OF GFF DUMP ---/ { State = 0 next } @@ -32,7 +32,7 @@ BEGIN { next } -/^\#/ { next } +/^#/ { next } (State == 0) { next }