rc-foundry 0.1.1__py3-none-any.whl → 0.1.2__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.
- foundry/version.py +2 -2
- foundry_cli/download_checkpoints.py +0 -2
- mpnn/utils/inference.py +4 -4
- {rc_foundry-0.1.1.dist-info → rc_foundry-0.1.2.dist-info}/METADATA +4 -7
- {rc_foundry-0.1.1.dist-info → rc_foundry-0.1.2.dist-info}/RECORD +8 -8
- {rc_foundry-0.1.1.dist-info → rc_foundry-0.1.2.dist-info}/WHEEL +0 -0
- {rc_foundry-0.1.1.dist-info → rc_foundry-0.1.2.dist-info}/entry_points.txt +0 -0
- {rc_foundry-0.1.1.dist-info → rc_foundry-0.1.2.dist-info}/licenses/LICENSE.md +0 -0
foundry/version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.1.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 1,
|
|
31
|
+
__version__ = version = '0.1.2'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 1, 2)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -5,7 +5,6 @@ from pathlib import Path
|
|
|
5
5
|
from typing import Optional
|
|
6
6
|
from urllib.request import urlopen
|
|
7
7
|
|
|
8
|
-
import rootutils
|
|
9
8
|
import typer
|
|
10
9
|
from dotenv import find_dotenv, load_dotenv, set_key
|
|
11
10
|
from rich.console import Console
|
|
@@ -24,7 +23,6 @@ from foundry.inference_engines.checkpoint_registry import (
|
|
|
24
23
|
get_default_checkpoint_dir,
|
|
25
24
|
)
|
|
26
25
|
|
|
27
|
-
rootutils.setup_root(__file__, indicator=".project-root", pythonpath=True)
|
|
28
26
|
load_dotenv(override=True)
|
|
29
27
|
|
|
30
28
|
app = typer.Typer(help="Foundry model checkpoint installation utilities")
|
mpnn/utils/inference.py
CHANGED
|
@@ -362,7 +362,7 @@ def build_arg_parser() -> argparse.ArgumentParser:
|
|
|
362
362
|
"--fixed_residues",
|
|
363
363
|
type=str,
|
|
364
364
|
help=(
|
|
365
|
-
'List of residue IDs to fix: e.g. \'["A35","B40","C52"]\' or "A35,B40,C52"'
|
|
365
|
+
'List of residue IDs to fix: e.g. \'["A35","B40","C52"]\' or "A35,B40,C52"',
|
|
366
366
|
),
|
|
367
367
|
default=MPNN_PER_INPUT_INFERENCE_DEFAULTS["fixed_residues"],
|
|
368
368
|
)
|
|
@@ -371,20 +371,20 @@ def build_arg_parser() -> argparse.ArgumentParser:
|
|
|
371
371
|
type=str,
|
|
372
372
|
help=(
|
|
373
373
|
"List of residue IDs to design: "
|
|
374
|
-
'e.g. \'["A35","B40","C52"]\' or "A35,B40,C52"'
|
|
374
|
+
'e.g. \'["A35","B40","C52"]\' or "A35,B40,C52"',
|
|
375
375
|
),
|
|
376
376
|
default=MPNN_PER_INPUT_INFERENCE_DEFAULTS["designed_residues"],
|
|
377
377
|
)
|
|
378
378
|
design_group.add_argument(
|
|
379
379
|
"--fixed_chains",
|
|
380
380
|
type=str,
|
|
381
|
-
help=('List of chain IDs to fix: e.g. \'["A","B"]\' or "A,B"'),
|
|
381
|
+
help=('List of chain IDs to fix: e.g. \'["A","B"]\' or "A,B"',),
|
|
382
382
|
default=MPNN_PER_INPUT_INFERENCE_DEFAULTS["fixed_chains"],
|
|
383
383
|
)
|
|
384
384
|
design_group.add_argument(
|
|
385
385
|
"--designed_chains",
|
|
386
386
|
type=str,
|
|
387
|
-
help=('List of chain IDs to design: e.g. \'["A","B"]\' or "A,B"'),
|
|
387
|
+
help=('List of chain IDs to design: e.g. \'["A","B"]\' or "A,B"',),
|
|
388
388
|
default=MPNN_PER_INPUT_INFERENCE_DEFAULTS["designed_chains"],
|
|
389
389
|
)
|
|
390
390
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rc-foundry
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Shared utilities and training infrastructure for biomolecular structure prediction models.
|
|
5
5
|
Author-email: Institute for Protein Design <contact@ipd.uw.edu>
|
|
6
6
|
License: BSD 3-Clause License
|
|
@@ -95,8 +95,6 @@ Description-Content-Type: text/markdown
|
|
|
95
95
|
|
|
96
96
|
Foundry provides tooling and infrastructure for using and training all classes of models for protein design, including design (RFD3), inverse folding (ProteinMPNN) and protein folding (RF3).
|
|
97
97
|
|
|
98
|
-
All models within Foundry rely on [AtomWorks](https://github.com/RosettaCommons/atomworks) - a unified framework for manipulating and processing biomolecular structures - for both training and inference.
|
|
99
|
-
|
|
100
98
|
## Getting Started
|
|
101
99
|
### Quickstart guide
|
|
102
100
|
**Installation**
|
|
@@ -109,14 +107,14 @@ pip install rc-foundry[all]
|
|
|
109
107
|
```
|
|
110
108
|
foundry install all --checkpoint_dir <path/to/ckpt/dir>
|
|
111
109
|
```
|
|
112
|
-
This will download all the models supported (including multiple checkpoints of
|
|
110
|
+
This will download all the models supported (including multiple checkpoints of rf3) but as a beginner you can start with:
|
|
113
111
|
```
|
|
114
112
|
foundry install rfd3 ligandmpnn rf3 --checkpoint_dir <path/to/ckpt/dir>
|
|
115
113
|
```
|
|
116
114
|
|
|
117
115
|
>*See `examples/all.ipynb` for how to run each model in a notebook.*
|
|
118
116
|
|
|
119
|
-
### RFdiffusion3
|
|
117
|
+
### RFdiffusion3
|
|
120
118
|
|
|
121
119
|
[RFdiffusion3](https://www.biorxiv.org/content/10.1101/2025.09.18.676967v2) is an all-atom generative model capable of designing protein structures under complex constraints.
|
|
122
120
|
|
|
@@ -131,8 +129,7 @@ foundry install rfd3 ligandmpnn rf3 --checkpoint_dir <path/to/ckpt/dir>
|
|
|
131
129
|
|
|
132
130
|
> *See [models/mpnn/README.md](models/mpnn/README.md) for complete documentation.*
|
|
133
131
|
|
|
134
|
-
|
|
135
|
-
### RosettaFold3 (RF3)
|
|
132
|
+
### RosettaFold3
|
|
136
133
|
|
|
137
134
|
[RF3](https://doi.org/10.1101/2025.08.14.670328) is a structure prediction neural network that narrows the gap between closed-source AF-3 and open-source alternatives.
|
|
138
135
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
foundry/__init__.py,sha256=H8S1nl5v6YeW8ggn1jKy4GdtH7c-FGS-j7CqUCAEnAU,1926
|
|
2
2
|
foundry/common.py,sha256=Aur8mH-CNmcUqSsw7VgaCQSW5sH1Bqf8Da91jzxPV1Y,3035
|
|
3
3
|
foundry/constants.py,sha256=0n1wBKCvNuw3QaQehSbmsHYkIdaGn3tLeRFItBrdeHY,913
|
|
4
|
-
foundry/version.py,sha256=
|
|
4
|
+
foundry/version.py,sha256=Ok5oAXdWgR9aghaFXTafTeDW6sYO3uVe6d2Nket57R4,704
|
|
5
5
|
foundry/callbacks/__init__.py,sha256=VsRT1e4sqlJHPcTCsfupMEx82Iz-LoOAGPpwvf_OJeE,126
|
|
6
6
|
foundry/callbacks/callback.py,sha256=xZBo_suP4bLrP6gl5uJPbaXm00DXigePa6dMeDxucgg,3890
|
|
7
7
|
foundry/callbacks/health_logging.py,sha256=tEtkByOlaAA7nnelxb7PbM9_dcIgOsdbxCdQY3K5pMc,16664
|
|
@@ -34,7 +34,7 @@ foundry/utils/squashfs.py,sha256=QlcwuJyVe-QVfIOS7o1QfLhaCQPNzzox7ln4n8dcYEg,523
|
|
|
34
34
|
foundry/utils/torch.py,sha256=OLsqoxw4CTXbGzWUHernLUT7uQjLu0tVPtD8h8747DI,11211
|
|
35
35
|
foundry/utils/weights.py,sha256=btz4S02xff2vgiq4xMfiXuhK1ERafqQPtmimo1DmoWY,10381
|
|
36
36
|
foundry_cli/__init__.py,sha256=0BxY2RUKJLaMXUGgypPCwlTskTEFdVnkhTR4C4ft2Kw,52
|
|
37
|
-
foundry_cli/download_checkpoints.py,sha256=
|
|
37
|
+
foundry_cli/download_checkpoints.py,sha256=TLwflDCm9RBCOfpv0KEiQegEp6DjnUIi4fGHiIHLrgc,8382
|
|
38
38
|
mpnn/__init__.py,sha256=hgQcXFaCbAxFrhydVAy0xj8yC7UJF-GCCFhqD0sZ7I4,57
|
|
39
39
|
mpnn/inference.py,sha256=wPtGR325eVRVeesXoWtBK6b_-VcU8BZae5IfQN3-mvA,1669
|
|
40
40
|
mpnn/train.py,sha256=9eQGBd3rdNF5Zr2w8oUgETbqxBavNBajtA6Vbc5zESE,10239
|
|
@@ -56,7 +56,7 @@ mpnn/transforms/feature_aggregation/mpnn.py,sha256=jkhyMCqJipKQ2PvjqPkvvClhoiXx_
|
|
|
56
56
|
mpnn/transforms/feature_aggregation/polymer_ligand_interface.py,sha256=gDdt9RZd0PO0YJdouNr0qsHFZV1i-5ewU6XuJrwPY54,2870
|
|
57
57
|
mpnn/transforms/feature_aggregation/token_encodings.py,sha256=qVlUky4HcDSU5drrZpZBnUvTSGdT6C7MN8f_owa81Bw,2227
|
|
58
58
|
mpnn/transforms/feature_aggregation/user_settings.py,sha256=uKyIDXz-QG0-KWQO1kqPlMj6i7RoVM6yH4iGNXFStoU,15007
|
|
59
|
-
mpnn/utils/inference.py,sha256=
|
|
59
|
+
mpnn/utils/inference.py,sha256=pVZuzEldHjxLHSUYH4PvdWIFRemAfi46424Ne3Rey4k,96543
|
|
60
60
|
mpnn/utils/probability.py,sha256=EYisliXNGXjuSPbzZwcIKjlhyINikGsqQndGBEbQoPI,990
|
|
61
61
|
mpnn/utils/weights.py,sha256=VsaIcOWTv8G-WJ9denxLRm3FQ9l6L66AVQN08E9BMSg,16411
|
|
62
62
|
rf3/__init__.py,sha256=XBb5hF2RqBPHODGRmjiRbfTXgOGfOzdY91GbS4Vex00,70
|
|
@@ -173,8 +173,8 @@ rfd3/transforms/virtual_atoms.py,sha256=UpmxzPPd5FaJigcRoxgLSHHrLLOqsCvZ5PPZfQSG
|
|
|
173
173
|
rfd3/utils/inference.py,sha256=RQp5CCy6Z6uHVZ2Mx0zmmGluYEOrASke4bABtfRjpy0,26448
|
|
174
174
|
rfd3/utils/io.py,sha256=wbdjUTQkDc3RCSM7gdogA-XOKR68HeQ-cfvyN4pP90w,9849
|
|
175
175
|
rfd3/utils/vizualize.py,sha256=cumsMtSFQ8lfVtJDDQ9mpfMf9GSyM55RYmKl9H61_TM,11147
|
|
176
|
-
rc_foundry-0.1.
|
|
177
|
-
rc_foundry-0.1.
|
|
178
|
-
rc_foundry-0.1.
|
|
179
|
-
rc_foundry-0.1.
|
|
180
|
-
rc_foundry-0.1.
|
|
176
|
+
rc_foundry-0.1.2.dist-info/METADATA,sha256=41TPsF9MGq2ab237zdmSqI4a6BujF7hyq3fvW78tsEA,10358
|
|
177
|
+
rc_foundry-0.1.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
178
|
+
rc_foundry-0.1.2.dist-info/entry_points.txt,sha256=BmiWCbWGtrd_lSOFMuCLBXyo84B7Nco-alj7hB0Yw9A,130
|
|
179
|
+
rc_foundry-0.1.2.dist-info/licenses/LICENSE.md,sha256=NKtPCJ7QMysFmzeDg56ZfUStvgzbq5sOvRQv7_ddZOs,1533
|
|
180
|
+
rc_foundry-0.1.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|