-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnextflow.config
42 lines (36 loc) · 975 Bytes
/
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
params {
refFasta = "$launchDir/data/AnnotatedProteins.fsa"
peptidesTab = "$launchDir/data/iedb.tab"
taxon = 5833
peptideMatchResults = "iedb.gff"
results = "$launchDir/output"
nonTaxaShortPeptideCutoff = 5
}
process {
maxForks = 10
withName: 'epitopeMapping:smallExactPepMatch:preprocess' {
ext.kmer_size = 2
ext.format = "sql"
}
withName: 'epitopeMapping:smallExactPepMatch:match' {
ext.kmer_size = 2
ext.num_mismatches = 0
}
withName: 'epitopeMapping:exactPepMatch:preprocess' {
ext.kmer_size = 5
ext.format = "sql"
}
withName: 'epitopeMapping:exactPepMatch:match' {
ext.kmer_size = 5
ext.num_mismatches = 0
}
withName: 'epitopeMapping:inexactForTaxaPeptidesPepMatch:preprocess' {
ext.kmer_size = 3
ext.format = "pickle"
}
withName: 'epitopeMapping:inexactForTaxaPeptidesPepMatch:match' {
ext.kmer_size = 3
ext.num_mismatches = 1
}
}
includeConfig "$baseDir/conf/docker.config"