Skip to content

Commit

Permalink
Updated autodck_vina JSON & command line
Browse files Browse the repository at this point in the history
  • Loading branch information
gbayarri committed Apr 2, 2024
1 parent c5fda2f commit edf7f84
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
3 changes: 3 additions & 0 deletions biobb_vs/docs/source/command_line.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ Syntax: input_parameter (datatype) - (default_value) Definition
Config parameters for this building block:
* **cpu** (*integer*): (1) the number of CPUs to use..
* **exhaustiveness** (*integer*): (8) exhaustiveness of the global search (roughly proportional to time)..
* **num_modes** (*integer*): (9) maximum number of binding modes to generate..
* **min_rmsd** (*integer*): (1) minimum RMSD between output poses..
* **energy_range** (*integer*): (3) maximum energy difference between the best binding mode and the worst one displayed (kcal/mol)..
* **binary_path** (*string*): (vina) path to vina in your local computer..
* **remove_tmp** (*boolean*): (True) Remove temporal files..
* **restart** (*boolean*): (False) Do not execute if output files exist..
Expand Down
27 changes: 27 additions & 0 deletions biobb_vs/json_schemas/autodock_vina_run.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,33 @@
"max": 10000,
"step": 1
},
"num_modes": {
"type": "integer",
"default": 9,
"wf_prop": false,
"description": "maximum number of binding modes to generate.",
"min": 1,
"max": 1000,
"step": 1
},
"min_rmsd": {
"type": "integer",
"default": 1,
"wf_prop": false,
"description": "minimum RMSD between output poses.",
"min": 1,
"max": 1000,
"step": 1
},
"energy_range": {
"type": "integer",
"default": 3,
"wf_prop": false,
"description": "maximum energy difference between the best binding mode and the worst one displayed (kcal/mol).",
"min": 1,
"max": 1000,
"step": 1
},
"binary_path": {
"type": "string",
"default": "vina",
Expand Down

0 comments on commit edf7f84

Please sign in to comment.