The public repository for the Java library used by the oxidation state analyzer.
- Install gradle.
- Clone the repo.
- From the command line, run:
gradle clean build javadoc
- The library will be in build/lib.
- The dependencies will be in build/dependencies.
- The javadoc will be in build/docs.
- Build the library as described above.
- Install jPype.
- Follow the example in the examples/python/analyze_oxidation_states.ipynb notebook.
- Clone the repo and add it as a folder next to the existing java code.
- In your
build.gradle
file, add as the oxidation state API as a dependency:
dependencies {
implementation project(':oxidation-state-api-public')
}