You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/documentation.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -556,7 +556,6 @@ rundssp!(struc)
556
556
runstride!(struc)
557
557
```
558
558
The assignment process may fail if the structure is too large, since we use an intermediate PDB file where the atom serial cannot exceed 99999 and the chain ID must be a single character.
559
-
560
559
To get access to the secondary structure code of a residue or atom as a `Char`:
561
560
```julia
562
561
sscode(res)
@@ -567,7 +566,6 @@ Or for the whole structure:
567
566
sscode.(collectresidues(struc))
568
567
```
569
568
The secondary structure code of a residue can be changed using [`sscode!`](@ref).
570
-
571
569
[`rundssp`](@ref) and [`runstride`](@ref) can also be run directly on structure files:
572
570
```julia
573
571
rundssp("/path/to/pdb/file.pdb", "out.dssp") # Also works with mmCIF files
@@ -4073,7 +4071,7 @@ The relationship between different types in BioStructures is shown below:
4073
4071
The design is based on Biopython, and has the intention of representing the complexity of the data in the PDB without it getting in the way of users.
4074
4072
This hierarchical approach differs from some packages that represent structures as lists of either atoms or residues.
4075
4073
Note that it is possible to store non-biopolymer molecules in this representation, and there are many such examples in the PDB.
4076
-
In general chemical terms: `MolecularStructure` is analogous to ensemble, `Model` to conformation, `Chain` to molecule and `Residue` to monomeric unit when relevant.
4074
+
In general chemical terms: [`MolecularStructure`](@ref) is analogous to ensemble, [`Model`](@ref) to conformation, [`Chain`](@ref) to molecule and [`Residue`](@ref) to monomeric unit when relevant.
4077
4075
4078
4076
The aim of BioStructures is not so much to read in the rows of a structure file, but to unambiguously represent the molecules contained within the file.
4079
4077
This makes operations such as converting between file formats easier, at the cost of some complexity and occasional limits on the ability to read in files with format violations.
0 commit comments