This repository has been archived by the owner on Mar 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge in COM/icolos from development to master * commit 'db781044d8efbba5e3f5a3f7d20fa136abc184ad': (36 commits) udpate changelog for 1.7 release fix some asserts in unit tests fix but in citation generator when no tty connected to process add serial partition for slurm execution bug fix in slurm executor when handling binary locations bug fix in slurm executor when handling binary locations bug fix in slurm executor small fix in pdb2gmx when parametrising multiple ligand components improvement for debug logging in pdb2gmx minor citation formatting changes additional papers for citation generator add initial citation generator + header art for stdout parametrise threads for gmx mmgbsa calculation under MPI fix syntax in water posre block for gromacs topol small formatting improvements for gromacs topol fixed some iterator-related issues with circular imports, small improvements to logging and gromacs topology handling small method name change for gromacs update example gromacs MD workflows final updates to gromacs classes Finalized "CCDC"/"Gold" initial implementation. ...
- Loading branch information
Showing
82 changed files
with
2,296 additions
and
1,399 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
__pycache__ | ||
pip-wheel-metadata | ||
*.pyc | ||
package.json | ||
.vscode | ||
|
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 |
---|---|---|
@@ -0,0 +1,108 @@ | ||
{ | ||
"workflow": { | ||
"header": { | ||
"workflow_id": "Gold docking", | ||
"description": "Runs docking using CCDC's GOLD and a pre-defined receptor file.", | ||
"environment": { | ||
"export": [ | ||
] | ||
}, | ||
"global_variables": { | ||
"smiles": "another_mol:Nc1ccc(cc1N)C(F)(F)F;failure:CXXC;aspirin:O=C(C)Oc1ccccc1C(=O)O", | ||
"cavity_mol2_path": "{package_dir}/../IcolosData/molecules/1UYD/PU8_reference_ligand.mol2", | ||
"receptor_path": "{package_dir}/../IcolosData/Gold/1UYD_protein.mol2" | ||
} | ||
}, | ||
"steps": [{ | ||
"step_id": "rdkit_embedding", | ||
"type": "embedding", | ||
"settings": { | ||
"arguments": { | ||
"flags": ["-epik"], | ||
"parameters": { | ||
"protonate": true, | ||
"method": "rdkit" | ||
} | ||
}, | ||
"additional": { | ||
} | ||
}, | ||
"input": { | ||
"compounds": [{ | ||
"source": "{smiles}", | ||
"source_type": "string" | ||
} | ||
] | ||
} | ||
}, { | ||
"step_id": "Gold", | ||
"type": "gold_docking", | ||
"execution": { | ||
"prefix_execution": "module load ccdc", | ||
"parallelization": { | ||
"cores": 4 | ||
}, | ||
"failure_policy": { | ||
"n_tries": 3 | ||
} | ||
}, | ||
"settings": { | ||
"arguments": { | ||
"flags": [], | ||
"parameters": { | ||
} | ||
}, | ||
"additional": { | ||
"configuration": { | ||
"AUTOMATIC SETTINGS": { | ||
"autoscale": 0.5 | ||
}, | ||
"FLOOD FILL": { | ||
"cavity_file": "{cavity_mol2_path}" | ||
}, | ||
"PROTEIN DATA": { | ||
"protein_datafile": "{receptor_path}" | ||
} | ||
}, | ||
"grid_ids": ["1UYD"] | ||
} | ||
}, | ||
"input": { | ||
"compounds": [{ | ||
"source": "rdkit_embedding", | ||
"source_type": "step" | ||
} | ||
] | ||
}, | ||
"writeout": [ | ||
{ | ||
"compounds": { | ||
"category": "conformers" | ||
}, | ||
"destination": { | ||
"resource": "{package_dir}/tests/junk/gold_docked_conformers.sdf", | ||
"type": "file", | ||
"format": "SDF" | ||
} | ||
}, | ||
{ | ||
"compounds": { | ||
"category": "conformers", | ||
"selected_tags": ["docking_score", "grid_id"], | ||
"aggregation": { | ||
"mode": "best_per_compound", | ||
"key": "docking_score", | ||
"highest_is_best": true | ||
} | ||
}, | ||
"destination": { | ||
"resource": "{package_dir}/tests/junk/gold_docked_conformers.csv", | ||
"type": "file", | ||
"format": "CSV" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} |
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
Oops, something went wrong.