pgx-main from prod added

This commit is contained in:
2025-08-18 13:09:30 +02:00
parent 75c821b975
commit ce66f54509
918 changed files with 834526 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
params {
in_hap1 = "/path/to/haplotype_files/*.vcf.gz"
in_hap2 = "/path/to/haplotype_files/*.p.vcf.gz"
out_dir = "/path/to/output_directory"
}
process {
withLabel: big_mem {
cpus = 8
memory = 32.GB
}
}
profiles {
// For execution on a local machine, no containerization. -- Default
standard {
process.executor = 'local'
}
// For execution on a SLURM scheduler, no containerization.
slurm {
process.executor = 'slurm'
process.queue = 'batch'
}
}