Skip to content

Commit

Permalink
More doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobnissen committed Aug 9, 2022
1 parent 1117882 commit e0d9b64
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 2 deletions.
7 changes: 7 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[deps]
BioSequences = "7e6ae17a-c86d-528c-b3b9-7f778a29fe59"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

[compat]
BioSequences = "3"
Documenter = "0.27"
10 changes: 9 additions & 1 deletion docs/src/fai.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,12 @@ julia> extract(reader, "seq1", 3:5)
DocTestSetup = nothing
```

FASTX.jl does not yet support indexing FASTQ files.
FASTX.jl does not yet support indexing FASTQ files.

### Reference:
```@docs
faidx
seekrecord
extract
Index
```
1 change: 1 addition & 0 deletions docs/src/fasta.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,5 @@ Else, it will wrap lines to the given maximal width.
```@docs
FASTA.Reader
FASTA.Writer
validate_fasta
```
3 changes: 3 additions & 0 deletions docs/src/fastq.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ QualityEncoding
### Reference:
```@docs
quality
quality_scores
quality_header!
```

## `FASTQReader` and `FASTQWriter`
Expand All @@ -124,4 +126,5 @@ If set to a `Bool` value, the `Writer` will override the `Records`, without chan
```@docs
FASTQ.Reader
FASTQ.Writer
validate_fastq
```
5 changes: 5 additions & 0 deletions docs/src/records.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,8 @@ UGCCCA
julia> sequence(String, record)
"UGCCCA"
```

### Reference:
```@docs
FASTA.Record!
```
2 changes: 1 addition & 1 deletion src/fasta/index.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Note that the FAI specs are stricter than FASTX.jl's definition of FASTA,
such that some valid FASTA records may not be indexable.
See the specs at: http://www.htslib.org/doc/faidx.html
See also: [FASTA.Reader](@ref)
See also: [`FASTA.Reader`](@ref)
# Examples
```jldoctest
Expand Down

0 comments on commit e0d9b64

Please sign in to comment.