We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69f987f commit 23b3d05Copy full SHA for 23b3d05
src/nextflow/xchem/tether-dock-score.nf
@@ -11,7 +11,7 @@ params.molfiles = '*.mol'
11
params.ph_min = null
12
params.ph_max = null
13
params.timeout_embed = null
14
-params.chunk_size_tether = null
+params.chunk_size_tether = 500
15
16
// docking params
17
params.protein = 'data/mpro/Mpro-x0387_0.mol2'
@@ -69,6 +69,7 @@ process tether {
69
70
"""
71
python -m pipelines.xchem.prepare_tether --smi '$smiles' --mol '$mol'\
72
+ --chunk-size $parms.chunk_size_tether
73
${params.ph_min != null ? '--min-ph ' + params.ph_min : ''}\
74
${params.ph_max != null ? '--max-ph ' + params.ph_max : ''}\
75
${params.timeout_embed != null ? '--timeout-embed ' + params.timeout_embed : ''}\
0 commit comments