I encountered the problem 'NameError: name' model_out_name 'is not defined' while reasoning
python compute_fitness.py
--base_dir data/$protein_dir
--out_scores_dir result/$protein_dir
I found that the compute_fitness.cpy did not receive a valid parameter aa_deq-dir
I made a very small modification
--aa_seq_dir data/$protein_dir/aa_seq \
Complete script:
python compute_fitness.py \
--base_dir data/$protein_dir \
--aa_seq_dir data/$protein_dir/aa_seq \
--out_scores_dir result/$protein_dir
pull-request:
#14
I encountered the problem 'NameError: name' model_out_name 'is not defined' while reasoning
python compute_fitness.py
--base_dir data/$protein_dir
--out_scores_dir result/$protein_dir
I found that the compute_fitness.cpy did not receive a valid parameter aa_deq-dir
I made a very small modification
--aa_seq_dir data/$protein_dir/aa_seq \Complete script:
pull-request:
#14