Skip to content

Commit d4af793

Browse files
author
Andreas Prlic
committed
improvements in text
1 parent 9e6023f commit d4af793

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

structure/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
The Protein Structure Modules of BioJava
22
=====================================================
33

4-
A tutorial for the protein structure modules of BioJava
4+
A tutorial for the protein structure modules of [BioJava](http://www.biojava.org)
55

66
## About
77
<table>

structure/firststeps.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ The simplest way to load a PDB file is by using the [StructureIO](http://www.bio
77

88
```java
99
public static void main(String[] args){
10-
1110
try {
1211
Structure structure = StructureIO.getStructure("4HHB");
1312
// and let's print out how many atoms are in this structure
@@ -55,7 +54,6 @@ If you have the *biojava-structure-gui* module installed, you can quickly visual
5554

5655
```java
5756
public static void main(String[] args){
58-
5957
try {
6058

6159
Structure struc = StructureIO.getStructure("4hhb");
@@ -99,10 +97,10 @@ By default many people work with the *asymmetric unit* of a protein. However for
9997
Structure structure = StructureIO.getBiologicalAssembly("1GAV");
10098
// and let's print out how many atoms are in this structure
10199
System.out.println(StructureTools.getNrAtoms(structure));
102-
} catch (Exception e){
100+
} catch (Exception e){
103101
e.printStackTrace();
104102
}
105-
}
103+
}
106104
```
107105

108106
This topic is important, so we dedicated a [whole chapter](bioassembly.md) to it.

0 commit comments

Comments
 (0)