Posts

Showing posts with the label Google

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...

Taking High Resolution Web-Page Screenshots on Chrome

Image
Google Chrome (or simply Chrome) is a free and fast web browser developed by Google . The currently released Chrome web browser comes with built-in functionality to take a screenshot of webpages without any add-ons. It allows taking a high-quality screenshots at high resolutions. Types of Screenshots The Chrome browser support taking 4 types of screenshots of a web page. Capture area screenshot - taking screenshot on specific region Capture full size screenshot - taking scrolling screenshot from top to bottom Capture node screenshot - taking screenshot of a specific HTML element Capture screenshot - taking full screen screenshot The Capture full size screenshot / Capture screenshot options are accessible via Chrome's developer tools (Ctrl+Shift+I). Furthermore, Capture area screenshot / Capture node screenshot options are accessible via Run command (Ctrl+Shift+P) by entering command “ screenshot ”. The video tutorial below demonstrates...