Daily Archives: May 16, 2014

Accessing UniProt with Python

BioServices provide an easy way to access UniProt In a previous post, I provided a simple example, reproduced here below, but in this post I also provide the link to a ipython notebook I’ve just created, which contains much more … Continue reading

Posted in Python | Tagged , | Leave a comment

pandas.read_csv: how to skip empty lines

Let us suppose that we start with a CSV file that has empty rows: A, B, C   1, 2, 3A, B, C 1, 2, 3 If you read this file with Pandas library, and look at the content of … Continue reading

Posted in Python | Tagged | 2 Comments