the designs that are created do not start from 37 but from 0. As seen in stdout below:
The Fix
This seems to be a problem in how the sampler class is initialised which calls reset_design_num instead of setting the design_num attribute from args (where start_num by default is 0). The pull request is here.
The Problem
While running the following scaffolding command (the PDB was downloaded before hand):
the designs that are created do not start from 37 but from 0. As seen in stdout below:
The Fix
This seems to be a problem in how the sampler class is initialised which calls
reset_design_num
instead of setting thedesign_num
attribute fromargs
(wherestart_num
by default is 0). The pull request is here.