-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStep2_compute_evol_indices_all_singles.sh
28 lines (26 loc) · 1.22 KB
/
Step2_compute_evol_indices_all_singles.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
export MSA_data_folder='./data/MSA'
export MSA_list='./data/mappings/example_mapping.csv'
export MSA_weights_location='./data/weights'
export VAE_checkpoint_location='./results/VAE_parameters'
export model_name_suffix='Jan1_PTEN_example'
export model_parameters_location='./EVE/default_model_params.json'
export training_logs_location='./logs/'
export protein_index=0
export computation_mode='all_singles'
export all_singles_mutations_folder='./data/mutations'
export output_evol_indices_location='./results/evol_indices'
export num_samples_compute_evol_indices=20000
export batch_size=2048
python compute_evol_indices.py \
--MSA_data_folder ${MSA_data_folder} \
--MSA_list ${MSA_list} \
--protein_index ${protein_index} \
--MSA_weights_location ${MSA_weights_location} \
--VAE_checkpoint_location ${VAE_checkpoint_location} \
--model_name_suffix ${model_name_suffix} \
--model_parameters_location ${model_parameters_location} \
--computation_mode ${computation_mode} \
--all_singles_mutations_folder ${all_singles_mutations_folder} \
--output_evol_indices_location ${output_evol_indices_location} \
--num_samples_compute_evol_indices ${num_samples_compute_evol_indices} \
--batch_size ${batch_size}