-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextflow.config
88 lines (75 loc) · 1.7 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
process {
executor='slurm'
queue="$SCXA_HPC_QUEUE"
clusterOptions="$SCXA_HPC_OPTIONS"
time = '7 d'
memory = '8 GB'
queueSize=500
exitReadTimeout='100000 sec'
pollInterval = '5sec'
withName: 'download_fastqs' {
//clusterOptions = "-g /scxa_ena_download"
// No equivalent of -g option in LSF for Slurm. We simulate it adding a tag.
clusterOptions = "--job-name=scxa_ena_download"
}
}
conda {
cacheDir = "$SCXA_WORKFLOW_ROOT/envs"
createTimeout = "30 min"
useMamba = true
}
params {
downloadMethod = 'http'
maxConcurrentDownloads = 10
minMappingRate = 12
minCbFreq = 10
'emptyDrops' {
lower = 100
nIters = 1000
testAmbient = 'FALSE'
filterEmpty = 'TRUE'
filterFdr = '0.01'
libType = 'ISR'
}
'10xv2' {
alevinType = 'chromium'
barcodeLength = 16
umiLength = 10
end = '5'
libType = 'ISR'
}
'drop-seq' {
alevinType = 'dropseq'
barcodeLength = 12
umiLength = 8
end = '5'
libType = 'ISR'
}
'seq-well' {
alevinType = 'dropseq'
barcodeLength = 12
umiLength = 8
end = '5'
libType = 'ISR'
}
'10xv3' {
alevinType = 'chromiumV3'
barcodeLength = 16
umiLength = 12
end = '5'
libType = 'ISR'
whitelist = "$SCXA_WORKFLOW_ROOT/conf/3M-february-2018_onecolumn.txt"
}
'10x5prime' {
alevinType = 'custom'
barcodeLength = 16
umiLength = 10
end = '5'
libType = 'ISF'
}
salmon {
index {
kmerSize = 31
}
}
}