From f7f3fcbd7fd8bde68d145ce5d3447b7ac6f3a9fd Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Tue, 3 May 2022 14:19:18 -0300 Subject: [PATCH] Fix one weird versionless Phoenix pre-4.0 case --- biostools/analyzers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/biostools/analyzers.py b/biostools/analyzers.py index 2a5a041..380d5e0 100644 --- a/biostools/analyzers.py +++ b/biostools/analyzers.py @@ -1920,6 +1920,7 @@ class PhoenixAnalyzer(Analyzer): if match: end = match.end(0) if file_data[end] != 0xfa: # (unknown 8088 PLUS 2.52) + self.version = '?' # there may be no version at all (Wearnes LPX) self.signon = util.read_string(file_data[end:end + 256]) self.debug_print('Raw sign-on', signon_log, repr(self.signon)) else: