-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathNF_splicing_pipeline.config
51 lines (45 loc) · 1.18 KB
/
NF_splicing_pipeline.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
params {
// Input data:
reads = 'reads.csv'
rmats_pairs = 'rmats_pairs.txt'
run_name = 'B6_finalrun'
download_from = false
key_file = false
// Main arguments:
gtf = '/projects/anczukow-lab/reference_genomes/mouse_black6/Gencode/gencode.vM23.primary_assembly.annotation.gtf'
assembly_name = 'GRCm38'
star_index = '/projects/anczukow-lab/reference_genomes/mouse_black6/Gencode/star_overhangs_2.7.9a/star_2.7.9a_GRCm38_150.tar.gz'
singleEnd = false
stranded = 'first-strand'
readlength = 150
// Trimmomatic:
minlen = 20
slidingwindow = true
//Star:
mismatch = 5
filterScore = 0.66
sjdbOverhangMin = 3
soft_clipping = true
save_unmapped = false
//rMATS:
statoff = false
paired_stats = false
novelSS = false
mil = 50
mel = 500
//Other:
test = false
max_cpus = 72
max_memory = 760.GB
max_time = 72.h
skiprMATS = false
skipMultiQC = false
mega_time = 20.h
debug = false
error_strategy = 'finish'
cleanup = false
}
cleanup = params.cleanup
process {
errorStrategy = params.error_strategy
}