Skip to content

Commit 4f3b37b

Browse files
committed
Update contact-map.md
1 parent 817a56d commit 4f3b37b

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

structure/contact-map.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
# Finding contacts within a protein chain: contact maps
1+
# Finding contacts between atoms in a protein: contact maps
22

3-
Contacts are a useful tool to analyse protein structures. It simplifies the 3-Dimensional view of the structures into a 2-Dimensional set of contacts between its atoms or its residues. The representation of the contacts in a matrix is known as the contact map. Many protein structure analysis and prediction efforts are done by using contacts, see for instance
3+
Contacts are a useful tool to analyse protein structures. They simplify the 3-Dimensional view of the structures into a 2-Dimensional set of contacts between its atoms or its residues. The representation of the contacts in a matrix is known as the contact map. Many protein structure analysis and prediction efforts are done by using contacts. For instance they can be useful for:
4+
5+
+ development of structural alignment algorithms [Holm 1993][] [Caprara 2004][]
6+
+ automatic domain identification [Alexandrov 2003][] [Emmert-Streib 2007][]
7+
+ structural modelling by extraction of contact-based empirical potentials [Benkert 2008][]
8+
+ structure prediction via contact prediction from sequence information [Jones 2012][]
49

510
## Getting the contact map of a protein chain
611

@@ -36,7 +41,8 @@ One can also find the contacting atoms between two protein chains. For instance
3641

3742
Structure structure = StructureIO.getStructure("1SMT");
3843

39-
AtomContactSet contacts = StructureTools.getAtomsInContact(structure.getChain(0), structure.getChain(1), 5, false);
44+
AtomContactSet contacts =
45+
StructureTools.getAtomsInContact(structure.getChain(0), structure.getChain(1), 5, false);
4046

4147
System.out.println("Total number of atom contacts: "+contacts.size());
4248

@@ -45,6 +51,13 @@ One can also find the contacting atoms between two protein chains. For instance
4551
```
4652

4753

48-
See [DemoContacts](https://github.com/biojava/biojava/blob/master/biojava3-structure/src/main/java/demo/DemoContacts.java) for a fully working demo of the example above.
54+
See [DemoContacts](https://github.com/biojava/biojava/blob/master/biojava3-structure/src/main/java/demo/DemoContacts.java) for a fully working demo of the examples above.
55+
4956

5057

58+
[Holm 1993]: http://www.biomedcentral.com/pubmed/8377180
59+
[Caprara 2004]: http://www.biomedcentral.com/pubmed/15072687
60+
[Alexandrov 2003]: http://www.biomedcentral.com/pubmed/12584135
61+
[Emmert-Streib 2007]: http://www.biomedcentral.com/pubmed/17608939
62+
[Benkert 2008]: http://www.biomedcentral.com/pubmed/17932912
63+
[Jones 2012]: http://www.ncbi.nlm.nih.gov/pubmed/22101153

0 commit comments

Comments
 (0)