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
- Updated the repr method of `ResidueId` so that it isn't confused with a string anymore
- Improved the speed of the `to_dataframe` function, from 8.5s to 150ms (TM3-GPCR PPI example)
Converting the fingerprint to a dataframe is slow, especially when there are a lot of columns.
Example code:
Here is the line-by-line execution time:
The problem comes from using
data[(l, p)].apply(pd.Series)
which is known to be slowThe text was updated successfully, but these errors were encountered: