Literature DB >> 20122279

Multiple structure alignment and consensus identification for proteins.

Ivaylo Ilinkin1, Jieping Ye, Ravi Janardan.   

Abstract

BACKGROUND: An algorithm is presented to compute a multiple structure alignment for a set of proteins and to generate a consensus (pseudo) protein which captures common substructures present in the given proteins. The algorithm represents each protein as a sequence of triples of coordinates of the alpha-carbon atoms along the backbone. It then computes iteratively a sequence of transformation matrices (i.e., translations and rotations) to align the proteins in space and generate the consensus. The algorithm is a heuristic in that it computes an approximation to the optimal alignment that minimizes the sum of the pairwise distances between the consensus and the transformed proteins.
RESULTS: Experimental results show that the algorithm converges quite rapidly and generates consensus structures that are visually similar to the input proteins. A comparison with other coordinate-based alignment algorithms (MAMMOTH and MATT) shows that the proposed algorithm is competitive in terms of speed and the sizes of the conserved regions discovered in an extensive benchmark dataset derived from the HOMSTRAD and SABmark databases. The algorithm has been implemented in C++ and can be downloaded from the project's web page. Alternatively, the algorithm can be used via a web server which makes it possible to align protein structures by uploading files from local disk or by downloading protein data from the RCSB Protein Data Bank.
CONCLUSIONS: An algorithm is presented to compute a multiple structure alignment for a set of proteins, together with their consensus structure. Experimental results show its effectiveness in terms of the quality of the alignment and computational cost.

Entities:  

Mesh:

Substances:

Year:  2010        PMID: 20122279      PMCID: PMC2829528          DOI: 10.1186/1471-2105-11-71

Source DB:  PubMed          Journal:  BMC Bioinformatics        ISSN: 1471-2105            Impact factor:   3.169


Background

This paper presents an algorithm to compute a multiple structure alignment for a set of proteins and to generate a consensus structure. The algorithm is called MAPSCI, which stands for Multiple Alignment of Protein Structures and Consensus Identification. MAPSCI addresses the problem of global structure alignment, which has also been considered by CE-MC [1], MAMMOTH [2], and MATT [3]. Specifically, MAPSCI computes an approximation to the multiple structure alignment that minimizes the so-called Sum-of-Consensus distance (SC-distance), i.e. the sum of the pairwise distances between the consensus structure and each protein in the set (see the Methods section for the precise definition of SC-distance). Our experiments show that MAPSCI converges quite rapidly and produces alignments that compare favorably with the alignments produced by MAMMOTH and MATT. The consensus structures generated by MAPSCI are visually quite similar to the input proteins. Although the consensus structures are not real proteins, they could be used, for instance, as templates to perform fast searches through protein structure databases, such as the Protein Data Dank [4], to identify structurally similar proteins. MAPSCI has similar structure to the algorithm of Ye and Janardan [5]. However, MAPSCI works directly on the coordinates of the Catoms and produces true alignments; by contrast, the algorithm in [5] requires that the backbone vectors be translated to the origin, hence information about the relative positions of the Catoms in ℝ3 is lost and as a result the algorithm does not generate true alignments. The Methods section presents the mathematical and algorithmic framework of MAPSCI and provides the complete details where the two algorithms differ significantly; when there is an overlap the reader is referred to publication [5].

Implementation

