-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from openforcefield/run-torsions
Begin setting up torsion automation
- Loading branch information
Showing
21 changed files
with
3,048 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
oe_license.txt | ||
/__pycache__/ | ||
|
||
# macOS | ||
.DS_Store |
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from openff.qcsubmit.results import TorsionDriveResultCollection | ||
from yammbs.torsion.inputs import QCArchiveTorsionDataset | ||
|
||
dspath = "/home/brent/omsf/projects/valence-fitting/02_curate-data/datasets/combined-td.json" | ||
td = TorsionDriveResultCollection.parse_file(dspath) | ||
|
||
ytd = QCArchiveTorsionDataset.from_qcsubmit_collection(td) | ||
|
||
with open("larger.json", "w") as out: | ||
out.write(ytd.model_dump_json()) |
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: yammbs-dataset-submission | ||
|
||
channels: | ||
- conda-forge | ||
- openeye | ||
|
||
dependencies: | ||
- python | ||
- pip | ||
|
||
- qcportal ~=0.55 | ||
- openff-qcsubmit >=0.52 | ||
- openff-toolkit | ||
- openeye-toolkits | ||
- geometric =1 | ||
|
||
- click | ||
- matplotlib | ||
- numpy | ||
- pandas | ||
- seaborn | ||
- tqdm | ||
|
||
- pip: | ||
- git+https://github.com/openforcefield/yammbs.git@add-torsion-models |
Oops, something went wrong.