Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Command options' help messages in predict.py missing #16

Open
eunos-1128 opened this issue Mar 30, 2024 · 1 comment
Open

Command options' help messages in predict.py missing #16

eunos-1128 opened this issue Mar 30, 2024 · 1 comment

Comments

@eunos-1128
Copy link
Contributor

eunos-1128 commented Mar 30, 2024

Hi,

Thank you for your impressive work.

There are no help messages for prediction options.

parser.add_argument('--input_csv', type=str, default='splits/transporters_only.csv')
parser.add_argument('--templates_dir', type=str, default='./data')
parser.add_argument('--msa_dir', type=str, default='./alignment_dir')
parser.add_argument('--mode', choices=['alphafold', 'esmfold'], default='alphafold')
parser.add_argument('--samples', type=int, default=10)
parser.add_argument('--steps', type=int, default=10)
parser.add_argument('--outpdb', type=str, default='./outpdb/default')
parser.add_argument('--weights', type=str, default=None)
parser.add_argument('--ckpt', type=str, default=None)
parser.add_argument('--original_weights', action='store_true')
parser.add_argument('--pdb_id', nargs='*', default=[])
parser.add_argument('--subsample', type=int, default=None)
parser.add_argument('--resample', action='store_true')
parser.add_argument('--tmax', type=float, default=1.0)
parser.add_argument('--templates', action='store_true')
parser.add_argument('--no_diffusion', action='store_true', default=False)
parser.add_argument('--self_cond', action='store_true', default=False)
parser.add_argument('--noisy_first', action='store_true', default=False)
parser.add_argument('--runtime_json', type=str, default=None)
parser.add_argument('--no_overwrite', action='store_true', default=False)

Could you add these messages or describe for what each option is in README?

I could figure out some of them after reading the paper and README but some are still not clear so much.

@eunos-1128 eunos-1128 changed the title command options' help messages in predict.py missing Command options' help messages in predict.py missing Mar 30, 2024
@eunos-1128
Copy link
Contributor Author

eunos-1128 commented Apr 1, 2024

I could understand all of options after reading source code.

However, I think additional messages or descriptions in README help for many people understand how to use alphaflow.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant