mirror of
https://github.com/samsledje/D-SCRIPT.git
synced 2026-06-04 15:04:24 +08:00
27 lines
731 B
Python
27 lines
731 B
Python
from importlib.metadata import version as _get_version
|
|
|
|
__version__ = _get_version("dscript")
|
|
__citation__ = """Sledzieski, Singh, Cowen, Berger. "D-SCRIPT translates genome to phenome with sequence-based, structure-aware, genome-scale predictions of protein-protein interactions." Cell Systems 12, no. 10 (2021): 969-982.
|
|
|
|
Devkota, Singh, Sledzieski, Berger, Cowen, Topsy-Turvy: integrating a global view into sequence-based PPI prediction, Bioinformatics, In Press."""
|
|
from . import (
|
|
alphabets,
|
|
commands,
|
|
fasta,
|
|
glider,
|
|
language_model,
|
|
models,
|
|
pretrained,
|
|
)
|
|
|
|
__all__ = [
|
|
"models",
|
|
"commands",
|
|
"alphabets",
|
|
"fasta",
|
|
"glider",
|
|
"language_model",
|
|
"pretrained",
|
|
"utils",
|
|
]
|