mirror of
https://github.com/baker-laboratory/RoseTTAFold-All-Atom.git
synced 2024-11-04 22:25:42 +00:00
Update README.md
This commit is contained in:
parent
b91deacb8d
commit
e51736412b
1 changed files with 9 additions and 8 deletions
15
README.md
15
README.md
|
@ -145,27 +145,28 @@ python -m rf2aa.run_inference --config-name nucleic_acid
|
||||||
<a id="p-sm-complex"></a>
|
<a id="p-sm-complex"></a>
|
||||||
### Predicting Protein Small Molecule Complexes
|
### Predicting Protein Small Molecule Complexes
|
||||||
To predict protein small molecule complexes, the syntax to input the protein remains the same. Adding in the small molecule works similarly to other inputs.
|
To predict protein small molecule complexes, the syntax to input the protein remains the same. Adding in the small molecule works similarly to other inputs.
|
||||||
Here is an example (from `rf2aa/config/inference/protein_sm.yaml`):
|
Here is an example (from `rf2aa/config/inference/protein_complex_sm.yaml`):
|
||||||
```
|
```
|
||||||
defaults:
|
defaults:
|
||||||
- base
|
- base
|
||||||
|
job_name: "3fap"
|
||||||
job_name: 7qxr
|
|
||||||
|
|
||||||
protein_inputs:
|
protein_inputs:
|
||||||
A:
|
A:
|
||||||
fasta_file: examples/protein/7qxr.fasta
|
fasta_file: examples/protein/3fap_A.fasta
|
||||||
|
B:
|
||||||
|
fasta_file: examples/protein/3fap_B.fasta
|
||||||
|
|
||||||
sm_inputs:
|
sm_inputs:
|
||||||
B:
|
C:
|
||||||
input: examples/small_molecule/NSW_ideal.sdf
|
input: examples/small_molecule/ARD_ideal.sdf
|
||||||
input_type: "sdf"
|
input_type: "sdf"
|
||||||
```
|
```
|
||||||
Small molecule inputs are provided as sdf files or smiles strings and users are **required** to provide both an input and an input_type field for every small molecule that they want to provide. Metal ions can also be provided as sdf files or smiles strings.
|
Small molecule inputs are provided as sdf files or smiles strings and users are **required** to provide both an input and an input_type field for every small molecule that they want to provide. Metal ions can also be provided as sdf files or smiles strings.
|
||||||
|
|
||||||
To predict the example:
|
To predict the example:
|
||||||
```
|
```
|
||||||
python -m rf2aa.run_inference --config-name protein_sm
|
python -m rf2aa.run_inference --config-name protein_complex_sm
|
||||||
```
|
```
|
||||||
<a id="higher-order"></a>
|
<a id="higher-order"></a>
|
||||||
### Predicting Higher Order Complexes
|
### Predicting Higher Order Complexes
|
||||||
|
|
Loading…
Reference in a new issue