|
include "db.php";
$conn = gen_connect() or die();
$query = "SET SESSION datestyle To 'SQL, MDY';";
gen_query($conn, $query);
$query = "select release_version, release_date from releases where current_release='t'";
$result = gen_query($conn, $query);
$row = gen_get_row($result,0);
$current_release = $row->release_version;
echo "Current release: $row->release_version ";
echo "Release date: $row->release_date ";
$query = "select count(disprot_id) as count from proteins where proteins.status='Verified' or proteins.status='Completed' or proteins.status='In Progress'";
$result = gen_query($conn, $query);
$row = gen_get_row($result,0);
$numProteins = $row->count;
$query = "select count(region_id) as count from regions, proteins where regions.disprot_id=proteins.disprot_id and regions.region_type like 'Disordered%' and (proteins.status='Verified' or proteins.status='Completed' or proteins.status='In Progress')";
$result = gen_query($conn, $query);
$row = gen_get_row($result,0);
$numRegions = $row->count;
echo "Number of proteins: $numProteins ";
echo "Number of disordered regions: $numRegions ";
echo "Release notes
";
$query = "select distinct protein_name, disprot_id from proteins, releases where proteins.release_version = releases.release_version and releases.current_release = 't'";
$result = gen_query($conn, $query);
$numRows = gen_row_count($result);
if ($numRows >0 ) {
echo "Latest additions:";
}
}
?>
|
|
|
Download DisProt in FASTA or XML format.
|
|
Links to predictors.
|
|
Read about how disorder is characterized.
|
|
Download three different flavors of disorder or a set of PDB chains with missing residues.
|
|
Protein disorder FAQ.
|
|
Those behind the scenes.
|
|
Database of Protein Disorder
The Database of Protein Disorder (DisProt) is a curated database that
provides information about proteins that lack fixed 3D structure in
their putatively native states, either in their entirety or in part.
DisProt is a collaborative effort between Center
for Computational Biology and Bioinformatics at Indiana University School of Medicine and Center for Information Science and Technology at Temple University.
|
|
|
|
In citing DisProt please refer to: Vucetic S, Obradovic Z,
Vacic V, Radivojac P, Peng K, Iakoucheva LM, Cortese MS, Lawson JD,
Brown CJ, Sikes JG, Newton CD, and Dunker AK. 2005. "DisProt:
A Database of Protein Disorder." Bioinformatics 21:137-140.
|
|
|
|