-
Notifications
You must be signed in to change notification settings - Fork 2
/
smina-docking.nf
82 lines (64 loc) · 2.32 KB
/
smina-docking.nf
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* Copyright 2022 Informatics Matters Ltd.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/* Perform docking using smina, a fork of autodock vina.
Example:
nextflow run smina-docking.nf --ligands data/candidates.sdf --protein data/dhfr-receptor-ph7.pdbqt \
--ligand data/dhfr-ligand.pdbqt --padding 2 --exhaustiveness 4 --scoring_function vinardo \
--publish_dir test --chunk_size 5
*/
nextflow.enable.dsl=2
params.chunk_size = 100
params.scratch = false
// docking params
params.ligands = 'ligands.sdf'
params.ligand = 'ligand.pdbqt'
params.protein = 'receptor.pdbqt'
params.output_basename = 'results_smina'
params.publish_dir = './'
// files
ligands = file(params.ligands)
ligand = file(params.ligand)
protein = file(params.protein)
// includes
include { convert_format as format_protein } from './nf-processes/obabel/convert_format.nf' addParams(
input_extensions: ['.pdb', '.mol2'],
output_extension: '.pdbqt',
outputfile: 'ready_receptor'
)
include { convert_format as format_ligand } from './nf-processes/obabel/convert_format.nf' addParams(
input_extensions: ['.pdb', '.mol2', '.mol'],
output_extension: '.pdbqt',
outputfile: 'ready_ligand'
)
include { split_sdf } from './nf-processes/file/split_sdf.nf'
include { smina_docking as smina } from './nf-processes/smina/smina_docking.nf'
include { concatenate_files } from './nf-processes/file/concatenate_files.nf' addParams(
outputfile: params.output_basename + '.sdf',
glob: 'smina_*.sdf')
// workflows
workflow smina_docking {
take:
ligands
ligand
protein
main:
format_protein(protein)
format_ligand(ligand)
split_sdf(ligands)
smina(split_sdf.out.flatten(), format_ligand.out, format_protein.out)
concatenate_files(smina.out[0].collect())
emit:
concatenate_files.out
}
workflow {
smina_docking(ligands, ligand, protein)
}