Skip to content

Commit e05057d

Browse files
committed
Release v0.5.3
1 parent 586e93f commit e05057d

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION ?= 0.5.2
1+
VERSION ?= 0.5.3
22
SHELL := /bin/bash
33

44
.PHONY: releasehere

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The OpenProtein.AI Python Interface provides a user-friendly library to interact
2222

2323
# Quick-start
2424

25-
Get started with our quickstart README! You can peruse the [official documentation](https://docs.openprotein.ai/python-api/) for more details!
25+
Get started with our quickstart README! You can peruse the [official documentation](https://docs.openprotein.ai/api-python/) for more details!
2626
## Installation
2727

2828
To install the python interface using pip, run the following command:
@@ -46,7 +46,7 @@ conda install -c openprotein openprotein-python
4646
# Getting started
4747

4848

49-
Read on below for the quick-start guide, or see the [docs](https://docs.openprotein.ai/python-api/) for more information!
49+
Read on below for the quick-start guide, or see the [docs](https://docs.openprotein.ai/api-python/) for more information!
5050

5151
To begin, create a session using your login credentials.
5252
```
@@ -155,4 +155,4 @@ future.get_msa()
155155
future.get_seed()
156156
```
157157

158-
See more at our [Homepage](https://docs.openprotein.ai/)
158+
See more at our [Homepage](https://docs.openprotein.ai/)

anaconda_build/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: openprotein-python
3-
version: "0.5.2"
3+
version: "0.5.3"
44

55
source:
66
path: ../

openprotein/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def wait(self, future: Future, *args, **kwargs):
4747
wait_until_done = wait
4848

4949
def load_job(self, job_id):
50-
return self.jobs.__load(job_id=job_id)
50+
return self.jobs.get(job_id=job_id)
5151

5252
@property
5353
def data(self) -> AssayDataAPI:

openprotein/schemas/job.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ class JobType(str, Enum):
3030

3131
align_align = "/align/align"
3232
align_prompt = "/align/prompt"
33+
34+
clustalo = "/align/clustalo"
35+
mafft = "/align/mafft"
36+
abnumber = "/align/abnumber"
37+
3338
poet = "/poet"
3439
poet_score = "/poet/score"
3540
poet_single_site = "/poet/single_site"
@@ -105,7 +110,7 @@ def create(cls, obj: "Job | Response | dict", **kwargs) -> Self:
105110
job_classes = Job.__subclasses__()
106111
job = TypeAdapter(Union[tuple(job_classes)]).validate_python(d | kwargs) # type: ignore
107112
except Exception as e:
108-
raise ValueError(f"Error parsing job from obj: {obj}: {e}")
113+
job = Job.model_validate(d | kwargs)
109114
return job # type: ignore - static checker cannot know runtime type
110115

111116
# hide extra allowed fields

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "openprotein_python"
33
packages = [{ include = "openprotein" }]
4-
version = "0.5.2"
4+
version = "0.5.3"
55
description = "OpenProtein Python interface."
66
license = "MIT"
77
readme = "README.md"

0 commit comments

Comments
 (0)