Skip to content

Commit 23b3d05

Browse files
committed
tether chunk size set
1 parent 69f987f commit 23b3d05

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/nextflow/xchem/tether-dock-score.nf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ params.molfiles = '*.mol'
1111
params.ph_min = null
1212
params.ph_max = null
1313
params.timeout_embed = null
14-
params.chunk_size_tether = null
14+
params.chunk_size_tether = 500
1515

1616
// docking params
1717
params.protein = 'data/mpro/Mpro-x0387_0.mol2'
@@ -69,6 +69,7 @@ process tether {
6969

7070
"""
7171
python -m pipelines.xchem.prepare_tether --smi '$smiles' --mol '$mol'\
72+
--chunk-size $parms.chunk_size_tether
7273
${params.ph_min != null ? '--min-ph ' + params.ph_min : ''}\
7374
${params.ph_max != null ? '--max-ph ' + params.ph_max : ''}\
7475
${params.timeout_embed != null ? '--timeout-embed ' + params.timeout_embed : ''}\

0 commit comments

Comments
 (0)