We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b21acc commit d7bb1b6Copy full SHA for d7bb1b6
im2deep/im2deep.py
@@ -33,7 +33,8 @@ def predict_ccs(
33
34
path_model_list = list(path_model.glob("*.hdf5"))
35
if use_single_model:
36
- path_model_list = [path_model_list[1]]
+ LOGGER.debug("Using model {}".format(path_model_list[2]))
37
+ path_model_list = [path_model_list[2]]
38
39
dlc = DeepLC(path_model=path_model_list, n_jobs=n_jobs, predict_ccs=True)
40
LOGGER.info("Predicting CCS values...")
@@ -54,7 +55,6 @@ def predict_ccs(
54
55
use_charge_state=use_charge_state,
56
)
57
- LOGGER.debug(psm_list_pred_df)
58
if write_output:
59
LOGGER.info("Writing output file...")
60
output_file = open(output_file, "w")
0 commit comments