MAPSCI represents the input proteins and the consensus as sequences of triples of coordinates of the alpha-carbon (or C) atoms along the backbone. It then computes a correspondence between the coordinate triples of the Catoms in the different protein structures by choosing one of the proteins as the initial consensus and applying an algorithm that is analogous to the center-star method for multiple sequence alignment [6]. Next, MAPSCI derives a set of translation and rotation matrices that are optimal for the computed correspondence and uses these to align the structures in space via rigid motions and obtain the new consensus. The process is repeated until the change in SC-distance is less than a prescribed threshold. This iterative process is well-defined as it is shown in the Methods section that the SC-distance is non-increasing from one iteration to the next. The computation of the optimal translations and rotations and the new consensus is itself an iterative process that both uses the current consensus and generates simultaneously a new one. Table 1 summarizes the algorithm in pseudocode form. The various steps in the pseudocode are described in more detail in the Methods section. The algorithm has been implemented in C++ and can be used stand-alone or run remotely via a web-based interface. The source code of the implementation is available for download from the project's website (see the Availability section). The implementation is organized as a library of algorithms and simple data structures that can be integrated in other projects. Examples of using the library within a C++ program are given in the README file of the source code distribution. The iterative process described above employs pairwise structure alignment as an intermediate step and the parameters that control the execution of the multiple alignment algorithm are the parameters for the underlying pairwise alignment algorithm. The current implementation uses the pairwise alignment algorithm described in [7]; however, other algorithms for pairwise structure alignment can be used instead.
Table 1

Algorithm MAPSCI: Multiple Alignment of Protein Structures and Consensus Identification

1. Choose initial consensus structure from . i ← 0. SC0 ← ∞.
2. Do
3.    if i = 0 then compute pairwise structure alignment between and every Pj.
4.    else use standard dynamic programming to align with every Pj.
5.    i i + 1.
6.    Compute correspondence from the above alignments (either pairwise or dynamic programming) using center-star-like method.
7.    Compute optimal translation matrix and optimal rotation matrix iteratively (Theorems 2 and 3). Transform Pj by and for every j to obtain multiple structure alignment ℳi. SCi SC(ℳi).
8.    Post-process ℳi by removing all columns consisting of only gaps.
9.    Compute new consensus structure from ℳi by Theorem 1.
10. Until .//η is a user-specified threshold (currently set at 0.0001)
Algorithm MAPSCI: Multiple Alignment of Protein Structures and Consensus Identification

Results

Web Server

MAPSCI has been incorporated into a web server for remote access over the Internet (see Figure 1). This tool allows for protein structures to be uploaded from files on the local disk or retrieved from the Protein Data Bank (PDB) [4] by specifying their PDB ids. The results from the alignment are annotated in the standard NBRF/PIR format, which can be previewed online via the Jalview applet [8]. Integrated with the server is the molecular viewer applet Chemis 3D [9], which allows for visualization of the aligned protein structures.
Figure 1

Web server screenshots. Screenshots from the web server: main page (top left), results page (bottom left), structure view (top right), sequence view (bottom right).

Web server screenshots. Screenshots from the web server: main page (top left), results page (bottom left), structure view (top right), sequence view (bottom right). The web server offers a simple interface that allows for remote access from within other software. Table 2 gives an example of using the programming language Python to retrieve the transformed coordinates (in PDB format) for the multiple alignment of the structures from the HOMSTRAD CUB family. Additional examples and the complete set of options for remote access can be found at the server web page (see the Availability section).
Table 2

Remote access to the server

import urllib2
url = "http://www.geom-comp.umn.edu/mapsci/align.cgi?wsget=pdb&rcsb=1sfp+1spp:A+1spp:B"
server = urllib2.urlopen(url)
output = file("alignment.zip", 'wb')
output.write(server.read())
output.close()
server.close()

An example of using the programming language Python to retrieve the transformed coordinates (in PDB format) for the multiple alignment of the structures from the HOMSTRAD CUB family. Additional examples and the complete set of options for remote access can be found at the server web page (see the Availability section).

Remote access to the server An example of using the programming language Python to retrieve the transformed coordinates (in PDB format) for the multiple alignment of the structures from the HOMSTRAD CUB family. Additional examples and the complete set of options for remote access can be found at the server web page (see the Availability section).

Comparison

