-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
42 lines (41 loc) · 1.42 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
profiles {
core {
params {
proteomes = "$baseDir/data/core/test.tar.gz"
outputDir = "$launchDir/coreOutput"
outdatedOrganisms = "$baseDir/data/core/outdated.txt"
diamondSimilarityCache = "$baseDir/data/core/diamondSimilarityCache"
orthoFinderDiamondOutputFields = "qseqid sseqid pident length mismatch gapopen qstart qend sstart send evalue bitscore"
buildVersion = "7"
}
docker {
enabled = true
runOptions='--user root'
}
singularity {
enabled = false
}
}
peripheral {
params {
outputDir = "$launchDir/output"
coreProteomes = "$baseDir/data/core/test.tar.gz"
peripheralProteomes = "$baseDir/data/peripherals/peripherals.tar.gz"
coreGroupsFile = "$baseDir/coreOutput/reformattedGroups.txt"
coreGroupSimilarities = "$baseDir/coreOutput/groupDiamondResults"
coreTranslateSequenceFile = "$baseDir/coreOutput/diamondCache/SequenceIDs.txt"
outdatedOrganisms = "$baseDir/data/peripherals/outdated.txt"
peripheralDiamondCache = "$baseDir/data/peripherals/cache"
outputDir = "$launchDir/peripheralOutput"
buildVersion = "7"
orthoFinderDiamondOutputFields = "qseqid sseqid pident length mismatch gapopen qstart qend sstart send evalue bitscore"
bestRepDiamondOutputFields = "qseqid sseqid evalue"
}
docker {
enabled = true
}
singularity {
enabled = false
}
}
}