-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathnextflow.config
More file actions
executable file
·66 lines (60 loc) · 1.91 KB
/
nextflow.config
File metadata and controls
executable file
·66 lines (60 loc) · 1.91 KB
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
manifest {
name = 'FLAG'
author = 'Formbio'
homePage = 'https://github.com/formbio/FLAG'
description = 'eukaryoteGeneAnnotation'
mainScript = 'main.nf'
nextflowVersion = '!>=21.04.0'
version = '1.0dev'
}
// Load base.config by default for all pipelines
//includeConfig './modules/nf-modules/nfconf/base.config'
params {
// TODO nf-core: Specify your pipeline's command line flags
// Input options
databaseid= "amphibianproteinsuniprot"
rnadatabaseid = "refseq_rna"
entapDB = "entapDBs.tar.gz"
//optional run params
speciesScientificName='Replace_name'
runProsplign = 'false'
lineage = 'mammalia_odb10'
pretrainedAugustusSpecies = 'human'
helixerModel = 'vertibrate'
size = 'normal'
externalalgo = 'none'
annotationalgo = 'none'
proteinalgo = 'none'
funcAnnotProgram = 'eggnog'
eggnogDB = 'eggnogDB.tar.gz'
masker = 'skip'
gaps = 'false'
max_time = '30.d'
output = 'annotation'
validate_params = true
show_hidden_params = false
schema_ignore_params = 'genomes,modules'
}
//includeConfig 'modules/nf-modules/nfconf/databases.config'
profiles {
docker {
docker.enabled = true
includeConfig './modules/nf-modules/nfconf/docker.config'
// docker.userEmulation = true
}
docker_small {
docker.enabled = true
includeConfig './modules/nf-modules/nfconf/docker_small.config'
// docker.userEmulation = true
}
singularity {
singularity.enabled = true
singularity.userEmulation = true
includeConfig './modules/nf-modules/nfconf/singularity.config'
}
singularity_small {
singularity.enabled = true
singularity.userEmulation = true
includeConfig './modules/nf-modules/nfconf/singularity_small.config'
}
}