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 033bb01 commit 8f0229d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ makedocs(;
edit_link="main",
assets=String[],
),
example_size_threshold=0,
kwargs=[example_size_threshold=0],
pages=[
"Home" => "index.md",
],
Expand Down
8 changes: 4 additions & 4 deletions docs/src/man/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ using DataFrames

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

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

```@example examples
Expand Down

0 comments on commit 8f0229d

Please sign in to comment.