As discussed earlier, there are many algorithms for multiple structure alignment. In general, it is difficult to make comparisons among them, since they operate under different sets of assumptions and problem formulations. We compare MAPSCI to two recent algorithms -- MAMMOTH [2] and MATT [3] -- which also work with coordinate triples, but employ a different objective function. Our experiments show that MAPSCI is competitive in terms of the sizes of the so-called conserved regions and runs significantly faster than the other two algorithms, hence can potentially scale to much larger datasets. The comparison is based on two benchmark datasets. The first dataset is compiled from the HOMSTRAD database [10], which is a curated database of structure-based alignments for homologous protein families and is considered the "gold" standard. The benchmark dataset consists of the 232 HOMSTRAD families that have at least 4 structures. The second dataset consists of the superfamily set in the SABmark database [11] (version 1.65). It contains 425 families with low to intermediate sequence similarity. The metrics considered in the comparison are the strict core (or just core) and the core RMSD. This follows the experimental setup in [2] where strict core is defined as "the set of positions with 100% conservation, and within 4.0 Å of each other in the final structural alignment in 3D". A similar metric is discussed in [12] and [13]. The results are summarized in Figures 2 and 3, which show the pairwise comparisons (MAPSCI, MAMMOTH), (MAPSCI, MATT) in terms of the core size (expressed in percent of the length of the shortest protein) and the core RMSD. Table 3 provides a comparison of the average core size and average core RMSD for the three methods on the benchmark datasets.
Figure 2

HOMSTRAD dataset comparison. Comparison based on the strict core metric (expressed in percent of the size of the shortest protein) and the strict core RMSD on the HOMSTRAD dataset.

Figure 3

SABmark dataset comparison. Comparison based on the strict core metric (expressed in percent of the size of the shortest protein) and the strict core RMSD on the SABmark dataset.

Table 3

Benchmark datasets performance

HOMSTRADSABmark
Average Core (%)Average Core RMSDAverage Core (%)Average Core RMSD
MAPSCI70.990.83(n = 232)48.891.00(n = 385)
MAMMOTH66.740.83(n = 231)44.550.99(n = 394)
MATT63.790.85(n = 229)47.880.99(n = 420)

Statistics for the performance of the three methods on the benchmark datasets. The subscripts in the Average Core RMSD columns indicate how many values were used in computing the statistics, since the algorithms failed to compute a core for some of the data sets. For the Average Core (%) columns all reported values were used and therefore n = 232 and n = 425 for the HOMSTRAD and SABmark datasets, respectively.

Benchmark datasets performance Statistics for the performance of the three methods on the benchmark datasets. The subscripts in the Average Core RMSD columns indicate how many values were used in computing the statistics, since the algorithms failed to compute a core for some of the data sets. For the Average Core (%) columns all reported values were used and therefore n = 232 and n = 425 for the HOMSTRAD and SABmark datasets, respectively. HOMSTRAD dataset comparison. Comparison based on the strict core metric (expressed in percent of the size of the shortest protein) and the strict core RMSD on the HOMSTRAD dataset. SABmark dataset comparison. Comparison based on the strict core metric (expressed in percent of the size of the shortest protein) and the strict core RMSD on the SABmark dataset. In general, it is difficult to compare two algorithms based on these two metrics (larger cores tend to have larger RMSD). However, on the HOMSTRAD dataset MAPSCI outperformed MAMMOTH in 45% of the test cases and MATT in 59% of the test cases by computing alignments with both larger cores and smaller core RMSD. (MAMMOTH and MATT were better than MAPSCI on both metrics combined in 6% and 5% of the test cases, respectively). MAPSCI computed cores for all 232 test cases, while MAMMOTH failed to compute a core for one family (bowman), and MATT failed to compute a core for three families (asp, lipocalin, and tln). On the SABmark dataset MAPSCI computed larger cores with better RMSD in 39% of the test cases when compared with MAMMOTH and in 37% of the test cases against against MATT. (MAMMOTH and MATT were better than MAPSCI on the two metrics combined in 15% and 26% of the test cases, respectively.) MATT was the most robust of the three algorithms and failed to compute a core in only five test cases; MAPSCI failed on 40 families and MAMMOTH failed on 31 families. MAPSCI took only 151 seconds to align the 425 families in the SABmark dataset and 85 seconds to align the families in the HOMSTRAD dataset. MAMMOTH took 1100 seconds on the SABmark dataset and 649 seconds on the HOMSTRAD dataset. By contrast, MATT took several hours to process the two datasets. Figure 4 shows the actual time taken by MAPSCI for all families in the benchmark dataset in terms of the total number of residues per family. The algorithm converges very quickly and can potentially scale to large datasets. The machine used for all experiments reported in the paper runs Ubuntu Linux 8.04 and has 4 GB of RAM with Intel®Core™2 Quad CPU Q9550 @ 2.83 GHz. MAMMOTH and MATT were run with their default parameter settings.
Figure 4

