Posts

Showing posts with the label Notebook

Hydrophobicity plot using BioPython on Google Colab Notebook

Image
A hydrophobicity or lipophilicity plot is a 2D graphical display of the hydrophobic regions in the protein. The Kyte-Doolittle scale was widely used for identifying surface-exposed regions and transmembrane regions. The plot has the amino acid sequence of a protein on its x -axis and a degree of hydrophobicity on its y -axis. The graph regions with a positive value are hydrophobic. There are several hydrophobicity scales have been published for various uses. The commonly used hydrophobicity scales are Kyte-Doolittle scale, Engelman scale (GES scale), Eisenberg scale, Hopp-Woods scale, Cornette scale, Rose scale, and Janin scale. For further details, refer my previous article https://www.biob.in/2014/05/hydrophobicity-plot-using-biopython.html Program Implementation In this tutorial, I have used Google Colab Notebook for running the Python program. Click here for interactive demo. Python Program try: import google.colab !pip install biopython except ImportError: pa...