forked from gencorefacility/variant-calling-pipeline-gatk4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
28 lines (25 loc) · 902 Bytes
/
nextflow.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Required Parameters
params.reads = "/gpfs/gibbs/pi/christakis_loan_fb343/saliva_reads/*/Unaligned/*_R{1,2}_*.fastq.gz"
//params.reads = "/vast/palmer/scratch/christakis/fb343/*/Unaligned/*_R{1,2}_*.fastq.gz"
params.ref = "/gpfs/ycga/project/christakis/fb343/databases/variant_calling_pipeline_hg38/genome.fasta"
params.outdir = "/gpfs/gibbs/pi/christakis_loan_fb343/saliva_reads/gatk"
params.snpeff_db = "hg38"
params.pl = "illumina"
params.pm = "nextseq"
process.container = 'gencorefacility/variant-calling-pipeline-gatk4'
singularity.enabled = true
// Set the Nextflow Working Directory
// By default this gets set to params.outdir + '/nextflow_work_dir'
workDir = '/vast/palmer/scratch/christakis/fb343/nextflow_work_dir'
process {
executor = 'slurm'
queue = 'day'
time = '1d'
withName:align {
cpus = 16
memory = 15.GB
}
withName:markDuplicatesSpark {
cpus = 16
}
}