For example, in the following CLI command examples in README.md:
17 --chains_to_designSpecify which chains (e.g. "ABC") need to be redesigned, other chains will be kept fixed. Outputs in seqs/backbones will still have atoms/sequences for the whole input PDB.
18 --parse_these_chains_onlyParse and design only specified chains (e.g. "ABC"). Outputs will have only specified chains.
multiple chains should be comma separated, that is "A,B,C" instead of "ABC", as per the parsing code (see lines 272-273 in run.py for example):
if type(args.chains_to_design) == str:
chains_to_design_list = args.chains_to_design.split(",")
Additionally, the help text for argparser flags (see lines 883-888 in run.py for example):
For example, in the following CLI command examples in
README.md
:17 --chains_to_design Specify which chains (e.g. "ABC") need to be redesigned, other chains will be kept fixed. Outputs in seqs/backbones will still have atoms/sequences for the whole input PDB.
18 --parse_these_chains_only Parse and design only specified chains (e.g. "ABC"). Outputs will have only specified chains.
multiple chains should be comma separated, that is "A,B,C" instead of "ABC", as per the parsing code (see lines 272-273 in
run.py
for example):Additionally, the help text for argparser flags (see lines 883-888 in
run.py
for example):should also have multiple chains separated by commas.