forked from bountrisv/rnaseq-ninon-experiments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdroso_RS1_C4_D2_salmon.config
77 lines (68 loc) · 2.12 KB
/
droso_RS1_C4_D2_salmon.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
manifest {
mainScript = 'main.nf'
}
params {
reads = '/workspace/ninon/data/medium_droso/*_{1,2}.f*q.gz'
reference_genome = '/workspace/ninon/data/Drosophila_melanogaster.BDGP6.32.dna.toplevel.fa'
reference_cdna = '/workspace/ninon/data/Drosophila_melanogaster.BDGP6.32.cdna.all.fa'
reference_cdna_ensembl = '/workspace/ninon/data/Drosophila_melanogaster.BDGP6.32.cdna.all.fa'
reference_annotation = '/workspace/ninon/data/Drosophila_melanogaster.BDGP6.32.106.gtf'
reference_annotation_ensembl = '/workspace/ninon/data/Drosophila_melanogaster.BDGP6.32.106.gtf'
baseDir = '/workspace/projects/Nine-s/nextflow_RS1_salmon'
outdir = '/workspace/ninon/results'
transcriptome = '/workspace/ninon/data/Drosophila_melanogaster.BDGP6.32.cdna.all.fa'
threads = 32
}
process {
executor = 'k8s'
scratch = true
withName:CHECK_STRANDNESS {
container = 'ninedem/check_strandedness:latest'
}
withLabel:fastqc {
container = 'biocontainers/fastqc:v0.11.9_cv7'
}
withLabel:fastp {
container = 'biocontainers/fastp:v0.20.1_cv1'
}
withLabel:star {
memory = '8.5 GB'
container = 'nfcore/rnaseq:1.4.2'
}
withLabel:samtools {
container = 'biocontainers/samtools:v1.7.0_cv4'
}
withLabel:cufflinks {
container = 'pgcbioinfo/cufflinks:2.2.1'
}
}
docker {
enabled = true
}
k8s {
debug {
yaml = true
}
namespace = 'default'
context = 'bountrisv-hu'
runAsUser = 0
storageClaimName = 'nextflow-ninon'
storageMountPath = '/workspace'
}
trace {
enabled = true
file = '_trace_RS1_C3_D4_salmon'
fields = 'task_id, hash, native_id, process, tag, name, status, exit, module, container, cpus, time, disk, memory, attempt, submit, start, complete, duration, realtime, queue, %cpu, %mem, rss, vmem, peak_rss, peak_vmem, rchar, wchar, syscr, syscw, read_bytes, write_bytes, vol_ctxt, inv_ctxt, env, workdir, script, scratch, error_action'
}
report {
enabled = true
file = '_report_RS1_C4_D2_salmon.html'
}
timeline {
enabled = true
file = '_timeline_RS1_C4_D2_salmon'
}
dag {
enabled = true
file = '_dag_RS1_C4_D2_salmon'
}