-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path08_smiles_molecule.toml
More file actions
39 lines (33 loc) · 896 Bytes
/
Copy path08_smiles_molecule.toml
File metadata and controls
39 lines (33 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Example 08 — Build a molecule from SMILES and run MD
#
# What it shows:
# 1. smiles source: ethanol (CCO) built with RDKit ETKDG and MMFF94 optimization.
# Fragment 0 = entire molecule (set automatically by the source).
# Canonical SMILES stored in provenance.extra for conformer moves.
# 2. EMT MD — a cheap sanity check; replace with tblite or mace for real sampling.
#
# Requires the science environment (rdkit):
# pixi install -e science
# pixi run -e science example-08
[run]
name = "08_smiles_ethanol"
outdir = "runs"
seed = 7
[geometry.source]
type = "smiles"
smiles = "CCO" # ethanol
n_conformers = 1
optimize = true
vacuum = 8.0
[calculator]
type = "emt"
[sampling]
type = "md"
temperature = 300.0
steps = 50
interval = 10
[selection]
steps = ["physicality", "dedup"]
budget = 3
[dataset]
path = "dataset"