Skip to content

Commit

Permalink
commented out some lines
Browse files Browse the repository at this point in the history
  • Loading branch information
carlocamilloni committed Jul 16, 2024
1 parent 5ec2ebe commit 6a1de1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/multiego/ensemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def init_meGO_ensemble(args):
return ensemble

reference_set = set(ensemble["topology_dataframe"]["name"].to_list())
unique_ref_molecule_names = topology_dataframe["molecule_name"].unique()
# unique_ref_molecule_names = topology_dataframe["molecule_name"].unique()

# now we process the train contact matrices
train_contact_matrices = {}
Expand All @@ -515,7 +515,7 @@ def init_meGO_ensemble(args):
_,
) = initialize_topology(topology, custom_dict, args)
# check that the molecules defined have a reference
unique_temp_molecule_names = temp_topology_dataframe["molecule_name"].unique()
# unique_temp_molecule_names = temp_topology_dataframe["molecule_name"].unique()
# check_molecule_names(unique_ref_molecule_names, unique_temp_molecule_names)

train_topology_dataframe = pd.concat(
Expand Down Expand Up @@ -590,7 +590,7 @@ def init_meGO_ensemble(args):
_,
) = initialize_topology(topology, custom_dict, args)
# check that the molecules defined have a reference
unique_temp_molecule_names = temp_topology_dataframe["molecule_name"].unique()
# unique_temp_molecule_names = temp_topology_dataframe["molecule_name"].unique()
# check_molecule_names(unique_ref_molecule_names, unique_temp_molecule_names)
check_topology_dataframe = pd.concat(
[check_topology_dataframe, temp_topology_dataframe],
Expand Down

0 comments on commit 6a1de1c

Please sign in to comment.