generated from WEHI-ResearchComputing/nf-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
36 lines (32 loc) · 1.59 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
params {
// Required Parameters
outdir = ""
inputdir = ""
//model_preset = "monomer_ptm" // Values can be (monomer|monomer_casp14|monomer_ptm|multimer)
model_indices = "0,2" // Values can be any combination of number between 0,4 example: 0,1 or 0,2,3 or 0,1,2,3,4 or 1
num_predictions = 2
model_to_relax = "best" //Values can be (all|best|none, default: best).
max_template_date = "2024-03-01" //Maximum template release date to consider in YYYY-MM-DD format. If left empty (""), todays date will be used.
//Optional Parameters
custom_templates_path = "" // Path to a directory containing custom cif templates. (Default: /vast/projects/alphafold/databases/pdb_mmcif/mmcif_files).
pdb_seqres_db_path = "" //Path to a file containing custom templates. (Default: /vast/projects/alphafold/databases/pdb_seqres/pdb_seqres.txt).
database_preset = "full_dbs" //Choose db preset model (reduced_dbs|full_dbs). (Default: full_dbs).
AF_UNIREF30_DB = "" //override HHblits uniref30 database. A directory containing UniRef30_YYYY_MM_* files.
AF_PDB70_DB = "" //override HHsearch pdb70 database. A directory containing pdb70_* files.
}
profiles {
milton{
conda.enabled = true
cleanup = false
process {
withLabel:Alphafold2 {
module = 'alphafold/2.3.2'
cpus = 10
memory = '100 GB'
}
}
}
debug {
cleanup = false
}
}