forked from dptech-corp/Uni-Fold
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UF-Symmetry inference code (dptech-corp#44)
* swap case study * add uf-symmetry inference (dptech-corp#21) * notebook noqa * fix arg-passing bug * fix plotting bug * fix b factor bug
- Loading branch information
Showing
15 changed files
with
1,392 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,3 +120,4 @@ test/ | |
*.tfevents.* | ||
*.sto | ||
*.a3m | ||
nogit/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
fasta_path=$1 | ||
symmetry=$2 | ||
output_dir_base=$3 | ||
database_dir=$4 | ||
max_template_date=$5 | ||
param_path=$6 | ||
|
||
echo "Starting homogeneous searching..." | ||
python unifold/homo_search.py \ | ||
--fasta_path=$fasta_path \ | ||
--max_template_date=$max_template_date \ | ||
--output_dir=$output_dir_base \ | ||
--uniref90_database_path=$database_dir/uniref90/uniref90.fasta \ | ||
--mgnify_database_path=$database_dir/mgnify/mgy_clusters_2018_12.fa \ | ||
--bfd_database_path=$database_dir/bfd/bfd_metaclust_clu_complete_id30_c90_final_seq.sorted_opt \ | ||
--uniclust30_database_path=$database_dir/uniclust30/uniclust30_2018_08/uniclust30_2018_08 \ | ||
--uniprot_database_path=$database_dir/uniprot_db/uniprot_220501/uniprot_trembl.fasta \ | ||
--pdb_seqres_database_path=$database_dir/pdb_seqres/pdb_seqres.txt \ | ||
--template_mmcif_dir=$database_dir/pdb_mmcif/mmcif_files \ | ||
--obsolete_pdbs_path=$database_dir/pdb_mmcif/obsolete.dat \ | ||
--use_precomputed_msas=True | ||
|
||
echo "Starting prediction..." | ||
fasta_dir=$(dirname $fasta_path) | ||
target_name=${fasta_dir##*/} | ||
python unifold/inference_symmetry.py \ | ||
--symmetry=$symmetry \ | ||
--param_path=$param_path \ | ||
--data_dir=$output_dir_base \ | ||
--target_name=$target_name \ | ||
--output_dir=$output_dir_base |
Oops, something went wrong.