-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnextflow.config
More file actions
82 lines (61 loc) · 1.76 KB
/
nextflow.config
File metadata and controls
82 lines (61 loc) · 1.76 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
manifest {
homePage = 'http://github.com/shaze/pbcall'
description = 'Quick calling from PacBio Data'
mainScript = 'main.nf'
}
params {
// key parameters
build = "b38"
ref_dir = "" // reference directory
ref_seq = "38.fa"
//ref_mmi = "38.mmi"
// ref_fai = "38.fai"
tandem_example = "human_GRCh38_no_alt_analysis_set.trf.bed"
bamify_cpus=20
bamify_mem="36 GB"
call_cpus=17
call_mem="50 GB"
bam = "" // give directory where BAMS can be found, directory contains one BAM per sample
fqs = "" // give directory where FQs can be found -- one directory per sample
// potentially several FQ files per directory
fast_qc = "" // where qc-ed fastq should go.
min_read_fq_qc = 20
// VCF paramters
output_vcf = "vcf_folder"
output_gvcf = "" // leave empty if gvcf not wanted
par_regions_bed = "" //leave empty if not provided
vcf_stats_report = "" // make "true" if wanted
skip_sv = true // do SV calling?
// VCF filtering quality -- relatively liberal -- can re-QC
qual = 20
depth= 8
gq = 20
// where jointly called VCF to go
joint_dir = ""
joint_name = ""
// regions to be ignored if any
exclude_regions = ""
// performance
scratch = false
}
apptainer.enabled=true
process {
withLabel: deepvariant {
container="docker://google/deepvariant"
}
}
profiles {
// For execution on a local machine, no containerization. -- Default
standard {
process.executor = 'local'
}
slurm {
process.executor = 'slurm'
process.queue = 'batch'
process.clusterOptions="--constraint=avx2"
}
singularity {
singularity.autoMounts = true
singularity.enabled = true
}
}