AAindex: Difference between revisions
Jump to navigation
Jump to search
(new page) |
(psico) |
||
(12 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{Infobox script-repo | |||
|type = script | |||
|filename = aaindex.py | |||
|author = [[User:Speleo3|Thomas Holder]] | |||
|license = BSD | |||
}} | |||
{{Infobox psico | |||
|module = psico.aaindex | |||
}} | |||
== Introduction == | |||
[[File:AAindexExample.png|200px|thumb|right|Hydrophobicity coloring with KYTJ820101]] | |||
AAindex is a database of numerical indices representing various physicochemical and biochemical properties of amino acids and pairs of amino acids. See http://www.genome.jp/aaindex/ | AAindex is a database of numerical indices representing various physicochemical and biochemical properties of amino acids and pairs of amino acids. See http://www.genome.jp/aaindex/ | ||
This script is a python parser for the AAindex flat files which | This script is a python parser for the AAindex flat files which will be downloaded from ftp://ftp.genome.jp/pub/db/community/aaindex/ | ||
The script provides two PyMOL commands (but can also be used without PyMOL). | The script provides two PyMOL commands (but can also be used without PyMOL). | ||
Line 12: | Line 22: | ||
* pmf: Potential of Mean Force (aaindex3) | * pmf: Potential of Mean Force (aaindex3) | ||
= Python Example = | == Python Example == | ||
Consider the script is called aaindex.py, it is placed somewhere in your PYTHONPATH and the aaindex flatfiles are found in the current directory. | Consider the script is called aaindex.py, it is placed somewhere in your PYTHONPATH and the aaindex flatfiles are found in the current directory. | ||
Line 22: | Line 32: | ||
aaindex.grep('volume') | aaindex.grep('volume') | ||
x = aaindex.get('KRIW790103') | x = aaindex.get('KRIW790103') | ||
print x | print(x) | ||
print x.get('A') | print(x.get('A')) | ||
aaindex.init(index='2') | |||
aaindex.grep('blosum') | aaindex.grep('blosum') | ||
x = aaindex.get('HENS920102') | x = aaindex.get('HENS920102') | ||
print x.get('A', 'K') | print(x.get('A', 'K')) | ||
</source> | </source> | ||
= PyMOL Example = | == PyMOL Example == | ||
Solvent-accessible surface coloring by [https://www.genome.jp/dbget-bin/www_bget?aaindex:KYTJ820101 Hydropathy index (Kyte-Doolittle, 1982)] | |||
<source lang="python"> | <source lang="python"> | ||
run aaindex.py | |||
aaindex2b KYTJ820101 | aaindex2b KYTJ820101 | ||
spectrum b, | spectrum b, white yellow forest | ||
set surface_solvent | |||
show surface | show surface | ||
</source> | </source> | ||
= | == See Also == | ||
* Protscale from [http://www.rubor.de/pymol_extensions_de.html rTools] does a similar job in coloring by amino acid properties | |||
[[Category:Script_Library]] | |||
[[Category:Biochemical_Scripts]] | |||
[[Category:Structural_Biology_Scripts]] | |||
[[Category:Pymol-script-repo]] | |||
Latest revision as of 11:23, 22 March 2021
Type | Python Script |
---|---|
Download | aaindex.py |
Author(s) | Thomas Holder |
License | BSD |
This code has been put under version control in the project Pymol-script-repo |
Included in psico | |
Module | psico.aaindex |
---|
Introduction
AAindex is a database of numerical indices representing various physicochemical and biochemical properties of amino acids and pairs of amino acids. See http://www.genome.jp/aaindex/
This script is a python parser for the AAindex flat files which will be downloaded from ftp://ftp.genome.jp/pub/db/community/aaindex/
The script provides two PyMOL commands (but can also be used without PyMOL).
- aaindex2b: Loads numerical indices from aaindex1 as b-factors into your structure
- pmf: Potential of Mean Force (aaindex3)
Python Example
Consider the script is called aaindex.py, it is placed somewhere in your PYTHONPATH and the aaindex flatfiles are found in the current directory.
import aaindex
aaindex.init(path='.')
aaindex.grep('volume')
x = aaindex.get('KRIW790103')
print(x)
print(x.get('A'))
aaindex.init(index='2')
aaindex.grep('blosum')
x = aaindex.get('HENS920102')
print(x.get('A', 'K'))
PyMOL Example
Solvent-accessible surface coloring by Hydropathy index (Kyte-Doolittle, 1982)
run aaindex.py
aaindex2b KYTJ820101
spectrum b, white yellow forest
set surface_solvent
show surface
See Also
- Protscale from rTools does a similar job in coloring by amino acid properties