You can run the provided test suite to ensure that the package is functioning correctly. You need to open your julia REPL within the project's directory
julia --project=@.
In the Julia REPL, you need to enter the pkg mode and run the tests:
julia> # press ]
pkg> activate .
pkg> test
This will execute the test suite and display the results, indicating whether the package functions as expected.
To use the package in your Julia code, simply import it:
using InclusiveScans
For detailed documentation on available functions and examples, please refer to the package documentation or source code.
If you want to make contributions of any kind, please first that a look into our contributing guide directly on GitHub or the contributing page on the website