Skip to content

Commit 481b683

Browse files
committed
Change to wiki page
1 parent 16f4b23 commit 481b683

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

_wikis/BioJava:CookBook:PDB:bioassembly.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ For more information about the differences between the asymmetric unit
1010
and the biological assembly see [a tutorial at RCSB
1111
PDB](http://www.pdb.org/pdb/101/static101.do?p=education_discussion/Looking-at-Structures/bioassembly_tutorial.html)
1212

13+
An comparison of the asymmetric unit and the biological assembly of
14+
Streptavidin is shown in this screenshot: It compares the asymmetric
15+
unit of [PDB ID
16+
1STP](http://www.rcsb.org/pdb/explore/explore.do?structureId=1stp) (left
17+
side) with its biological assembly (right side).
18+
19+
![](Asym_biounit.png "Asym_biounit.png")
20+
21+
Here some example code how to load the biological assembly:
22+
1323
<java>
1424

1525
`           // good examples: 1stp 1gav 1hv4 1hho 7dfr 3fad  1qqp`
@@ -28,7 +38,9 @@ PDB](http://www.pdb.org/pdb/101/static101.do?p=education_discussion/Looking-at-S
2838
`           `
2939
`           // DNA 173D .. 2`
3040
`           `
31-
`           BioUnitDataProviderFactory.setBioUnitDataProvider(BioUnitDataProviderFactory.pdbProviderClassName);`
41+
`           // we load the bio assembly info out of the PDB files`
42+
`           BioUnitDataProviderFactory.setBioUnitDataProvider(BioUnitDataProviderFactory.pdbProviderClassName);`
43+
3244
`           //Structure bioAssembly = StructureIO.getBiologicalAssembly("4A1I",2);  `
3345
`           `
3446
`           Structure bioAssembly = StructureIO.getBiologicalAssembly("1ei7",1);`

_wikis/BioJava:CookBook:PDB:bioassembly.mediawiki

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ Since BioJava 3.0.5 the protein structure modules can parse the biological assem
33
For more information about the differences between the asymmetric unit and the biological assembly see
44
[http://www.pdb.org/pdb/101/static101.do?p=education_discussion/Looking-at-Structures/bioassembly_tutorial.html a tutorial at RCSB PDB]
55

6+
An comparison of the asymmetric unit and the biological assembly of Streptavidin is shown in this screenshot: It compares the asymmetric unit of [http://www.rcsb.org/pdb/explore/explore.do?structureId=1stp PDB ID 1STP] (left side) with its biological assembly (right side).
67

8+
[[Image:Asym_biounit.png]]
9+
10+
Here some example code how to load the biological assembly:
711

812
<java>
913
// good examples: 1stp 1gav 1hv4 1hho 7dfr 3fad 1qqp
@@ -22,7 +26,9 @@ For more information about the differences between the asymmetric unit and the b
2226

2327
// DNA 173D .. 2
2428

29+
// we load the bio assembly info out of the PDB files
2530
BioUnitDataProviderFactory.setBioUnitDataProvider(BioUnitDataProviderFactory.pdbProviderClassName);
31+
2632
//Structure bioAssembly = StructureIO.getBiologicalAssembly("4A1I",2);
2733

2834
Structure bioAssembly = StructureIO.getBiologicalAssembly("1ei7",1);

0 commit comments

Comments
 (0)