Python for Bioinformatics

These are the notebooks for the Python with Bioinformatics Cookbook.

Datasets

Click here for the datasets used in the book. You only need this if you do not use the notebooks (as the notebooks will take care of the data)

Python 2 or 3?

Depending on your Python version, some content might not be available. Lets test that:


In [1]:
import platform
major, minor, patch = platform.python_version_tuple()
if major == 3:
    print('Python 3: The Phylogenomics module will not work, but all the Big Data content will')
else:
    print('Python 2: The Phylogenomics module will work, but some Big Data content will not')


Python 2: The Phylogenomics module will work, but some Big Data content will not

The new version of DendroPy supports Python 3. You are thus encouraged to consider Python 3

If you are seeing this on github,for some reason opening notebooks in new tabs does not work. Please open notebooks in the same tab here.

Python and the surrounding software ecology

Next Generation Sequencing

Genomics

Population Genetics

Simulation in Population Genetics

Phylogenetics

Proteomics

Other topics

Advanced Python for Bioinformatics


In [ ]: