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
Running the extract and align sequences cell produces an AttributeError: 'DataFrame' object has no attribute 'append'. As far as I can tell, the requirements specify the pandas version to >=1.1.5, and the .append function is deprecated in pandas 2.0.0. I'm not sure if the best solution is to restrict the pandas version to sub 2.0.0, or change all the instances of df.append in the code. For my use, changing the pandas requirement to pandas==1.1.5 resolved the issue.
The text was updated successfully, but these errors were encountered:
Running the extract and align sequences cell produces an AttributeError: 'DataFrame' object has no attribute 'append'. As far as I can tell, the requirements specify the pandas version to >=1.1.5, and the .append function is deprecated in pandas 2.0.0. I'm not sure if the best solution is to restrict the pandas version to sub 2.0.0, or change all the instances of df.append in the code. For my use, changing the pandas requirement to pandas==1.1.5 resolved the issue.
The text was updated successfully, but these errors were encountered: