Fast-HInt-ppi 0.2.3__tar.gz → 0.2.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/Utils_HInt.py +1 -1
  2. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt_ppi.egg-info/PKG-INFO +1 -1
  3. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/PKG-INFO +1 -1
  4. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/setup.py +1 -1
  5. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/Fast_HInt.py +0 -0
  6. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/File_proteins.py +0 -0
  7. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/Scoring_HInt.py +0 -0
  8. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/__init__.py +0 -0
  9. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/get_good_inter_pae.py +0 -0
  10. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/__init__.py +0 -0
  11. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/calculate_mpdockq.py +0 -0
  12. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/clean_pdb.py +0 -0
  13. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/interface_assess.py +0 -0
  14. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/pi_score_utils.py +0 -0
  15. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/pisa_utils.py +0 -0
  16. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/run_piscore_wc.py +0 -0
  17. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/sc_utils.py +0 -0
  18. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/svm_model/__init__.py +0 -0
  19. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/svm_model/finalized_model_A.sav +0 -0
  20. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/svm_model/finalized_model_B.sav +0 -0
  21. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/svm_model/finalized_model_wc.sav +0 -0
  22. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/svm_model/scaler_model_A.sav +0 -0
  23. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/svm_model/scaler_model_B.sav +0 -0
  24. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt/script_pi_score/svm_model/scaler_model_wc.sav +0 -0
  25. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt_ppi.egg-info/SOURCES.txt +0 -0
  26. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt_ppi.egg-info/dependency_links.txt +0 -0
  27. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt_ppi.egg-info/entry_points.txt +0 -0
  28. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt_ppi.egg-info/requires.txt +0 -0
  29. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/Fast_HInt_ppi.egg-info/top_level.txt +0 -0
  30. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/MANIFEST.in +0 -0
  31. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/README.md +0 -0
  32. {fast_hint_ppi-0.2.3 → fast_hint_ppi-0.2.4}/setup.cfg +0 -0
@@ -1147,7 +1147,7 @@ def manager(jobs_pending, HInt_object, CPU, multi_scoring, Informations_dict, GP
1147
1147
 
1148
1148
  free = max_vram - gpu_vram_used[gpu_id]
1149
1149
  if job_vram <= free and (multi_job_per_gpu or len(jobs_running[gpu_id]) == 0) :
1150
- if interaction_type == "Compounds" or os.path.exists(f"{Path_Pickle_Feature}{interaction.strip().split(";")[-1]}.pkl") :
1150
+ if interaction_type == "Compounds" or os.path.exists(f"{Path_Pickle_Feature}/{interaction.strip().split(";")[-1]}.pkl") :
1151
1151
 
1152
1152
  p = multiprocessing.Process(target=gpu_job_runner,
1153
1153
  args=(gpu_id,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Fast_HInt-ppi
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: A tool to find homologous interactions and speed up AlphaFold-based structural modeling.
5
5
  Home-page: https://github.com/Qrouger/HInt
6
6
  Author: Quentin Rouger
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Fast_HInt-ppi
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: A tool to find homologous interactions and speed up AlphaFold-based structural modeling.
5
5
  Home-page: https://github.com/Qrouger/HInt
6
6
  Author: Quentin Rouger
@@ -4,7 +4,7 @@ from setuptools import setup
4
4
 
5
5
  setup(
6
6
  name='Fast_HInt-ppi',
7
- version='0.2.3',
7
+ version='0.2.4',
8
8
  description=(
9
9
  'A tool to find homologous interactions and speed up AlphaFold-based structural modeling.'
10
10
  ),
File without changes
File without changes
File without changes