Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
OBITools3
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
23
Issues
23
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
OBITools
OBITools3
Commits
fbf0f7df
Commit
fbf0f7df
authored
Feb 17, 2021
by
Celine Mercier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
import: improved genbank parser and switch to version 3.0.0b42
parent
fda0edd0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
genbank.pyx
python/obitools3/parsers/genbank.pyx
+2
-2
version.py
python/obitools3/version.py
+1
-1
No files found.
python/obitools3/parsers/genbank.pyx
View file @
fbf0f7df
...
@@ -22,10 +22,10 @@ from libc.stdlib cimport free, malloc, realloc
...
@@ -22,10 +22,10 @@ from libc.stdlib cimport free, malloc, realloc
from libc.string cimport strcpy, strlen
from libc.string cimport strcpy, strlen
_featureMatcher = re.compile(b'^FEATURES.+\n(?=ORIGIN)',re.DOTALL + re.M)
_featureMatcher = re.compile(b'^FEATURES.+\n(?=ORIGIN
)',re.DOTALL + re.M)
_headerMatcher = re.compile(b'^LOCUS.+(?=\nFEATURES)', 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')
_cleanSeq1 = re.compile(b'ORIGIN.+\n')
_cleanSeq2 = re.compile(b'[ \n0-9]+')
_cleanSeq2 = re.compile(b'[ \n0-9]+')
_acMatcher = re.compile(b'(?<=^ACCESSION ).+',re.M)
_acMatcher = re.compile(b'(?<=^ACCESSION ).+',re.M)
...
...
python/obitools3/version.py
View file @
fbf0f7df
major
=
3
major
=
3
minor
=
0
minor
=
0
serial
=
'0b4
1
'
serial
=
'0b4
2
'
version
=
"
%
d.
%
d.
%
s"
%
(
major
,
minor
,
serial
)
version
=
"
%
d.
%
d.
%
s"
%
(
major
,
minor
,
serial
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment