Configure propka pipeline for WES/k8s execution
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
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
- 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
This commit is contained in:
13
main.nf
13
main.nf
@@ -2,22 +2,23 @@
|
|||||||
|
|
||||||
nextflow.enable.dsl=2
|
nextflow.enable.dsl=2
|
||||||
|
|
||||||
params.pdb = "/mnt/OmicNAS/private/old/olamide/propka/input/1HPX.pdb"
|
params.pdb = null
|
||||||
params.outdir = "/mnt/OmicNAS/private/old/olamide/propka/output"
|
params.outdir = null
|
||||||
params.ph = 7.0
|
params.ph = 7.0
|
||||||
params.options = ""
|
params.options = ""
|
||||||
|
|
||||||
process PROPKA {
|
process PROPKA {
|
||||||
container 'propka:latest'
|
container 'harbor.cluster.omic.ai/omic/propka:latest'
|
||||||
publishDir params.outdir, mode: 'copy'
|
publishDir params.outdir, mode: 'copy'
|
||||||
|
stageInMode 'copy'
|
||||||
|
|
||||||
input:
|
input:
|
||||||
path pdb
|
path pdb
|
||||||
|
|
||||||
output:
|
output:
|
||||||
path "${pdb.baseName}.pka", emit: pka_file
|
path "${pdb.baseName}.pka", emit: pka_file
|
||||||
path "run.log"
|
path "run.log"
|
||||||
|
|
||||||
script:
|
script:
|
||||||
"""
|
"""
|
||||||
propka3 ${params.options} --pH ${params.ph} ${pdb} 2>&1 | tee run.log
|
propka3 ${params.options} --pH ${params.ph} ${pdb} 2>&1 | tee run.log
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
// Manifest for Nextflow metadata
|
// Manifest for Nextflow metadata
|
||||||
manifest {
|
manifest {
|
||||||
name = 'PROPKA-Nextflow'
|
name = 'PROPKA-Nextflow'
|
||||||
author = 'Generated from PROPKA repository'
|
author = 'Olamide'
|
||||||
homePage = 'https://github.com/jensengroup/propka'
|
homePage = 'https://github.com/jensengroup/propka'
|
||||||
description = 'Nextflow pipeline for PROPKA - Empirical pKa prediction for proteins and protein-ligand complexes'
|
description = 'Nextflow pipeline for PROPKA - Empirical pKa prediction for proteins and protein-ligand complexes'
|
||||||
mainScript = 'main.nf'
|
mainScript = 'main.nf'
|
||||||
@@ -10,16 +10,24 @@ manifest {
|
|||||||
|
|
||||||
// Global default parameters
|
// Global default parameters
|
||||||
params {
|
params {
|
||||||
pdb = "/mnt/OmicNAS/private/old/olamide/propka/input/1HPX.pdb"
|
pdb = null
|
||||||
outdir = "/mnt/OmicNAS/private/old/olamide/propka/output"
|
outdir = null
|
||||||
ph = 7.0
|
ph = 7.0
|
||||||
options = ""
|
options = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
// Container configurations
|
profiles {
|
||||||
docker {
|
standard {
|
||||||
enabled = true
|
docker {
|
||||||
runOptions = ''
|
enabled = true
|
||||||
|
runOptions = '--rm'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
k8s {
|
||||||
|
process {
|
||||||
|
container = 'harbor.cluster.omic.ai/omic/propka:latest'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Process configurations
|
// Process configurations
|
||||||
@@ -27,11 +35,3 @@ process {
|
|||||||
cpus = 1
|
cpus = 1
|
||||||
memory = '4 GB'
|
memory = '4 GB'
|
||||||
}
|
}
|
||||||
|
|
||||||
// Execution configurations
|
|
||||||
executor {
|
|
||||||
$local {
|
|
||||||
cpus = 2
|
|
||||||
memory = '4 GB'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
18
params.json
18
params.json
@@ -2,30 +2,30 @@
|
|||||||
"params": {
|
"params": {
|
||||||
"pdb": {
|
"pdb": {
|
||||||
"type": "file",
|
"type": "file",
|
||||||
"description": "Path pattern to PDB files for pKa prediction",
|
"description": "Path to input PDB file for pKa prediction",
|
||||||
"default": "/mnt/OmicNAS/private/old/olamide/propka/input/1HPX.pdb",
|
"default": "s3://omic/eureka/propka/1HPX.pdb",
|
||||||
"required": true,
|
"required": true,
|
||||||
"pipeline_io": "input",
|
"pipeline_io": "input",
|
||||||
"var_name": "params.pdb",
|
"var_name": "params.pdb",
|
||||||
"examples": [
|
"examples": [
|
||||||
"/mnt/OmicNAS/private/old/olamide/propka/input/protein.pdb",
|
"s3://omic/eureka/propka/1HPX.pdb",
|
||||||
"/mnt/OmicNAS/private/old/olamide/propka/input/*.pdb"
|
"s3://omic/eureka/propka/protein.pdb"
|
||||||
],
|
],
|
||||||
"pattern": ".*\\.pdb$",
|
"pattern": ".*\\.pdb$",
|
||||||
"enum": [],
|
"enum": [],
|
||||||
"validation": {},
|
"validation": {},
|
||||||
"notes": "Can be a single PDB file or a pattern to match multiple PDB files."
|
"notes": "PDB file containing the protein structure for pKa prediction. Files should be in standard PDB format."
|
||||||
},
|
},
|
||||||
"outdir": {
|
"outdir": {
|
||||||
"type": "folder",
|
"type": "folder",
|
||||||
"description": "Directory for PROPKA prediction results",
|
"description": "Output directory for PROPKA prediction results",
|
||||||
"default": "/mnt/OmicNAS/private/old/olamide/propka/output",
|
"default": "s3://omic/eureka/propka/output",
|
||||||
"required": true,
|
"required": true,
|
||||||
"pipeline_io": "output",
|
"pipeline_io": "output",
|
||||||
"var_name": "params.outdir",
|
"var_name": "params.outdir",
|
||||||
"examples": [
|
"examples": [
|
||||||
"/mnt/OmicNAS/private/old/olamide/propka/output",
|
"s3://omic/eureka/propka/output",
|
||||||
"/path/to/custom/output"
|
"s3://omic/eureka/propka/results"
|
||||||
],
|
],
|
||||||
"pattern": ".*",
|
"pattern": ".*",
|
||||||
"enum": [],
|
"enum": [],
|
||||||
|
|||||||
Reference in New Issue
Block a user