Files
propka/params.json
Olamide Isreal 8dd0ef8d6a
Some checks failed
Tests / build (ubuntu-latest, 3.10) (push) Has been cancelled
Tests / build (ubuntu-latest, 3.11) (push) Has been cancelled
Tests / build (ubuntu-latest, 3.12) (push) Has been cancelled
Tests / build (ubuntu-latest, 3.8) (push) Has been cancelled
Tests / build (ubuntu-latest, 3.9) (push) Has been cancelled
Tests / build (windows-latest, 3.10) (push) Has been cancelled
Tests / build (windows-latest, 3.11) (push) Has been cancelled
Tests / build (windows-latest, 3.12) (push) Has been cancelled
Tests / build (windows-latest, 3.8) (push) Has been cancelled
Tests / build (windows-latest, 3.9) (push) Has been cancelled
Tests / static_type_check (push) Has been cancelled
Configure propka pipeline for WES/k8s execution
- Update container reference to harbor.cluster.omic.ai/omic/propka:latest
- Add k8s profile to nextflow.config matching reference tool pattern
- Update params.json with s3://omic/eureka/propka/ paths
- Add stageInMode 'copy' to process definition
- Set params defaults to null for WES compatibility
2026-03-24 21:03:07 +01:00

70 lines
2.4 KiB
JSON

{
"params": {
"pdb": {
"type": "file",
"description": "Path to input PDB file for pKa prediction",
"default": "s3://omic/eureka/propka/1HPX.pdb",
"required": true,
"pipeline_io": "input",
"var_name": "params.pdb",
"examples": [
"s3://omic/eureka/propka/1HPX.pdb",
"s3://omic/eureka/propka/protein.pdb"
],
"pattern": ".*\\.pdb$",
"enum": [],
"validation": {},
"notes": "PDB file containing the protein structure for pKa prediction. Files should be in standard PDB format."
},
"outdir": {
"type": "folder",
"description": "Output directory for PROPKA prediction results",
"default": "s3://omic/eureka/propka/output",
"required": true,
"pipeline_io": "output",
"var_name": "params.outdir",
"examples": [
"s3://omic/eureka/propka/output",
"s3://omic/eureka/propka/results"
],
"pattern": ".*",
"enum": [],
"validation": {},
"notes": "Directory where pKa prediction results will be stored. Will be created if it doesn't exist."
},
"ph": {
"type": "number",
"description": "pH value for titration calculations",
"default": 7.0,
"required": false,
"pipeline_io": "parameter",
"var_name": "params.ph",
"examples": [
7.0,
5.5
],
"validation": {
"min": 0.0,
"max": 14.0
},
"notes": "The pH value used for calculating residue protonation states."
},
"options": {
"type": "string",
"description": "Additional command-line options for PROPKA",
"default": "",
"required": false,
"pipeline_io": "parameter",
"var_name": "params.options",
"examples": [
"--titrate_only Asp,Glu",
"--window 1.0"
],
"pattern": ".*",
"enum": [],
"validation": {},
"notes": "Additional command-line options to pass to propka3. See propka3 --help for available options."
}
}
}