Skip to content

Commit

Permalink
fix: alignment data now available as pytoda.proteins.kinase_as_alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
jannisborn committed Jun 20, 2022
1 parent 245d51f commit 245c9b5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pytoda/proteins/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
import pandas as pd
from importlib_resources import as_file, files

from .protein_feature_language import ProteinFeatureLanguage # noqa
from .protein_language import ProteinLanguage # noqa
from .utils import aas_to_smiles # noqa

with as_file(
files('pytoda.proteins.metadata').joinpath('kinase_activesite_alignment.smi')
) as alignment_filepath:
kinase_as_alignment = pd.read_csv(alignment_filepath, sep='\t')
Empty file.

0 comments on commit 245c9b5

Please sign in to comment.