Skip to content

Commit

Permalink
ENVY-2 Testing examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
bwbioinfo committed May 4, 2024
1 parent b445e4d commit da740d1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
6 changes: 6 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ makedocs(;
),
pages=[
"Home" => "index.md",
"Manual" => Any[
"Guide" => "man/guide.md",
"man/functions.md",
"man/examples.md",
"man/workflow.md",
],
],
)

Expand Down
9 changes: 1 addition & 8 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,11 @@
CurrentModule = KEGGAPI
```

```@contents
Pages = [
"man/functions.md",
"man/examples.md",
]
```

# KEGGAPI

Documentation for [KEGGAPI](https://github.com/bwbioinfo/KEGGAPI.jl).

[KEGG](https://www.genome.jp/kegg/)
An API interface to [KEGG](https://www.genome.jp/kegg/)


```@index
Expand Down
6 changes: 3 additions & 3 deletions docs/src/man/examples.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Some Examples

## Basics
## KEGGAPI.conv

Examples analogous to [KEGG Conv](https://www.kegg.jp/kegg/rest/keggapi.html#conv)

Expand All @@ -21,15 +21,15 @@ output = KEGGAPI.conv("eco", "ncbi-geneid");
first(DataFrame(
output.data,
output.colnames
), 20)
), 5)
```

```@example examples
output = KEGGAPI.conv("ncbi-geneid", "eco");
first(DataFrame(
output.data,
output.colnames
), 20)
), 5)
```

```@example examples
Expand Down

0 comments on commit da740d1

Please sign in to comment.