Execution time. The actual execution time of MAPSCI for all families in the benchmark datasets plotted in terms of the total number of residues per family.

Execution time. The actual execution time of MAPSCI for all families in the benchmark datasets plotted in terms of the total number of residues per family.

Methods

In this section, we provide the mathematical and algorithmic framework underlying MAPSCI. As mentioned earlier MAPSCI shares common elements with the algorithm in [5], and therefore, we follow the same general outline. However, we only present the full details when there are significant differences and refer the reader to [5] when there is an overlap.

Multiple Structure Alignment: Problem Formulation

Let {P1, P2, ⋯, P} be the given set of K proteins and let lbe the number of Catoms along the backbone of protein P. We represent Pas a sequence of coordinate triples , 1 ≤ j ≤ l, that represent the coordinates of the jth Catom of Palong the backbone. (As is customary [14,15], we consider only the backbone, not the amino acid residues themselves.) Let P0 = , ⋯, denote the consensus structure, of length l0. A correspondence of the K proteins in and the consensus structure P0 can be represented as a matrix H = ()0 ≤ , for some L ≥ max0 ≤ {l}, where is either a coordinate triple belonging to the ith protein or a gap. Distances between coordinate triples are based on the squared distance between them in ℝ3. The distance between a coordinate triple and a gap is called a gap penalty, and is denoted by ρ. The results reported in this paper use 16.0 for the value of the gap penalty. Let G= (H- T)R= (H- e × t)R, for i >0, where R∈ ℝ3 × 3 is some rotation matrix, T= e × is the translation matrix, e ∈ ℝis a vector with 1 in each entry, and ∈ ℝ1 × 3 is a translation vector. (The transformation of a gap remains a gap.) Note that P0 remains unchanged, i.e. G0 = H0. Under the multiple structure alignment we define the distance between the consensus structure P0 and protein Pas , where d(·, ·) denotes the following distance function: The distance between P0 and Pcan be represented compactly as , where ||·||denotes the Frobenius norm [16], with the additional convention that the squared difference between a coordinate triple and a gap is ρ2. The total distance of the K proteins to the consensus structure, called the Sum-of-Consensus distance, or SC-distance, is then defined as Intuitively, the SC-distance measures how well the consensus structure represents the given set of K proteins. A similar distance function is used in [17], where each protein is represented as a set of vectors in ℝ4. We can now define the multiple structure alignment problem as follows:

Multiple Structure Alignment Problem

Given a set {P1, P2, ⋯, P} of protein structures, compute a transformation (i.e., rotation and translation) for each protein, and generate a consensus structure P0, such that the resulting multiple structure alignment has minimum SC-distance as defined in Equation (1). In the next section, we present a heuristic for this problem. Our algorithm approximates the global minimum of the SC-distance by iterative refinement of an initial multiple structure alignment and converges to a local minimum.

Step I: Choice of the initial consensus structure

We consider four choices for initial consensus structure: (i) median protein, i.e. the protein of median length; (ii) center protein, i.e. the protein that minimizes the sum of the pairwise distances to all the other proteins; (iii) the minmax protein, i.e. the protein with the smallest maximum pairwise distance; and (iv) maxcore protein, i.e. the protein that generates the largest initial core. (The first three choices for initial consensus are considered in [5].) The experimental results in Figure 5 indicate that MAPSCI is quite robust in terms of the choice of initial consensus. However, the data suggests that the median protein occasionally leads to alignments with very low core size, and therefore is the least reliable choice. The other three choices seem to work well in practice, although they are more expensive computationally. The results reported in the Comparison section use the maxcore protein as the initial consensus.
Figure 5

