Skip to content

Commit 17af8a0

Browse files
committed
Update README to add package from Julia registry
1 parent 980edd7 commit 17af8a0

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,15 @@ Julia wrapper for the [Fast Graphlet Transform](https://github.com/fcdimitr/fglt
88

99
## Installation
1010

11-
Since this package is not in the Julia registry, you need to use the URL of this repository to add it to your Julia environment.
12-
To add the package, open a Julia prompt, enter the `pkg` mode by pressing `]`, and type:
11+
To add the package to your Julia environment, open a Julia prompt, enter the `pkg` mode by pressing `]`, and type:
1312

1413
```julia
15-
add https://github.com/nsailor/FastGraphletTransform.jl
14+
add FastGraphletTransform
1615
```
1716

1817
## Usage
1918

20-
To perform a fast graphlet transform, call the `fglt` function with the adjacency matrix for the graph, for instance:
19+
To perform a fast graphlet transform, call the `fglt` function with the graph's adjacency matrix, for instance:
2120

2221
```julia
2322
julia> using FastGraphletTransform
@@ -33,7 +32,7 @@ julia> A = sparse([0 1 0 0 1 0; 1 0 1 1 1 0; 0 1 0 1 1 0; 0 1 1 0 1 1; 1 1 1 1 0
3332
1 1 1 1
3433
1
3534

36-
julia> (f, fn) = fglt(A)
35+
julia> (f, fn) = fglt(A);
3736
Total elapsed time: 0.0000 sec
3837

3938
julia> f # Raw frequencies (n x 16)

0 commit comments

Comments
 (0)