-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
60 lines (47 loc) · 1.55 KB
/
nextflow.config
File metadata and controls
60 lines (47 loc) · 1.55 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
// nextflow.config
// I-SAGE base config (generalized)
// ------------------------------------------------------------------
nextflow.enable.dsl = 2
// -----------------------------
// Default pipeline parameters
// (Users should override via -params-file configs/iblesse.yaml)
// -----------------------------
params {
fastq_dir = "/mnt/evafs/groups/sfglab/jborkowska/OPUS_replication_stress/IBLESS/fastq"
// Publish outputs here (results only)
outdir = "/mnt/evafs/groups/sfglab/pranjul/I-SAGE_output"
// Logs + Nextflow work dir here (execution artifacts)
logdir = "/mnt/evafs/groups/sfglab/pranjul/I-SAGE_log"
sample_pattern = "*_R1.fastq.gz"
genome_fasta = "/mnt/evafs/groups/sfglab/jborkowska/hg38/hg38_reference/hg38_reference.fna"
genome_index = "/mnt/evafs/groups/sfglab/jborkowska/hg38/hg38_reference/hg38_reference.fna"
break_calling = [
mode : "per_base",
bin_size : 1000,
remove_sgrdi : true
]
}
// -----------------------------
// Nextflow engine logging
// -----------------------------
log {
file = "${params.logdir}/nextflow.log"
}
// -----------------------------
// Work directory (intermediates)
// -----------------------------
workDir = "${params.logdir}/work"
// -----------------------------
// Profiles
// -----------------------------
profiles {
local {
includeConfig "conf/local.config"
}
eden {
includeConfig "conf/eden.config"
}
eden_local {
includeConfig "conf/eden_local.config"
}
}