Consensus choice comparison. Comparison between the sizes of the aligned cores for different choices of initial consensus protein.

Consensus choice comparison. Comparison between the sizes of the aligned cores for different choices of initial consensus protein.

Step II: Compute an initial correspondence

After we determine the consensus structure P0 in Step I, the K - 1 pairwise structure alignments between P0 and P≠ P0, for i = 1, ⋯, K, are computed using the algorithm in [7]. (Other pairwise structure alignment algorithms could also be used instead.) The K - 1 pairwise structure are combined in Line 6 of the algorithm (Table 1) using the center-star-like method described in [5].

Step III: Compute optimal rotation and translation matrices and consensus structure

Given a correspondence H = () the objective is to find the rotation and translation matrices Rand T, for j = 1, ⋯, K, and the consensus structure , such that the sum of the pairwise alignment distances between and each (transformed) Pis minimum; i.e. we wish to minimize Direct minimization of S over , and the T's and R's seems difficult. Instead, we propose an iterative procedure for minimizing S. Within each iteration, the minimization of S is carried out in two stages that are interleaved: (1) computation of the optimal for given R's and T's, and (2) computation of the optimal R's and T's for a given .

Computation of the optimal consensus structure

First, we show how to compute the consensus structure, given the rotation and translation matrices R's and T's, as stated in the following theorem: Theorem 1. Assume that the correspondence is represented as a matrix H = () and = (J1, ⋯, J)is the optimal consensus structure. For each column j, let Ibe the set of indices of proteins with a non-gap in the jth column and Ibe the set of indices of proteins with a gap in the jth column. Then , in the jth position of the optimal consensus structure equals either the coordinate triple , or a gap. Proof. For each j, we consider two distinct cases for J: either it is a coordinate triple, x, or a gap. If Jis a gap, then the sum of the distances between and each protein Palong the jth column is |I|ρ2, where ρ is the gap penalty. If Jis a coordinate triple, x, then the sum of the distances between and each protein Palong the jth column is , which is minimized, for . Therefore, if , then the optimal choice for is the coordinate triple x; otherwise, the optimal choice for is a gap.

Computation of the optimal translation matrix

In this section, we show how to compute the optimal translation matrix T, for each i, for a given consensus structure . From Eq. (2), it is clear that the optimal Tand T, for i ≠ j are independent of each other. Hence, in the following, we focus on the computation of T, for a specific i. The translation matrix Tcan be decomposed as T= e × t, where t∈ R1 × 3 is the translation vector. As mentioned earlier, the transformation of a gap remains a gap. Hence the computation of the translation and rotation matrices is independent of the mismatches (i.e., where at least one of the two elements being compared is a gap). We can thus simplify the computation by removing all mismatches in the alignment between the consensus structure and the ith protein P. Let A ∈ ℝand B ∈ ℝconsist of the coordinate triples from the consensus structure and the ith protein, respectively, after removing the mismatches. (Here n is the number of matches between the consensus structure and the ith protein, i.e., comparison of two non-gaps). Without loss of generality, assume eA = [0, 0, 0], i.e., the coordinate triples in the consensus protein are centered at the origin. The optimal translation vector is the one that matches the centroids of the coordinate triple vectors from A and B as stated in the following theorem: Theorem 2. Let A and B be defined as above. Assume that eA = [0, 0, 0]. Then for any rotation matrix R, the optimal translation vector tfor minimizing is given by . More details can be found in [18].

Computation of the optimal rotation matrix

Next, consider the rotation matrix R. We can assume that the coordinate triple vectors from both A and B are centered at the origin. It follows that Hence the minimum of Sis obtained when trace (ABR) is maximized. Let the Singular Value Decomposition (SVD) [16] of AB be UΣV, where U and V are orthogonal and Σ is diagonal. Theorem 3. The optimal rotation matrix Rthat minimizes S= ||A - BR||2 is given by R= UWV, where W = diag(1, 1, 1), if det(UV) = 1, and W = diag(1, 1, -1), if det(UV) = -1. More details can be found in [18].

