import: improved genbank parser and switch to version 3.0.1.b10

This commit is contained in:
mercierc
2021-06-17 08:42:01 +12:00
parent 8ec13a294c
commit 9334cf6cc6
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ from libc.string cimport strcpy, strlen
_featureMatcher = re.compile(b'^FEATURES.+\n(?=ORIGIN )',re.DOTALL + re.M)
_headerMatcher = re.compile(b'^LOCUS.+(?=\nFEATURES)', re.DOTALL + re.M)
_seqMatcher = re.compile(b'ORIGIN .+(?=//\n)', re.DOTALL + re.M)
_seqMatcher = re.compile(b'^ORIGIN .+(?=//\n)', re.DOTALL + re.M)
_cleanSeq1 = re.compile(b'ORIGIN.+\n')
_cleanSeq2 = re.compile(b'[ \n0-9]+')
_acMatcher = re.compile(b'(?<=^ACCESSION ).+',re.M)

View File

@ -1,5 +1,5 @@
major = 3
minor = 0
serial= '1b9'
serial= '1b10'
version ="%d.%d.%s" % (major,minor,serial)