Skip to content

Commit d7bb1b6

Browse files
committed
default use_single_model True
1 parent 9b21acc commit d7bb1b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

im2deep/im2deep.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ def predict_ccs(
3333

3434
path_model_list = list(path_model.glob("*.hdf5"))
3535
if use_single_model:
36-
path_model_list = [path_model_list[1]]
36+
LOGGER.debug("Using model {}".format(path_model_list[2]))
37+
path_model_list = [path_model_list[2]]
3738

3839
dlc = DeepLC(path_model=path_model_list, n_jobs=n_jobs, predict_ccs=True)
3940
LOGGER.info("Predicting CCS values...")
@@ -54,7 +55,6 @@ def predict_ccs(
5455
use_charge_state=use_charge_state,
5556
)
5657

57-
LOGGER.debug(psm_list_pred_df)
5858
if write_output:
5959
LOGGER.info("Writing output file...")
6060
output_file = open(output_file, "w")

0 commit comments

Comments
 (0)