Convergence of the algorithm

In this section, we show that MAPSCI converges, by showing that the SC-distance is non-increasing from one iteration to the next. Recall that from Eq. (1), Line 4 in MAPSCI decreases the distance between the consensus structure and each of the K proteins, since the dynamic programming produces an alignment with minimum cost. By the property of the center-star-like method, Line 6 leaves unchanged the distance between the consensus structure and each of the K proteins. By Theorems 2 and 3, the transformations computed in Line 7 do not increase the distance between the consensus structure and the jth protein, for each j. It is clear that Line 8 does not change the pairwise distance, since the cost for aligning two gaps is zero. Finally, by Theorem 1, Line 9 does not increase the sum of the pairwise distances from the consensus structure to the other proteins. Hence, the SC-distance is non-increasing, and the algorithm converges.

Complexity analysis

Let n be the maximum length of the K proteins. Then the overall running time of the algorithm is O(K2n2). (If we choose the initial consensus structure as the protein of median length, the running time is O(Kn2 + K2n).) The run time analysis is similar to that of the algorithm in [5].

Conclusions

We have presented an algorithm, called MAPSCI, to compute a multiple structure alignment for a set of proteins, together with their consensus structure. The algorithm represents the input proteins and the consensus as sequences of coordinate triples and computes an approximation to the optimal multiple structure alignment that minimizes the sum of the pairwise distances between the consensus and each input protein. Experimental results on a benchmark datasets derived from the HOMSTRAD and SABmark databases show that the algorithm compares favorably with existing algorithms for multiple structure alignment (MAMMOTH and MATT).

Availability and requirements

• Project name: MAPSCI • Project home page: • Operating system(s): Platform-independent • Programming language: C++ • License: Free BSD

Authors' contributions

JY contributed to the design of the algorithm and experiments, and drafting of the manuscript. II contributed to the experiments and the implementation of the algorithm. RJ contributed to the refinement of the algorithm and drafting of the manuscript. All authors read and approved the final manuscript.
  13 in total

1.  A new algorithm for the alignment of multiple protein structures using Monte Carlo optimization.

Authors:  C Guda; E D Scheeff; P E Bourne; I N Shindyalov
Journal:  Pac Symp Biocomput       Date:  2001

2.  Comparison of performance in successive CASP experiments.

Authors:  C Venclovas; A Zemla; K Fidelis; J Moult
Journal:  Proteins       Date:  2001

3.  SABmark--a benchmark for sequence alignment that covers the entire known fold space.

Authors:  Ivo Van Walle; Ignace Lasters; Lode Wyns
Journal:  Bioinformatics       Date:  2004-08-27       Impact factor: 6.937

4.  Pairwise protein structure alignment based on an orientation-independent backbone representation.

Authors:  Jieping Ye; Ravi Janardan; Songtao Liu
Journal:  J Bioinform Comput Biol       Date:  2004-12       Impact factor: 1.122

5.  Approximate multiple protein structure alignment using the sum-of-pairs distance.

Authors:  Jieping Ye; Ravi Janardan
Journal:  J Comput Biol       Date:  2004       Impact factor: 1.479

6.  Alignment of multiple protein structures based on sequence and structure features.

Authors:  M S Madhusudhan; Benjamin M Webb; Marc A Marti-Renom; Narayanan Eswar; Andrej Sali
Journal:  Protein Eng Des Sel       Date:  2009-07-08       Impact factor: 1.650

7.  Protein structure comparison by alignment of distance matrices.

Authors:  L Holm; C Sander
Journal:  J Mol Biol       Date:  1993-09-05       Impact factor: 5.469

8.  A new progressive-iterative algorithm for multiple structure alignment.

