Skip to content

Commit

Permalink
Merge pull request #12 from bwbioinfo/main
Browse files Browse the repository at this point in the history
ENVY-2 Testing examples.
  • Loading branch information
mvapontes authored May 3, 2024
2 parents c11bfff + e63bc5c commit 4825c5d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
/docs/build/
.snakemake
*.png
!benchmark_compare.png
!benchmark_compare.png
benchmarking/.Rhistory
1 change: 1 addition & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
KEGGAPI = "e8256861-d17c-4800-bf17-838497555b93"
3 changes: 3 additions & 0 deletions docs/src/man/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ DataFrame(

```@example
using KEGGAPI
using DataFrames
output = KEGGAPI.conv("ncbi-geneid", "eco");
DataFrame(
output.data,
Expand All @@ -37,6 +38,7 @@ DataFrame(

```@example
using KEGGAPI
using DataFrames
output = KEGGAPI.conv("ncbi-proteinid", "hsa:10458+ece:Z5100");
DataFrame(
output.data,
Expand All @@ -46,6 +48,7 @@ DataFrame(

```@example
using KEGGAPI
using DataFrames
output = KEGGAPI.conv("genes", "ncbi-geneid:948364");
DataFrame(
output.data,
Expand Down

0 comments on commit 4825c5d

Please sign in to comment.