-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnextflow.config
More file actions
57 lines (49 loc) · 1.13 KB
/
nextflow.config
File metadata and controls
57 lines (49 loc) · 1.13 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
params {
fasta = false
pdb = false
ligands = false
outputDir = './output/'
pfam_path = ""
blastdb_path = ""
blastArgs = "-evalue 1e-5 -num_threads 12 -num_iterations 3"
colabfoldArgs = "--amber --use-gpu-relax --templates --num-recycle 3 --num-models 5"
pdb_type = 0
md_exhaustiveness = 16
md_box_size = 20
md_spacing = 0.375
dock_pockets = true
skipSequenceProperties = false
skipPfamSearch = false
skipConservationMSA = false
skipStructuralAnalysis = false
skipAlphaFold = false
skipStructureViewer = false
skipPocketPrediction = false
skipStabilityChanges = false
skipMolecularDocking = false
skipMultiQC = false
help = false
}
timeline {
enabled = true
file = "$params.outputDir/timeline.html"
}
report {
enabled = true
file = "$params.outputDir/report.html"
}
trace {
enabled = true
file = "$params.outputDir/trace.tsv"
raw = true
}
dag {
enabled = true
file = "$params.outputDir/dag.png"
}
manifest {
name = 'AFPAP'
author = 'Maghiar Octavian'
mainScript = 'main.nf'
version = '1.0.0'
}