- Match p2rank's working config structure: k8s profile only sets container - Let WES-generated profile.config handle executor, storage, and k8s settings - Add memory (8GB) and cpu (2) resource requests - Set params defaults to null (values provided by WES experiment_params) - Add manifest metadata
37 lines
723 B
Plaintext
37 lines
723 B
Plaintext
// Manifest for Nextflow metadata
|
|
manifest {
|
|
name = 'pocketminer-Nextflow'
|
|
author = 'Olamide'
|
|
homePage = 'https://github.com/Mickdub/gvp'
|
|
description = 'Nextflow pipeline for PocketMiner - cryptic binding pocket prediction using geometric deep learning'
|
|
mainScript = 'main.nf'
|
|
version = '1.0.0'
|
|
}
|
|
|
|
// Global default parameters
|
|
params {
|
|
pdb = null
|
|
outdir = null
|
|
debug = false
|
|
}
|
|
|
|
profiles {
|
|
standard {
|
|
docker {
|
|
enabled = true
|
|
runOptions = '--rm'
|
|
}
|
|
}
|
|
k8s {
|
|
process {
|
|
container = 'harbor.cluster.omic.ai/omic/pocketminer:latest'
|
|
}
|
|
}
|
|
}
|
|
|
|
// Process configurations
|
|
process {
|
|
cpus = 2
|
|
memory = '8 GB'
|
|
}
|