-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
78 lines (60 loc) · 1.57 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
docker {
enabled = true
}
process {
errorStrategy = 'retry'
maxRetries = 1
cpus = 2
memory = '4 GB'
withName:maskRepeats_1{
container = 'quay.io/biocontainers/mummer4:4.0.0rc1--pl5262h1b792b2_1'
}
withName:maskRepeats_2{
container = 'quay.io/biocontainers/bedtools:2.29.2--hc088bd4_0'
}
withName:bwaIndex{
container = 'staphb/bwa:0.7.17'
}
withName:indexReference_1{
container = 'quay.io/biocontainers/picard:2.22.9--0'
}
withName:indexReference_2{
container = 'staphb/samtools:1.10'
}
withName: seqkit_fastq_pair{
container = 'quay.io/biocontainers/seqkit:0.16.0--h9ee0642_0'
}
withName: faqcs{
container = 'quay.io/biocontainers/faqcs:2.10--r40h9a82719_1'
}
withName: seqtk_downsample{
container = 'quay.io/biocontainers/seqtk:1.3--hed695b0_2'
}
withName: bwa_align{
container = 'staphb/bwa:0.7.17'
}
withName:bam_sort{
container = 'staphb/samtools:1.10'
}
withName:picard{
container = 'quay.io/biocontainers/picard:2.22.7--0'
}
withName:bam_index{
container = 'staphb/samtools:1.10'
}
withName: fastqc{
container = 'staphb/fastqc:0.11.8'
}
withName: qualimap{
container = 'quay.io/biocontainers/qualimap:2.2.2d--hdfd78af_2'
}
withName: multiqc{
container = 'quay.io/biocontainers/multiqc:1.11--pyhdfd78af_0'
}
withName: gatk_HC{
container = 'broadinstitute/gatk:latest'
}
withName: gatk_CB{
container = 'broadinstitute/gatk:latest'
}
}