Add Nextflow pipeline for PROPKA with Docker configuration
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
This commit is contained in:
37
nextflow.config
Normal file
37
nextflow.config
Normal file
@@ -0,0 +1,37 @@
|
||||
// Manifest for Nextflow metadata
|
||||
manifest {
|
||||
name = 'PROPKA-Nextflow'
|
||||
author = 'Generated from PROPKA repository'
|
||||
homePage = 'https://github.com/jensengroup/propka'
|
||||
description = 'Nextflow pipeline for PROPKA - Empirical pKa prediction for proteins and protein-ligand complexes'
|
||||
mainScript = 'main.nf'
|
||||
version = '1.0.0'
|
||||
}
|
||||
|
||||
// Global default parameters
|
||||
params {
|
||||
pdb = "/mnt/OmicNAS/private/old/olamide/propka/input/1HPX.pdb"
|
||||
outdir = "/mnt/OmicNAS/private/old/olamide/propka/output"
|
||||
ph = 7.0
|
||||
options = ""
|
||||
}
|
||||
|
||||
// Container configurations
|
||||
docker {
|
||||
enabled = true
|
||||
runOptions = ''
|
||||
}
|
||||
|
||||
// Process configurations
|
||||
process {
|
||||
cpus = 1
|
||||
memory = '4 GB'
|
||||
}
|
||||
|
||||
// Execution configurations
|
||||
executor {
|
||||
$local {
|
||||
cpus = 2
|
||||
memory = '4 GB'
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user