-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revert the package name back to ISOKANN
- Loading branch information
Showing
44 changed files
with
248 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name = "Isokann" | ||
name = "ISOKANN" | ||
uuid = "512544ac-929d-4ba3-aa9d-55e9313a4b47" | ||
authors = ["Sikorski <[email protected]> and contributors"] | ||
version = "0.1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
Isokann = "512544ac-929d-4ba3-aa9d-55e9313a4b47" | ||
ISOKANN = "512544ac-929d-4ba3-aa9d-55e9313a4b47" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
using Documenter | ||
using InteractiveUtils: @time_imports | ||
@time @time_imports using Isokann | ||
@time @time_imports using ISOKANN | ||
|
||
makedocs( | ||
sitename="Isokann", | ||
sitename="ISOKANN", | ||
format=Documenter.HTML(), | ||
modules=[Isokann], | ||
modules=[ISOKANN], | ||
warnonly=true | ||
) | ||
|
||
# Documenter can also automatically deploy documentation to gh-pages. | ||
# See "Hosting Documentation" and deploydocs() in the Documenter manual | ||
# for more information. | ||
deploydocs( | ||
repo="github.com/axsk/Isokann.jl.git" | ||
repo="github.com/axsk/ISOKANN.jl.git" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
# Isokann.jl | ||
# ISOKANN.jl | ||
|
||
Documentation for Isokann.jl | ||
Documentation for ISOKANN.jl | ||
|
||
```@meta | ||
CurrentModule = Isokann | ||
CurrentModule = ISOKANN | ||
``` | ||
|
||
## Main entry points | ||
|
||
```@docs | ||
IsoRun | ||
Isokann.run! | ||
ISOKANN.run! | ||
MollyLangevin | ||
propagate | ||
``` | ||
|
||
## Public API | ||
|
||
```@autodocs | ||
Modules = [Isokann, Isokann.OpenMM] | ||
Modules = [ISOKANN, ISOKANN.OpenMM] | ||
Private = false | ||
``` | ||
|
||
## Internal API | ||
|
||
```@autodocs | ||
Modules = [Isokann, Isokann.OpenMM] | ||
Modules = [ISOKANN, ISOKANN.OpenMM] | ||
Public = false | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,28 +8,28 @@ curl -fsSL https://install.julialang.org | sh | |
|
||
After restarting your shell you should be able to start the Julia REPL via the command `julia`. | ||
|
||
In the REPL you can add `Isokann.jl` to your project by entering the package mode (type `]`) and typing | ||
In the REPL you can add `ISOKANN.jl` to your project by entering the package mode (type `]`) and typing | ||
|
||
```julia | ||
pkg> add https://github.com/axsk/Isokann.jl | ||
pkg> test Isokann | ||
pkg> add https://github.com/axsk/ISOKANN.jl | ||
pkg> test ISOKANN | ||
``` | ||
|
||
Note that this can take a while on the first run as Julia downloads and precompiles all dependencies. | ||
|
||
We plan on installing OpenMM automatically with Isokann. Right now, if you want to use openmm with Isokann you will need to make it available to PyCall.jl. | ||
We plan on installing OpenMM automatically with ISOKANN. Right now, if you want to use openmm with ISOKANN you will need to make it available to PyCall.jl. | ||
This should work automatically, when using the Conda.jl Conda environment (i.e. starting julia with the env `PYTHON=""` and running `pkg> build PyCall.`). See also the [PyCall docs](https://github.com/JuliaPy/PyCall.jl?tab=readme-ov-file#specifying-the-python-version). | ||
|
||
## Development | ||
|
||
If you want to make changes to Isokann you should clone it into a directory | ||
If you want to make changes to ISOKANN you should clone it into a directory | ||
|
||
`git clone [email protected]:axsk/Isokann.jl.git` | ||
`git clone [email protected]:axsk/ISOKANN.jl.git` | ||
|
||
Then start Julia in that directory, activate it with `]activate .`, | ||
instantiate the dependencies with `]instantiate`. | ||
|
||
You should then be able to run the tests with `]test` | ||
or start `using Isokann`. | ||
or start `using ISOKANN`. | ||
|
||
We strongly recommend `using Revise` before Isokann, so that your changes will automatically load in your current session. | ||
We strongly recommend `using Revise` before ISOKANN, so that your changes will automatically load in your current session. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[deps] | ||
Isokann = "512544ac-929d-4ba3-aa9d-55e9313a4b47" | ||
ISOKANN = "512544ac-929d-4ba3-aa9d-55e9313a4b47" | ||
MKL = "33e6dc65-8f57-5167-99aa-e5a354878fb2" | ||
Molly = "aa0f7f06-fcc0-5ec4-a7f3-a573f33f9c4c" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.