forked from uclahs-cds/pipeline-call-gSV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.config
42 lines (29 loc) · 1.46 KB
/
template.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// EXECUTION SETTINGS AND GLOBAL DEFAULTS
// External config files import. DO NOT MODIFY THIS LINE!
includeConfig "${projectDir}/config/default.config"
includeConfig "${projectDir}/config/methods.config"
includeConfig "${projectDir}/nextflow.config"
// Inputs/parameters of the pipeline
params {
dataset_id = "TEST"
blcds_registered_dataset = false
variant_type = ["gSV", "gCNV"]
// The mode of the call-gSV pipeline to run. Discovery will identify SVs using Delly/Manta. Regenotyping will regenotype SVs/CNVs using Delly. Please note that setting
// `run_regenotyping` to true will supersede `run_delly` below.
run_discovery = true
run_regenotyping = false
//When `run_regenotyping = true`, uncomment `merged_sites_gSV` & `merged_sites_gCNV`
//merged_sites_gSV = "" // Path to sites.gSV.bcf
//merged_sites_gCNV = "" // Path to sites.gCNV.bcf
// run_delly or run_manta (or both) must be set to true
run_delly = true
run_manta = true
run_qc = true
save_intermediate_files = false
output_dir = "where/to/save/outputs/"
reference_fasta = "/hot/ref/reference/GRCh38-BI-20160721/Homo_sapiens_assembly38.fasta"
exclusion_file = "/hot/ref/tool-specific-input/Delly/GRCh38/human.hg38.excl.tsv"
mappability_map = "/hot/ref/tool-specific-input/Delly/GRCh38/Homo_sapiens.GRCh38.dna.primary_assembly.fa.r101.s501.blacklist.gz"
map_qual = 20 // min. paired-end (PE) mapping quality for Delly
}
methods.setup()