Literature DB >> 25352981

PAGAL - Properties and corresponding graphics of alpha helical structures in proteins.

Sandeep Chakraborty1, Basuthkar Rao2, Abhaya Dandekar3.   

Abstract

Alpha helices (AH) are peptide fragments characterized by regular patterns of hydrogen bonding between the carbonyl oxygen and amino nitrogen of residues regularly spaced in sequence, resulting in spiral conformations. Their preponderance in protein structures underlines their importance. Interestingly, AHs are present in most anti-microbial peptides, although they might remain in random-coil conformations depending on the solvent dielectric. For example, the cecropin component of the chimeric anti-microbial protein designed previously by our group comprises of two AHs linked by a short stretch of random coil. These anti-microbial peptides are often amphipathic (quantified by a hydrophobic moment), aligning hydrophobic residues on one surface and charged residues on the others. In the current work, we reproduce previously described computational methods to compute the hydrophobic moment of AHs - and provide open access to the source code (PAGAL). We simultaneously generated input files for TikZ (a package for creating high resolution graphics programmatically) to obtain the Edmundson wheel and showing the direction and magnitude of the hydrophobic moment, and Pymol scripts to generate color coded protein surfaces. Additionally, we have observed an empirical structural property of AHs: the distance between the Cα atoms of the ith and (i+4)th residue is equal to the distance between the carbonyl oxygens of the ith and (i+4)th residue. We validated this using 100 non-homologous high resolution structures from the PISCES database. The source code and manual is available at http://github.com/sanchak/pagal and on http://dx.doi.org/10.5281/zenodo.11136.

Entities:  

Year:  2014        PMID: 25352981      PMCID: PMC4207245          DOI: 10.12688/f1000research.4952.2

Source DB:  PubMed          Journal:  F1000Res        ISSN: 2046-1402


Introduction

