Skip to content

Commit

Permalink
[UPDATE] Adding sandbox_path property to the json schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
PauAndrio committed Jul 4, 2024
1 parent 04c595a commit de7e846
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 0 deletions.
5 changes: 5 additions & 0 deletions biobb_cmip/docs/source/command_line.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Config parameters for this building block:
* **fix_backbone_atoms** (*boolean*): (True) Add missing O, OXT backbone atoms..
* **remove_tmp** (*boolean*): (True) Remove temporal files..
* **restart** (*boolean*): (False) Do not execute if output files exist..
* **sandbox_path** (*string*): (./) Parent path to the sandbox directory..
### YAML
#### [Common config file](https://github.com/bioexcel/biobb_cmip/blob/master/biobb_cmip/test/data/config/config_cmip_prepare_pdb.yml)
```python
Expand Down Expand Up @@ -104,6 +105,7 @@ Config parameters for this building block:
* **ignore_all** (*boolean*): (False) Mark all the residues in the PDB file..
* **remove_tmp** (*boolean*): (True) Remove temporal files..
* **restart** (*boolean*): (False) Do not execute if output files exist..
* **sandbox_path** (*string*): (./) Parent path to the sandbox directory..
### YAML
#### [Common config file](https://github.com/bioexcel/biobb_cmip/blob/master/biobb_cmip/test/data/config/config_cmip_ignore_residues.yml)
```python
Expand Down Expand Up @@ -173,6 +175,7 @@ Config parameters for this building block:
* **binary_path** (*string*): (titration) Path to the CMIP Titration executable binary..
* **remove_tmp** (*boolean*): (True) Remove temporal files..
* **restart** (*boolean*): (False) Do not execute if output files exist..
* **sandbox_path** (*string*): (./) Parent path to the sandbox directory..
* **container_path** (*string*): (None) Path to the binary executable of your container..
* **container_image** (*string*): (cmip/cmip:latest) Container Image identifier..
* **container_volume_path** (*string*): (/data) Path to an internal directory in the container..
Expand Down Expand Up @@ -305,6 +308,7 @@ Config parameters for this building block:
* **binary_path** (*string*): (cmip) Path to the CMIP cmip executable binary..
* **remove_tmp** (*boolean*): (True) Remove temporal files..
* **restart** (*boolean*): (False) Do not execute if output files exist..
* **sandbox_path** (*string*): (./) Parent path to the sandbox directory..
* **container_path** (*string*): (None) Path to the binary executable of your container..
* **container_image** (*string*): (cmip/cmip:latest) Container Image identifier..
* **container_volume_path** (*string*): (/data) Path to an internal directory in the container..
Expand Down Expand Up @@ -413,6 +417,7 @@ Syntax: input_parameter (datatype) - (default_value) Definition
Config parameters for this building block:
* **remove_tmp** (*boolean*): (True) Remove temporal files..
* **restart** (*boolean*): (False) Do not execute if output files exist..
* **sandbox_path** (*string*): (./) Parent path to the sandbox directory..
* **container_path** (*string*): (None) Path to the binary executable of your container..
* **container_image** (*string*): (cmip/cmip:latest) Container Image identifier..
* **container_volume_path** (*string*): (/data) Path to an internal directory in the container..
Expand Down
6 changes: 6 additions & 0 deletions biobb_cmip/json_schemas/cmip_ignore_residues.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@
"default": false,
"wf_prop": true,
"description": "Do not execute if output files exist."
},
"sandbox_path": {
"type": "string",
"default": "./",
"wf_prop": true,
"description": "Parent path to the sandbox directory."
}
}
}
Expand Down
6 changes: 6 additions & 0 deletions biobb_cmip/json_schemas/cmip_prepare_pdb.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,12 @@
"default": false,
"wf_prop": true,
"description": "Do not execute if output files exist."
},
"sandbox_path": {
"type": "string",
"default": "./",
"wf_prop": true,
"description": "Parent path to the sandbox directory."
}
}
}
Expand Down
6 changes: 6 additions & 0 deletions biobb_cmip/json_schemas/cmip_prepare_structure.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,12 @@
"wf_prop": true,
"description": "Do not execute if output files exist."
},
"sandbox_path": {
"type": "string",
"default": "./",
"wf_prop": true,
"description": "Parent path to the sandbox directory."
},
"container_path": {
"type": "string",
"default": null,
Expand Down
6 changes: 6 additions & 0 deletions biobb_cmip/json_schemas/cmip_run.json
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,12 @@
"wf_prop": true,
"description": "Do not execute if output files exist."
},
"sandbox_path": {
"type": "string",
"default": "./",
"wf_prop": true,
"description": "Parent path to the sandbox directory."
},
"container_path": {
"type": "string",
"default": null,
Expand Down
6 changes: 6 additions & 0 deletions biobb_cmip/json_schemas/cmip_titration.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,12 @@
"wf_prop": true,
"description": "Do not execute if output files exist."
},
"sandbox_path": {
"type": "string",
"default": "./",
"wf_prop": true,
"description": "Parent path to the sandbox directory."
},
"container_path": {
"type": "string",
"default": null,
Expand Down

0 comments on commit de7e846

Please sign in to comment.