Convert GenBank files to SQLite databases with an intuitive, queryable schema.
gbk-to-sqlite is a Python tool designed to convert GenBank (.gbk
or .gbk.gz
) format files into SQLite databases. This enables easier programmatic access, efficient storage, and complex querying of genomic data.
Key features:
- Fast and memory-efficient conversion of large GenBank files
- Support for both regular and gzipped GenBank files
- Comprehensive database schema that preserves all relevant GenBank information
- Automatic handling of complex features including multi-value qualifiers
- Clean Python API for programmatic usage
- SQL query interface for powerful data analysis
Install with pip:
pip install gbk-to-sqlite
Or with uv (recommended):
uv pip install gbk-to-sqlite
gbk-to-sqlite uses a relational model to represent GenBank data. The following Entity Relationship Diagram (ERD) illustrates the database structure:
erDiagram
Genome ||--o{ Record : contains
Record ||--o{ Feature : has
Feature ||--o{ Qualifier : has
Genome {
integer id PK
string gbk_path
}
Record {
integer id PK
integer genome FK
string name
string definition
string accession
string version
}
Feature {
integer genome FK
integer record FK
integer feature_index
integer location_start
integer location_end
string location_strand
}
Qualifier {
integer genome FK
integer record FK
integer feature_index FK
string key
string value
}
gbk-to-sqlite uses the following models to represent GenBank data:
Represents a GenBank file:
id
: Unique identifier (auto-generated)gbk_path
: Path to the source GenBank file
Represents a sequence record in the GenBank file:
id
: Unique identifier (auto-generated)genome
: Foreign key reference to the Genomename
: The LOCUS namedefinition
: The DEFINITION field (sequence description)accession
: The ACCESSION numberversion
: The VERSION identifier
Represents a feature annotation (gene, CDS, etc.):
genome
,record
,feature_index
: Composite primary keylocation_start
: Start position (0-based)location_end
: End positionlocation_strand
: Strand orientation ('+', '-', or null)
Represents a feature's qualifier (e.g., /gene="xyz"):
genome
,record
,feature_index
: References to the associated Featurekey
: Qualifier name (e.g., "gene")value
: Qualifier value (e.g., "xyz"), can be null for flag qualifiers
Convert a single GenBank file:
gbk-to-sqlite --genbank-files sequence.gbk --sqlite-db output.sqlite
Convert multiple files:
gbk-to-sqlite --genbank-files file1.gbk file2.gbk.gz --sqlite-db output.sqlite
Use glob patterns to convert many files:
gbk-to-sqlite --genbank-glob "data/*.gbk.gz" --sqlite-db output.sqlite
from gbk_to_sqlite import convert_gbk_to_sqlite, db, Genome, Record, Feature, Qualifier
# Initialize the database
db.init("output.sqlite")
db.connect()
db.create_tables([Genome, Record, Feature, Qualifier])
# Convert GenBank files
with db.atomic():
convert_gbk_to_sqlite("sequence.gbk")
# Query the database
records = Record.select().where(Record.accession == "NC_000001")
for record in records:
print(f"Record: {record.name}, Definition: {record.definition}")
# Find all genes
genes = Feature.select().join(Qualifier).where(
(Feature.record == record) &
(Qualifier.key == "gene")
)
for gene in genes:
gene_name = Qualifier.select().where(
(Qualifier.feature == gene) &
(Qualifier.key == "gene")
).first().value
print(f"Gene: {gene_name}, Location: {gene.location_start}..{gene.location_end}")
# Close the database connection
db.close()
- Complex locations (join, order, complement) are stored with a simplified representation
- Join locations may not preserve strand information
- Some advanced GenBank features might not be fully supported
To contribute to gbk-to-sqlite:
- Clone the repository
- Install development dependencies:
uv pip install -e ".[dev]"
- Run tests:
pytest tests/
MIT License
Copyright (c) 2024 Austin Davis-Richardson
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.