Fast-HInt-ppi 0.2.2__tar.gz → 0.2.3__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.
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/Fast_HInt.py +0 -1
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/Utils_HInt.py +24 -22
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt_ppi.egg-info/PKG-INFO +1 -1
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/PKG-INFO +1 -1
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/setup.py +1 -1
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/File_proteins.py +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/Scoring_HInt.py +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/__init__.py +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/get_good_inter_pae.py +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/__init__.py +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/calculate_mpdockq.py +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/clean_pdb.py +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/interface_assess.py +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/pi_score_utils.py +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/pisa_utils.py +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/run_piscore_wc.py +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/sc_utils.py +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/svm_model/__init__.py +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/svm_model/finalized_model_A.sav +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/svm_model/finalized_model_B.sav +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/svm_model/finalized_model_wc.sav +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/svm_model/scaler_model_A.sav +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/svm_model/scaler_model_B.sav +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/svm_model/scaler_model_wc.sav +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt_ppi.egg-info/SOURCES.txt +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt_ppi.egg-info/dependency_links.txt +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt_ppi.egg-info/entry_points.txt +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt_ppi.egg-info/requires.txt +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt_ppi.egg-info/top_level.txt +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/MANIFEST.in +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/README.md +0 -0
- {fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/setup.cfg +0 -0
|
@@ -190,7 +190,6 @@ def main() :
|
|
|
190
190
|
prio_list_MSA = prioritize_by_vram_fit(job_with_vram_length, First_batch, GPU)
|
|
191
191
|
batch_MSA = []
|
|
192
192
|
if prio_list_MSA != [] :
|
|
193
|
-
prio_list_MSA.pop(0) #remove first batch
|
|
194
193
|
for batch in prio_list_MSA :
|
|
195
194
|
new_prio_list = []
|
|
196
195
|
for prot in batch :
|
|
@@ -1147,28 +1147,30 @@ 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
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1150
|
+
if interaction_type == "Compounds" or os.path.exists(f"{Path_Pickle_Feature}{interaction.strip().split(";")[-1]}.pkl") :
|
|
1151
|
+
|
|
1152
|
+
p = multiprocessing.Process(target=gpu_job_runner,
|
|
1153
|
+
args=(gpu_id,
|
|
1154
|
+
interaction,
|
|
1155
|
+
job_vram,
|
|
1156
|
+
result_queue,
|
|
1157
|
+
Path_AlphaFold_Data,
|
|
1158
|
+
Path_Pickle_Feature,
|
|
1159
|
+
interaction_type,
|
|
1160
|
+
AF_version,
|
|
1161
|
+
seq_bait,
|
|
1162
|
+
Baits,
|
|
1163
|
+
compound
|
|
1164
|
+
),
|
|
1165
|
+
)
|
|
1166
|
+
|
|
1167
|
+
p.start()
|
|
1168
|
+
|
|
1169
|
+
gpu_vram_used[gpu_id] += job_vram
|
|
1170
|
+
jobs_running[gpu_id].append((interaction, p))
|
|
1171
|
+
jobs_pending.remove((interaction, job_vram))
|
|
1172
|
+
launched = True
|
|
1173
|
+
break
|
|
1172
1174
|
|
|
1173
1175
|
if launched :
|
|
1174
1176
|
break
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/svm_model/scaler_model_A.sav
RENAMED
|
File without changes
|
{fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/svm_model/scaler_model_B.sav
RENAMED
|
File without changes
|
{fast_hint_ppi-0.2.2 → fast_hint_ppi-0.2.3}/Fast_HInt/script_pi_score/svm_model/scaler_model_wc.sav
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|