guma44 / GEOparse

Python library to access Gene Expression Omnibus Database (GEO)
BSD 3-Clause "New" or "Revised" License
137 stars 51 forks source link

use `pandas.read_csv` rather than `DataFrame.from_csv` #45

Closed Miserlou closed 6 years ago

Miserlou commented 6 years ago

from_csv is deprecated, so creates a lot of deprecation warnings in the code. Additionally, read_csv is 46x to 490x faster than from_csv. There are small changes to the interface, described here.

guma44 commented 6 years ago

Thanks a lot for pointing this. I will add this to the things to do for the next release.

Miserlou commented 6 years ago

Closed via #45