Skip to content

Commit

Permalink
Merge pull request #21 from IBM/code-dev
Browse files Browse the repository at this point in the history
🪲 Bug fix: Compatibility with Hestia 0.0.19 fixed
  • Loading branch information
RaulFD-creator authored Sep 11, 2024
2 parents e76cee0 + 13d2d7c commit 4125c1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autopeptideml/autopeptideml.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def train_test_partition(

df = df.sample(len(df), random_state=self.seed).reset_index(drop=True)

train_idx, test_idx = ccpart(
train_idx, test_idx, label_ids = ccpart(
df=df,
similarity_metric=alignment,
field_name='sequence',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@
name='autopeptideml',
packages=find_packages(exclude=['examples']),
url='https://ibm.github.io/AutoPeptideML/',
version='1.0.0',
version='1.0.1',
zip_safe=False,
)

0 comments on commit 4125c1c

Please sign in to comment.