-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
71 lines (54 loc) · 1.45 KB
/
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
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
manifest {
mainScript = 'main.nf'
nextflowVersion = '>=23.04.1'
}
// default parameters
params {
// necessary parameters
inputdir = null
series = null
// other important parameters
outputdir = "output"
use_external_ref = true
use_idmapping = false
use_custom_region = false
genome = "hg38"
// input & output file name
cohort_assign_file = "cohort-assignment.txt"
prior_file = "cohort-cna-pattern.txt"
idmapping_file = "sampleid-mapping.txt"
region_file = "cohort-cna-region.txt"
output_seg = "result.seg.txt"
output_plot = "segments.pdf"
// criteria for identifing potential problematic profiles
// abnormal baselines
// strict criteria
logrsd = 0.35
cnafrac = 0.5
dupdelratio = 3
// relaxed criteria which doesn't consider signal sd
cnafrac2 = 0.2
dupdelratio2 = 5
// relaxed criteria which only consider large cnafrac
cnafrac3 = 0.7
// cut-off thresholds for noisy samples
segnum = 1000
lowthre = "0.1,0.15,0.3"
highthre = "1,1.5,2"
// about help message
help = false
}
profiles {
docker {
process.container = 'hj12345/cnadjust'
docker.enabled = true
}
test {
params.inputdir = "$projectDir/test-data"
params.series = "series1"
}
}
// By default errorStrategy is "terminate", if you want to continue for other tasks in parallel execution, remove the following comment. The subsequent process in the problematic task would not be executed.
//process {
// errorStrategy = 'ignore'
//}