pg-main from prod server added
This commit is contained in:
32
pgx-main/tests/simulations/nextflow.config
Normal file
32
pgx-main/tests/simulations/nextflow.config
Normal 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'
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user