
A gallery of screenshots can be viewed here. The structural interactions for ligand J07 in PDB structure 2P33 can be downloaded as PyMOL scene at the bottom of the page.
The Credo database table dumps and database schema are available for download here. The schema.sql file is part of the mercurial repository.
The Credo database was created with MySQL 5.1.31 using the MyISAM engine,i.e. foreign keys are not used in the database and the SQLAlchemy mappers. Hence, it should be straightforward to use the table dumps to recreate Credo with a different RDBMS such as PostgreSQL or Oracle.
First, you will have to download the schema and the database tables dumps. The database can be recreated from the schema by
51&q=CREATE&lr=lang_en">CREATE 51&q=DATABASE&lr=lang_en">DATABASE CREDO; 51&q=USE&lr=lang_en">USE CREDO; SOURCE 51&q=SCHEMA&lr=lang_en">schema.sql;
The data can be inserted by either from the mysql command line
51&q=USE&lr=lang_en">USE CREDO; 51&q=LOAD&lr=lang_en">LOAD 51&q=DATA&lr=lang_en">DATA 51&q=LOCAL&lr=lang_en">LOCAL 51&q=INFILE&lr=lang_en">INFILE <file> 51&q=INTO&lr=lang_en">INTO 51&q=TABLE&lr=lang_en">TABLE <table> 51&q=FIELDS&lr=lang_en">FIELDS 51&q=TERMINATED%20BY&lr=lang_en">TERMINATED BY '@\t' 51&q=LINES&lr=lang_en">LINES 51&q=TERMINATED%20BY&lr=lang_en">TERMINATED BY '#\n';
or by using mysqlimport:
mysqlimport -u [USER] -h [HOST] -p CREDO [FILE]
The Mercurial repository resides at http://bitbucket.org/aschreyer/credoscript.
Check out (clone) the current development trunk (Edge Credo API) with:
$ hg clone http://bitbucket.org/aschreyer/credoscript/ credoscript
The Credo API can be imported as follows (assuming the Credo.py file is in your $PYTHONPATH):
from credoscript import *
The Credo Database and Application Programming Interface by Adrian Schreyer is licensed under a Creative Commons Attribution-Share Alike 2.0 UK: England & Wales License.

| Attachment | Size |
|---|---|
| 2P33-SIFt.pse | 875.99 KB |