physistool 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- physis/__init__.py +32 -0
- physis/attestation.py +754 -0
- physis/dispatcher.py +124 -0
- physis/envelope.py +253 -0
- physis/licensing.py +190 -0
- physis/metering.py +129 -0
- physis/physis_client.py +1921 -0
- physistool-0.1.0.dist-info/METADATA +68 -0
- physistool-0.1.0.dist-info/RECORD +13 -0
- physistool-0.1.0.dist-info/WHEEL +5 -0
- physistool-0.1.0.dist-info/entry_points.txt +2 -0
- physistool-0.1.0.dist-info/licenses/LICENSE +21 -0
- physistool-0.1.0.dist-info/top_level.txt +1 -0
physis/__init__.py
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"""``physis`` — the open-source PhysisFold client (CLI + SDK).
|
|
2
|
+
|
|
3
|
+
This is what the customer installs and runs. It speaks HTTP+JSON to a remote
|
|
4
|
+
PhysisFold folding endpoint (see ``PhysisFold/enclave/CONTRACT.md``). There is no
|
|
5
|
+
protected IP here: the engine lives server-side (inside the enclave); this
|
|
6
|
+
package is a thin, auditable client.
|
|
7
|
+
|
|
8
|
+
SDK surface
|
|
9
|
+
-----------
|
|
10
|
+
from physis import fold, FoldError
|
|
11
|
+
|
|
12
|
+
``fold(...)`` is the programmatic entry point (see its docstring for the full
|
|
13
|
+
parameter set). ``FoldError`` is raised on any transport failure or ``ok:false``
|
|
14
|
+
server response.
|
|
15
|
+
|
|
16
|
+
CLI
|
|
17
|
+
---
|
|
18
|
+
Installed by ``pip install physistool`` as the ``physistool`` console script
|
|
19
|
+
(the import module stays ``physis``, like scikit-learn -> sklearn)::
|
|
20
|
+
|
|
21
|
+
physistool fold input.fasta --out result.pdb --endpoint http://127.0.0.1:8787
|
|
22
|
+
# or the flat flag surface:
|
|
23
|
+
physistool --sequence input.fasta --out result.pdb
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
from __future__ import annotations
|
|
27
|
+
|
|
28
|
+
from .physis_client import FoldError, fold
|
|
29
|
+
|
|
30
|
+
__all__ = ["fold", "FoldError"]
|
|
31
|
+
|
|
32
|
+
__version__ = "0.1.0"
|