Scroll to navigation

DEBIAN/SCORE_CONSERVATION(1) User Commands DEBIAN/SCORE_CONSERVATION(1)

NAME

score_conservation - score protein sequence conservation

SYNOPSIS

score_conservation [options] ALIGNFILE

DESCRIPTION

Score protein sequence conservation in ALIGNFILE. ALIGNFILE must be in FASTA, CLUSTAL or Stockholm format.

The following conservation scoring methods are implemented:
* sum of pairs
* weighted sum of pairs
* Shannon entropy
* Shannon entropy with property groupings (Mirny and Shakhnovich 1995,
Valdar and Thornton 2001)
* relative entropy with property groupings (Williamson 1995)
* von Neumann entropy (Caffrey et al 2004)
* relative entropy (Samudrala and Wang 2006)
* Jensen-Shannon divergence (Capra and Singh 2007)

A window-based extension that incorporates the estimated conservation of sequentially adjacent residues into the score for each column is also given. This window approach can be applied to any of the conservation scoring methods.

With default parameters score_conservation(1) computes the conservation scores for the alignment using the Jensen-Shannon divergence and a window -w of 3.

The sequence-specific output can be used as the conservation input for concavity(1).

Conservation is highly predictive in identifying catalytic sites and residues near bound ligands.

REFERENCES

OPTIONS

Reference sequence. Print scores in reference to the named sequence (ignoring gaps). Default prints the entire column.
Lambda for window heuristic linear combination. Default=.5.

Equation:

"score = (1 - lambda) * average_score_over_window_around_middle + lambda * score_of_middle"

Background distribution file, e.g. distributions/swissprot.distribution. Default=built-in BLOSUM62.
Gap cutoff. Do not score columns that contain more than gap cutoff fraction gaps. Default=.3.
Print help.
Use sequence weighting. Default=true.
Similarity matrix file, e.g. matrix/blosum62.bla or .qij. Default=matrix/blosum62.bla.

Some methods, e.g. js_divergence, do not use this.

Normalize scores. Print the z-score (over the alignment) of each column raw score. Default=false.
Output file. Default: standard output stream.
Use gap penalty. Lower the score of columns that contain gaps, proportionally to the sum weight of the gapped sequences. Default=true.
Conservation estimation method, one of shannon_entropy property_entropy property_relative_entropy vn_entropy relative_entropy js_divergence sum_of_pairs. Default=js_divergence.
Window size. Number of residues on either side included in the window. Default=3.

EXAMPLES

Note: you may have to copy and uncompress the example data files before running the following examples.

 score_conservation /usr/share/doc/conservation-code/examples/2plc__hssp-filtered.aln
    
 score_conservation -s js_divergence -w 3 -d \
  /usr/share/conservation-code/distributions/swissprot.distribution \
  /usr/share/doc/conservation-code/examples/2plc__hssp-filtered.aln
    

FILES

/usr/share/conservation-code/distributions
/usr/share/conservation-code/matrix

SEE ALSO

http://compbio.cs.princeton.edu/conservation/>
http://bioinformatics.oxfordjournals.org/cgi/content/full/23/15/1875>
concavity(1)
2019-12-15 20110309.0