-
Notifications
You must be signed in to change notification settings - Fork 7
/
bpipe.config
100 lines (80 loc) · 1.5 KB
/
bpipe.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
89
90
91
92
93
94
95
96
97
98
99
100
executor="local"
//controls the total number of procs MINTIE can spawn
//if running locally, ensure that concurrency is not to
//set to more than the number of procs available. If
//running on a cluster, this can be increased
concurrency=16
//following commands are for running on a cluster
walltime="20:00:00"
queue="batch"
mem_param="mem"
memory="8"
proc_mode=1
usePollerFileWatcher=true
//add server-specific module to load
//modules=""
commands {
fastq_dedupe {
procs="1"
memory="160"
}
trim {
procs="8"
memory="16"
}
assemble {
procs="8"
memory="180"
}
align_contigs_against_genome {
procs="8"
memory="32"
}
align_contigs_against_transcriptome {
procs="8"
memory="32"
}
create_salmon_index {
procs="8"
memory="16"
}
run_salmon {
procs="8"
memory="16"
}
create_ec_count_matrix {
memory="64"
}
run_de {
memory="16"
}
annotate_contigs {
memory="32"
}
align_contigs_to_supertranscript {
procs="8"
memory="64"
}
make_supertranscript_reference {
memory="16"
}
star_genome_gen {
procs="8"
memory="36"
}
star_align {
procs="8"
memory="36"
}
hisat_align {
procs="8"
memory="24"
}
sort_and_index_bam {
procs="8"
memory="36"
}
calculate_VAF {
memory="24"
}
}