- Remove debug logging and dead PVC/direct-path fallbacks from main.nf - Remove nf-amazon plugin and PVC storage config from nextflow.config (S3 access is handled by boto3 in the script) - Simplify input download and output upload to single boto3 blocks
39 lines
776 B
Plaintext
39 lines
776 B
Plaintext
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'
|
|
}
|
|
|
|
params {
|
|
pdb = "s3://omic/eureka/Pocketminer/1HSG.pdb"
|
|
outdir = "s3://omic/eureka/Pocketminer/output"
|
|
debug = false
|
|
}
|
|
|
|
profiles {
|
|
standard {
|
|
docker {
|
|
enabled = true
|
|
temp = 'auto'
|
|
}
|
|
}
|
|
|
|
k8s {
|
|
process {
|
|
executor = 'k8s'
|
|
container = 'harbor.cluster.omic.ai/omic/pocketminer:v2'
|
|
}
|
|
docker {
|
|
enabled = true
|
|
}
|
|
}
|
|
}
|
|
|
|
process {
|
|
cpus = 2
|
|
memory = '8 GB'
|
|
}
|