A protein structure is formed by well ordered local segments defined by the hydrogen-bonding pattern of the peptide backbone (secondary structures), and conformations that lack any regular arrangement (random coils). The most prevalent secondary structures are alpha helices (AH) and β sheets, while other conformations like π-helix occur rarely in natural proteins [1]. AHs are right-handed spiral conformations which have a hydrogen bond between the carbonyl oxygen (C=O) of every residue and the alpha-amino nitrogen (N-H) of the fourth residue away from the N-terminal. DSSP is the official program used to assign secondary structure to a protein when the atomic coordinates are known [2, 3]. Several methods can also predict an AH from the sequence [4, 5]. Essentially, any structure prediction tool can be used to predict an AH from the sequence by first predicting the structure and then applying DSSP to the predicted structure [6– 8]. The niche of AHs in protein structures is widespread. AHs are the functionally significant element in several motifs (DNA binding motifs) [9], and the key components of any protein that permeates biological membranes [10]. AHs are also almost always present in anti-microbial peptides (AMP) [11], although they may remain in random-coil conformations depending on the solvent dielectric [12, 13]. For example, it has been recently shown that certain peptides are in random coil conformations, and achieve helical structures only by interacting with the anionic membrane model that has the same head group as the major anionic phosphatidylglycerols in bacterial membranes [14]. For example, cecropin B, a component of a chimeric protein with anti-microbial properties that provides grapevines with enhanced resistance against the Gram-negative pathogen Xylella fastidiosa [15], is composed of two AHs connected by a small random coil [16]. Other AMPs comprise only a single AH [17, 18]. These peptides are characterized by a strong hydrophobic surface (defined by a hydrophobic moment [19]), and often have charged residues, either anionic or cationic, aligned on the opposite surface [19]. Previously, Jones et al. have implemented computational methods to extract the characteristics of AHs [20]. In the current work, we first observe and propose an empirical structural property of AHs: that the distance between the C α atoms of the ith and (i+4)th residue is equal to the distance between the carbonyl oxygens of the ith and (i+4)th residue. This hypothesis is validated on a set of high resolution non-homologous 100 proteins (775 AHs) taken from the PISCES database [21]. Next, we implement the methodologies described previously [20] to compute the hydrophobic moments for AHs using the hydrophobicity scale used in [22]: PAGAL - Properties and corresponding graphics of alpha helical structures in proteins. The current work is based on peptides that have solved structures which satisfy the AH property. In reality, due to conformational changes depending on solvent properties, the hydrophobic moment is not unique. There are other programs available online to do similar processing ( http://rzlab.ucr.edu/scripts/wheel/ for example). We also specify a metric associated with each helix - the ratio of the positive to the negative residues (RPNR) in the AH - which helps identify AHs with a particular kind of charge distribution on their surface. The results are outputted as the input to a graphical program TikZ (for the Edmundson wheel [23] and hydrophobic moment), and Pymol scripts (for showing the peptide surface). The source code and manual available at http://github.com/sanchak/pagal and on http://dx.doi.org/10.5281/zenodo.11136.

Materials and methods

We first outline the method to obtain the coordinates of each residue in the Edmundson wheel, and the computation of the hydrophobic moment ( Algorithm 1). The input to the function is an alpha helix - either as a PDB structure or as a fasta sequence. The center of the wheel is taken as (0,0) and the radius as 5. The first residue has coordinates (0,5). Each subsequent residue is advanced by 100 degrees on the circle, as 3.6 turns of the helix makes one full circle. To compute the hydrophobic moment, we obtain the vector by connecting the center to the coordinate of the residue and giving it a magnitude obtained from the hydrophobic scale (in our case, this scale is obtained from [20]). These vectors are then added to obtain the final hydrophobic moment. The results are outputted as the input to a graphical program TiKz (for the Edmundson wheel [23] and hydrophobic moment), and Pymol scripts (for showing the peptide surface). The protein structures have been rendered using Pymol, while the figures showing the Edmundson wheel has been obtained from TiKz. The source code is written in Perl, and made available at https://github.com/sanchak/pagal and permanently available on http://dx.doi.org/10.5281/zenodo.11136. Input: αH: α helix - either PDB or fasta sequence Input: TableHS: Hydrophobic scale Output: TikZIN: TikZ input file Output: PymolIN: Pymol input file begin Radius = 5 ; // Radius of Edmundson wheel initangle = 90 ; // first residue is at 12 o’clock.. loopcnt = 0 ; finalvechydro = undefined ; centre = (0,0); foreach Residue do /* Find X,Y coordinate on the Edmundson wheel */ angle = initangle - loopcnt * 100 ; x = Radius * cos( val) ; y = Radius * sin( val) ; thispoint = (x,y); /* Get Hydrophobic moment */ vector = MakeVectorFrom2Points(centre,thispoint) ; hydrophobicvalue = GetHydrophobicScaleForResidue( TableHS, Residue ) ; tmpvec = normal(vector) * hydrophobicvalue ; finalvechydro = finalvechydro is not defined? tmpvec : finalvechydro + tmpvec; loopcnt++ ; end WriteTikzScript(); WritePymolScript(); end

Results and discussion

Validation of empirical property

We have observed an empirical structural property that applies to the residues of any AH: the distance between the C α atoms of the ith and (i+4)th residue (denoted by D( Cα +4)) is (almost) equal to the distance between the carbonyl oxygens of the ith and (i+4)th residue (D( O +4)). We validate our hypothesis on a set of 100 high resolution, non-homologous proteins (which have 775 AHs) taken from the PISCES database ( http://dunbrack.fccc.edu/PISCES.php) [21]. Figure 1 shows the plot of the difference between D( Cα +4) and D( O +4) for AHs specified in the PDB files (in red, mean=0.16 Å, standard deviation (sd)= 0.34 Å), and for all residues separated by four residues but not part of a helix (in blue, mean=0.71 Å, sd=0.75 Å).
Figure 1.

Plot of the difference between D( Cα +4) and D( O +4).

All 775 AHs specified in the PDB files from the 100 non-homologous high resolution structures taken from the PISCES database are in red (mean=0.16 Å, standard deviation (sd)=0.34 α Å). All residues separated by four residues but not part of a helix are in blue (mean=0.71 Å, sd=0.75 Å). All AHs specified in the PDB files after correction are in green (mean=0.095 Å and sd=0.14 Å).

Plot of the difference between D( Cα +4) and D( O +4).

All 775 AHs specified in the PDB files from the 100 non-homologous high resolution structures taken from the PISCES database are in red (mean=0.16 Å, standard deviation (sd)=0.34 α Å). All residues separated by four residues but not part of a helix are in blue (mean=0.71 Å, sd=0.75 Å). All AHs specified in the PDB files after correction are in green (mean=0.095 Å and sd=0.14 Å). These results are conservative, since there are residues that are annotated as part of a helix in the PDB file which seems to be incorrect. For example, in PBD 1JET, the ninth helix spans from residues 169 to 178 - “HELIX 9 9 LYS A 169 LYS A 178 1 10”. However, the Pymol helix identification program shows part of this stretch as a random coil (Lys178 in Figure 2-a). Moreover, the distance between the carbonyl oxygen (C=O) and the alpha-amino nitrogen (N-H) of the fourth residue away from the N-terminal is 7.6 Å, which makes it improbable for them to have a hydrogen bond, the primary requisite to be part of an AH. The D( Cα +4) and D( O +4) for this pair is 9 Å and 8 Å, respectively: a difference of 1 Å. Even in cases where the distance between C=O and N-H is within the 3.6 Å typically required for a hydrogen bond, (PDBid: 1ELU, 12th helix), the distances D( Cα +4) and D( O +4) for the residue pair His292-Gly296 is 6.9 Å and 3.4 Å, respectively: a difference of 3.4 Å ( Figure 2b). In short, the helix annotation in the PDB database is often incorrect. Removing these problematic residues reduces the mean distance to 0.095 Å and the sd to 0.14 Å ( Figure 1).
Figure 2.

Incorrect annotations of helices in the PDB file.

( a) Lys178 in PDBid:1JET appears to be part of a random coil, but is annotated in the PDB file as a helix. ( b) Gly296 in PDBid:1ELU is mis-annotated similarly.

Incorrect annotations of helices in the PDB file.

( a) Lys178 in PDBid:1JET appears to be part of a random coil, but is annotated in the PDB file as a helix. ( b) Gly296 in PDBid:1ELU is mis-annotated similarly. There is variation in the D( Cα +4) even when considering the same pair of residues. For example, taking all pairs of Arg and Lys in the 775 AHs analyzed ( Table 1), we see that the values can vary from 6.5 Å in PDBid:1H16 (helix26, pair Arg583-Lys587) to 5.8 Å in PDBid:1EYH (helix5, pair Arg72-Lys76). However, as hypothesized, D( O +4) is the same as D( Cα +4).
Table 1.

Occurrences of Arg-Lys pairs in 775 alpha helices found in 100 non-homologous high resolution protein structures taken from the PISCES database:

RPair: Residue pair in the alpha helix with a hydrogen bond between carbonyl oxygen (C=O) and the alpha-amino nitrogen (N-H), Dhbond: Distance between carbonyl oxygen (C=O) and the alpha-amino nitrogen (N-H) of RPair, D( Cα +4): Distance between the C α atoms of RPair, D( O +4): Distance between the carbonyl oxygen of RPair, δ: absolute(D( Cα +4) - D( O +4)).

HelixResidue PairDhbondD( i/Cα i +4)D( O i/O i +4) δ
1E58.helix12Arg188-Lys1922.96.06.10.1
1H16.helix26Arg583-Lys5873.36.56.50.0
1ELK.helix4Arg52-Lys562.96.16.20.1
1EYH.helix5Arg72-Lys762.95.85.80.0
1F1E.helix4Arg89-Lys932.96.16.10.0
1GXM.helix9Arg481-Lys4852.75.96.00.1
1JET.helix14Arg290-Lys2943.06.36.20.1
1EYH.helix9Arg124-Lys1283.06.26.20.0
1GCI.helix7Arg247-Lys2513.16.46.30.1
1EB6.helix3Arg60-Lys643.16.46.40.0
1DK8.helix3Arg140-Lys1442.96.16.10.0
1GKP.helix5Arg192-Lys1962.96.16.10.0
1D5T.helix8Arg138-Lys1423.16.46.40.0

Occurrences of Arg-Lys pairs in 775 alpha helices found in 100 non-homologous high resolution protein structures taken from the PISCES database:

RPair: Residue pair in the alpha helix with a hydrogen bond between carbonyl oxygen (C=O) and the alpha-amino nitrogen (N-H), Dhbond: Distance between carbonyl oxygen (C=O) and the alpha-amino nitrogen (N-H) of RPair, D( Cα +4): Distance between the C α atoms of RPair, D( O +4): Distance between the carbonyl oxygen of RPair, δ: absolute(D( Cα +4) - D( O +4)).

Edmundson wheel and the hydrophobic moment

The Edmundson wheel [23] has been the standard way of visualizing AHs for a long time now, although there are other methods (Wenxiang diagram [24]) to represent AHs. The Edmundson wheel shows the alignment of residues as one looks through the helix, and gives an approximate idea of the various properties of the AH. For example, a color coding differentiation of the polar and non-polar residues gives an approximation of the hydrophobic propensity of the AH. A more mathematical representation of the hydrophobic propensity is to represent each residue with a value and a sign (direction). This results in a vector representation, called the hydrophobic moment [19]. We have chosen the hydrophobic scale from [20] ( Table 2), although any other hydrophobic scale could be also used. The color coding is as follows: all hydrophobic residues (positive values in Table 2) are colored red, while hydrophilic residues (negative values in Table 2) are colored in blue: dark blue for positively charged residues, medium blue for negatively charged residues and light blue for amides. We now show the PAGAL representation of a few AH peptides.
Table 2.

Hydrophobicity scale taken from [17].

MET 0.975ILE 0.913LEU 0.852VAL 0.811CYS 0.689ALA 0.607THR 0.525GLY 0.484SER 0.402HIS 0.333
PRO 0.239PHE 1.036TRP 0.668TYR 0.137GLN -0.558ASN -0.701GLU -1.396LYS -1.518ASP -1.600ARG -2.233
A synergistic combination of two critical immune functions, pathogen surface recognition and lysis, resulted in a chimeric protein with anti-microbial properties against the Gram-negative Xylella fastidiosa [15]. The lytic domain is cecropin B, which attacks conserved lipid moieties and creates pores in the X. fastidiosa outer membrane [16]. Cecropin B consists of two AHs, joined by a short stretch of random coil. Figure 3a and b shows the Edmundson wheel and hydrophobic moment of the two AHs. It can be seen that the N-Terminal AH has a large hydrophobic moment, as well as a specific positive charge distribution. The hydrophobicity of this amphipathic AH has significant bearing on the anti-microbial properties of the peptide [25]. This can also be seen in a Pymol rendering of the peptide surface ( Figure 4). The Pymol script for this rendering is automatically generated by PAGAL. On the other hand, the C-Terminal AH comprises mostly of hydrophobic residues. Cecropin-like peptides use the synergy of these two helices - the N-terminal attaches to charged ion on the membrane, and the hydrophobic C-terminal permeates the hydrophobic inter-membrane region (known as the ‘carpet’ model [26]).
Figure 3.

Visualizing the Edmundson wheel and hydrophobic moment of some alpha helices.

All hydrophobic residues are colored in red, while hydrophilic residues are colored in blue: dark blue for positively charged residues, medium blue for negatively charged residues and light blue for amides. ( a) N-Terminal helix of cecropin B. ( b) C-Terminal helix of cecropin B. ( c) KR-12 peptide fragment from cathelicidin LL-37. ( d) De novo designed peptide (SP1-1) with anti-microbial activity.

Figure 4.

Pymol rendering of peptides showing the hydrophobic and charged surfaces for the N-terminal helix of cecropin B.

All hydrophobic residues are colored in red, while hydrophilic residues are colored in blue.

Visualizing the Edmundson wheel and hydrophobic moment of some alpha helices.

All hydrophobic residues are colored in red, while hydrophilic residues are colored in blue: dark blue for positively charged residues, medium blue for negatively charged residues and light blue for amides. ( a) N-Terminal helix of cecropin B. ( b) C-Terminal helix of cecropin B. ( c) KR-12 peptide fragment from cathelicidin LL-37. ( d) De novo designed peptide (SP1-1) with anti-microbial activity.

Pymol rendering of peptides showing the hydrophobic and charged surfaces for the N-terminal helix of cecropin B.

All hydrophobic residues are colored in red, while hydrophilic residues are colored in blue. Cathelicidin LL-37 is a critical component of the innate human immune system that protects humans against infectious diseases by targeting anionic phosphatidylglycerols in the pathogenic bacterial membranes [27]. Recent work has demonstrated a 12-residue peptide (KR-12) corresponding to residues 18 to 29 of LL-37 is toxic to bacterial, but not human cells [17]. Figure 3c shows the Edmundson wheel and hydrophobic moment of KR-12. The demarcation of the polar and non-polar residues is quite evident. The predominance of positively charged residues in the polar side of the peptide is also clearly visible. The de novo design of small AMPs that inhibit plant pathogens was the focus of a recent work [18]. One of the most promising candidates was a small peptide (SP1-1 - RKKRLKLLKRL, Figure 3d), which was “highly active against a broad spectrum of bacteria, but showed low hemolytic activity” [18]. Although the hydrophobic moment of this peptide is much smaller than that of KR-12 ( Figure 3c), possibly due to the presence of Arg4 on the hydrophobic surface, the distribution of positively charged residues in this peptide is greater than for KR-12.

Ratio of the positive to the negative residues (RPNR)

Often, it is desirable to choose a large distribution of charged residues of a certain kind (anionic or cationic) on the hydrophilic surface. One possible method for quantifying this would be to compute a ‘charge moment’, similar to the computation of hydrophobic moments. However, such an evaluation would determine certain clearly distributions to be the same. For example, assume one semicircle of the wheel comprised only positive residues, and the other hydrophobic residues ( Figure 5a). This is a slightly modified version of KR-12 from cathelicidin LL-37. If one positive residue (R5) were moved from the hydrophilic side to the hydrophobic side (I7) and replaced with a negative residue (D7) ( Figure 5b), the ‘charge moment’ would remain the same, although the two conformations are clearly not the same. Note that the hydrophobic moment is also different, as expected. Therefore, the ‘charge moment’ is not an accurate metric. This is underlined by the fact that replacing a hydrophilic serine on the hydrophobic face with a hydrophobic residue (Ala or Val) enhanced the antimicrobial peptide activity in LL-23, a natural peptide derived from the N-terminal of LL-37 [28]. Thus, we resort to a simple metric to allow one to choose peptides with a large proportion of charged residue of a single kind: the ratio of the positive to the negative residues (RPNR). The two peptides mentioned above will have different RPNRs: 1 ( Figure 5a) and 0.85 ( Figure 5b). Also, the current method is unable to discriminate the possible effects of substituting similar amino acids (for example replacing an arginine by a lysine). These effects are complex and difficult to computationally model, for the ‘consequences of the substitution of arginines for lysines is also modulated by the nature of the peptide into which the substitution is made’ [14]. Such substitutions (applied to β-defensins also, and not AH peptides) also hold promise as future therapeutic drugs [29].
Figure 5.

The problem in evaluating a ‘charge moment’ similar to the way the hydrophobic moment is computed.

All hydrophobic residues are colored in red, while the hydrophilic residues are colored in blue: dark blue for positively charged residues, medium blue for negatively charged residues and light blue for amides. ( a) Edmundson wheel of a KR-12 like peptide showing the hydrophobic moment and the ‘charge moment’. ( b) Swapping one positive residue (R5) from the hydrophilic side with I7 and replacing it with a negative residue (D7), results in the same ‘charge moment’, although the characteristics of the helix has clearly changed.

The problem in evaluating a ‘charge moment’ similar to the way the hydrophobic moment is computed.

All hydrophobic residues are colored in red, while the hydrophilic residues are colored in blue: dark blue for positively charged residues, medium blue for negatively charged residues and light blue for amides. ( a) Edmundson wheel of a KR-12 like peptide showing the hydrophobic moment and the ‘charge moment’. ( b) Swapping one positive residue (R5) from the hydrophilic side with I7 and replacing it with a negative residue (D7), results in the same ‘charge moment’, although the characteristics of the helix has clearly changed.

Output formats

PAGAL generates a TikZ input file for drawing the Edmundson wheel and showing the hydrophobic moment (Supplementary File TikzInput.doc). TikZ is a package “for creating graphics programmatically” - http://www.texample.net/tikz/. PAGAL also generates a Pymol script to the peptide structure using the same color coding used in for the Edmundson wheel (Supplementary File PymolInput.doc).

Software availability

Latest source code

http://github.com/sanchak/pagal

Source code as at the time of publication

http://github.com/F1000Research/pagal/tree/v1.0

Archived source code as at the time of publication

http://dx.doi.org/10.5281/zenodo.11136 [30] I have read this submission. I believe that I have an appropriate level of expertise to confirm that it is of an acceptable scientific standard. I have read this submission. I believe that I have an appropriate level of expertise to confirm that it is of an acceptable scientific standard. The authors aimed at further define features for helices, which are key structural elements in polypeptides. Based on the traditional hydrophobic moment, they proposed the concept of charge moment. It is interesting but I am a little bit of doubtful how useful the charge moment will be. In particular, the authors found the “Swapping one positive residue (R5) from the hydrophilic side with I7 and replacing it with a negative residue (D7), results in the same ‘charge moment’” (Figure 5). In the case of helical antimicrobial peptides, such a swap may have a detrimental effect on peptide antimicrobial activity. For example, even a change of a hydrophilic residue serine on the hydrophobic face with a hydrophobic residue influenced peptide activity ( Wang G ). The authors may refine this idea and conceive the possible use of charge moment. Based on charge moment, is there any clue that interfacial charged residues of antimicrobial peptides play a larger role than non-interfacial ones in determining antimicrobial activity? Will it be possible to incorporate the observation that arginines are usually more important than lysines in determining peptide activity (see Mishra B )? I have read this submission. I believe that I have an appropriate level of expertise to confirm that it is of an acceptable scientific standard, however I have significant reservations, as outlined above. We would like to thank you for taking the time and reviewing our paper. Please find our response to your suggestions below. We have incorporated the changes in the new version. The authors aimed at further define features for helices, which are key structural elements in polypeptides. Based on the traditional hydrophobic moment, they proposed the concept of charge moment. It is interesting but I am a little bit of doubtful how useful the charge moment will be. In particular, the authors found the “Swapping one positive residue (R5) from the hydrophilic side with I7 and replacing it with a negative residue (D7), results in the same ‘charge moment’” (Figure 5). In the case of helical antimicrobial peptides, such a swap may have a detrimental effect on peptide antimicrobial activity. For example, even a change of a hydrophilic residue serine on the hydrophobic face with a hydrophobic residue influenced peptide activity (Wang G et al., 2012). The authors may refine this idea and conceive the possible use of charge moment. Based on charge moment, is there any clue that interfacial charged residues of antimicrobial peptides play a larger role than non-interfacial ones in determining antimicrobial activity? Will it be possible to incorporate the observation that arginines are usually more important than lysines in determining peptide activity (see Mishra B et al., 2013)? The relevant reference you have pointed out (Wang G et al., 2012) underlines the point are making - that the charge moment (analogous to the hydrophobic moment) is not a good metric. Thus, `we resort to a simple metric to allow one to choose peptides with a large proportion of charged residue of a single kind: the ratio of the positive to the negative residues (RPNR).'. I apologize that this point has been confusing, so I have explicitly clarified this aspect. Also, the reference helps to establish our point. Unfortunately, we would be unable to differentiate between lysines and arginines using the current methodology. However, this is a salient point that we need to discuss so that future work may address this. We hope to have addressed your concerns with these modifications. AHs are not invariably present in ALL antimicrobial peptides. The formation of AHs in antimicrobial peptides is dependent on solvent conditions. The statement to this effect should be edited appropriately. The proposed empirical structural property of AHs is OK as it is validated on a set of high resolution non-homologous proteins from a database. Extension of the analysis to antibacterial peptides such as cecropin and LL37 may not be valid. These peptides are unstructured in water and fold into amphipathic helical structure only in media of low dielectric constant. Also, the helical structures are not rigid as observed in protein crystal structures and show considerable conformational flexibility in solution. Hence, a unique value of hydrophobic moment will not be very meaningful.  Solvent effects need to be taken into account. This point (3) needs to be addressed and clarified. I have read this submission. I believe that I have an appropriate level of expertise to confirm that it is of an acceptable scientific standard, however I have significant reservations, as outlined above. We would like to thank you for taking the time and reviewing our paper, and for your helpful comments. We have modified our manuscript to reflect this changes, and hope that these are satisfactory.
  29 in total

Review 1.  Interaction of antimicrobial peptides with biological and model membranes: structural and charge requirements for activity.

Authors:  N Sitaram; R Nagaraj
Journal:  Biochim Biophys Acta       Date:  1999-12-15

2.  Computer programs to identify and classify amphipathic alpha helical domains.

Authors:  M K Jones; G M Anantharamaiah; J P Segrest
Journal:  J Lipid Res       Date:  1992-02       Impact factor: 5.922

3.  The SWISS-MODEL workspace: a web-based environment for protein structure homology modelling.

Authors:  Konstantin Arnold; Lorenza Bordoli; Jürgen Kopp; Torsten Schwede
Journal:  Bioinformatics       Date:  2005-11-13       Impact factor: 6.937

4.  Role of peptide hydrophobicity in the mechanism of action of alpha-helical antimicrobial peptides.

Authors:  Yuxin Chen; Michael T Guarnieri; Adriana I Vasil; Michael L Vasil; Colin T Mant; Robert S Hodges
Journal:  Antimicrob Agents Chemother       Date:  2006-12-11       Impact factor: 5.191

5.  Use of helical wheels to represent the structures of proteins and to identify segments with helical potential.

Authors:  M Schiffer; A B Edmundson
Journal:  Biophys J       Date:  1967-03       Impact factor: 4.033

6.  The leucine zipper: a hypothetical structure common to a new class of DNA binding proteins.

Authors:  W H Landschulz; P F Johnson; S L McKnight
Journal:  Science       Date:  1988-06-24       Impact factor: 47.728

7.  Binding and action of cecropin and cecropin analogues: antibacterial peptides from insects.

Authors:  H Steiner; D Andreu; R B Merrifield
Journal:  Biochim Biophys Acta       Date:  1988-04-07

8.  Dictionary of protein secondary structure: pattern recognition of hydrogen-bonded and geometrical features.

Authors:  W Kabsch; C Sander
Journal:  Biopolymers       Date:  1983-12       Impact factor: 2.505

9.  A series of PDB related databases for everyday needs.

Authors:  Robbie P Joosten; Tim A H te Beek; Elmar Krieger; Maarten L Hekkelman; Rob W W Hooft; Reinhard Schneider; Chris Sander; Gert Vriend
Journal:  Nucleic Acids Res       Date:  2010-11-11       Impact factor: 16.971

10.  I-TASSER server for protein 3D structure prediction.

Authors:  Yang Zhang
Journal:  BMC Bioinformatics       Date:  2008-01-23       Impact factor: 3.169

View more
  3 in total

1.  Characterizing alpha helical properties of Ebola viral proteins as potential targets for inhibition of alpha-helix mediated protein-protein interactions.

Authors:  Sandeep Chakraborty; Basuthkar J Rao; Bjarni Asgeirsson; Abhaya Dandekar
Journal:  F1000Res       Date:  2014-10-24

2.  The PDB database is a rich source of alpha-helical anti-microbial peptides to combat disease causing pathogens.

Authors:  Sandeep Chakraborty; My Phu; Tâmara Prado de Morais; Rafael Nascimento; Luiz Ricardo Goulart; Basuthkar J Rao; Bjarni Asgeirsson; Abhaya M Dandekar
Journal:  F1000Res       Date:  2014-12-05

3.  Computational analysis of perturbations in the post-fusion Dengue virus envelope protein highlights known epitopes and conserved residues in the Zika virus.

Authors:  Sandeep Chakraborty
Journal:  F1000Res       Date:  2016-06-03
  3 in total

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