Authors:  Dmitry Lupyan; Alejandra Leo-Macias; Angel R Ortiz
Journal:  Bioinformatics       Date:  2005-06-07       Impact factor: 6.937

9.  Jalview Version 2--a multiple sequence alignment editor and analysis workbench.

Authors:  Andrew M Waterhouse; James B Procter; David M A Martin; Michèle Clamp; Geoffrey J Barton
Journal:  Bioinformatics       Date:  2009-01-16       Impact factor: 6.937

10.  Matt: local flexibility aids protein multiple structure alignment.

Authors:  Matthew Menke; Bonnie Berger; Lenore Cowen
Journal:  PLoS Comput Biol       Date:  2008-01       Impact factor: 4.475

View more
  10 in total

1.  Alignment of distantly related protein structures: algorithm, bound and implications to homology modeling.

Authors:  Sheng Wang; Jian Peng; Jinbo Xu
Journal:  Bioinformatics       Date:  2011-07-26       Impact factor: 6.937

2.  Crystal structure of HINT from Helicobacter pylori.

Authors:  K F Tarique; S Devi; S A Abdul Rehman; S Gourinath
Journal:  Acta Crystallogr F Struct Biol Commun       Date:  2016-01-01       Impact factor: 1.056

Review 3.  Structure and function of α-glucan debranching enzymes.

Authors:  Marie Sofie Møller; Anette Henriksen; Birte Svensson
Journal:  Cell Mol Life Sci       Date:  2016-05-02       Impact factor: 9.261

4.  mTM-align: an algorithm for fast and accurate multiple protein structure alignment.

Authors:  Runze Dong; Zhenling Peng; Yang Zhang; Jianyi Yang
Journal:  Bioinformatics       Date:  2018-05-15       Impact factor: 6.937

5.  The PE-PPE domain in mycobacterium reveals a serine α/β hydrolase fold and function: an in-silico analysis.

Authors:  Rafiya Sultana; Karunakar Tanneeru; Lalitha Guruprasad
Journal:  PLoS One       Date:  2011-02-10       Impact factor: 3.240

6.  DAMA-a method for computing multiple alignments of protein structures using local structure descriptors.

Authors:  Paweł Daniluk; Tymoteusz Oleniecki; Bogdan Lesyng
Journal:  Bioinformatics       Date:  2021-08-16       Impact factor: 6.937

7.  Identifying RNA-binding residues based on evolutionary conserved structural and energetic features.

Authors:  Yao Chi Chen; Karen Sargsyan; Jon D Wright; Yi-Shuian Huang; Carmay Lim
Journal:  Nucleic Acids Res       Date:  2013-12-16       Impact factor: 16.971

8.  Plasmodium falciparum infection induces expression of a mosquito salivary protein (Agaphelin) that targets neutrophil function and inhibits thrombosis without impairing hemostasis.

Authors:  Michael Waisberg; Alvaro Molina-Cruz; Daniella M Mizurini; Nidhi Gera; Beatriz C Sousa; Dongying Ma; Ana C Leal; Tainá Gomes; Michalis Kotsyfakis; José M C Ribeiro; Jan Lukszo; Karine Reiter; Stephen F Porcella; Carlo J Oliveira; Robson Q Monteiro; Carolina Barillas-Mury; Susan K Pierce; Ivo M B Francischetti
Journal:  PLoS Pathog       Date:  2014-09-11       Impact factor: 6.823

9.  In silico analysis of heme oxygenase structural homologues identifies group-specific conservations.

Authors:  Joseph Irvin; Alexander J Ropelewski; John Perozich
Journal:  FEBS Open Bio       Date:  2017-09-04       Impact factor: 2.693

10.  In silico analysis of class I adenylate-forming enzymes reveals family and group-specific conservations.

Authors:  Louis Clark; Danielle Leatherby; Elizabeth Krilich; Alexander J Ropelewski; John Perozich
Journal:  PLoS One       Date:  2018-09-04       Impact factor: 3.240

  10 in total

北京卡尤迪生物科技股份有限公司 © 2022-2023.