Files
D-SCRIPT/dscript/__init__.py
2024-09-16 09:35:49 -04:00

25 lines
659 B
Python

__version__ = "0.2.8"
__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",
]