Skip to content

Commit 6fe842f

Browse files
committed
extension import docs
1 parent 3ae898d commit 6fe842f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/src/api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ CurrentModule = BioStructures
66

77
Package extensions are used in order to reduce the number of dependencies:
88
- To use `LongAA`, call `using BioSequences`.
9-
- To use `pairalign`, [`superimpose!`](@ref), [`rmsd`](@ref)/[`displacements`](@ref) with the `superimpose` option or [`Transformation`](@ref) on structural elements, call `using BioSequences, BioAlignments`.
9+
- To use `pairalign`, [`superimpose!`](@ref), [`rmsd`](@ref)/[`displacements`](@ref) with the `superimpose` option or [`Transformation`](@ref) on structural elements, call `using BioAlignments`.
1010
- To use `DataFrame`, call `using DataFrames`.
11-
- To use `MetaGraph`, call `using Graphs, MetaGraphs`.
11+
- To use `MetaGraph`, call `using MetaGraphs`.
1212
- To use [`MMTFDict`](@ref) or [`writemmtf`](@ref), call `import MMTF`.
1313
- To use [`rundssp!`](@ref), [`rundssp`](@ref) or the `run_dssp` option with `read`/[`retrievepdb`](@ref), call `using DSSP_jll`.
1414
- To use [`runstride!`](@ref), [`runstride`](@ref) or the `run_stride` option with `read`/[`retrievepdb`](@ref), call `using STRIDE_jll`.

docs/src/documentation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ Various functions are provided to calculate spatial quantities for proteins:
424424
| [`superimpose!`](@ref) | Superimpose one element onto another |
425425
| [`rmsd`](@ref) | RMSD between two elements, with or without superimposition |
426426
| [`displacements`](@ref) | `Vector` of displacements between two elements, with or without superimposition |
427-
| `MetaGraph` | Construct a `MetaGraph` of contacting elements (call `using Graphs, MetaGraphs` first) |
427+
| `MetaGraph` | Construct a `MetaGraph` of contacting elements (call `using MetaGraphs` first) |
428428

429429
The [`omegaangle`](@ref), [`phiangle`](@ref) and [`psiangle`](@ref) functions can take either a pair of residues or a chain and a position.
430430
The [`omegaangle`](@ref) and [`phiangle`](@ref) functions measure the angle between the residue at the given index and the one before.
@@ -483,7 +483,7 @@ To carry out superimposition, BioStructures.jl carries out a sequence alignment
483483
For example:
484484

485485
```julia
486-
using BioSequences, BioAlignments
486+
using BioAlignments
487487

488488
# Change the coordinates of element 1 to superimpose it onto element 2
489489
# Do sequence alignment with standard residues and calculate the transformation with Cα atoms (the default)

0 commit comments

Comments
 (0)