You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the code is supposed to compare the edge information of two molecules provided as arguments but instead compares the edges of one of the input molecules with itself.
Provide any example files that are needed to reproduce the error, especially if the bug pertains to parsing a file. If the file format is not supported by GitHub, zip it into an archive and upload that.
Expected behavior
What do you expect to happen?
f1_edges = frag1.edges()
if len(f1_edges) != len(f2_edges):
The above code takes the edges from frag1 which is an argument and compares them with the edges of frag2 (which is also an argument)
The text was updated successfully, but these errors were encountered:
Description
A clear and concise bug description.
Repro
Steps to reproduce the behavior:
Provide any example files that are needed to reproduce the error, especially if the bug pertains to parsing a file. If the file format is not supported by GitHub, zip it into an archive and upload that.
Expected behavior
What do you expect to happen?
The above code takes the edges from frag1 which is an argument and compares them with the edges of frag2 (which is also an argument)
The text was updated successfully, but these errors were encountered: