-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
6,716 additions
and
28,929 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,2 +1,46 @@ | ||
# SynthEvo | ||
A tool for finding CRN topologies under user-defined constraint | ||
|
||
A tool for finding CRN topologies under user-defined constraint | ||
|
||
### Installation | ||
|
||
To install the package, run the following command in `julia`: | ||
|
||
```julia | ||
using Pkg; Pkg.add("SynthEvo") | ||
``` | ||
|
||
finally import the package in your code with: | ||
|
||
```julia | ||
using SynthEvo | ||
``` | ||
|
||
### Examples | ||
|
||
check the `examples` directory for some to see some commented use-cases of the package. | ||
|
||
#### Use from source | ||
|
||
To use this package directly from source, clone the repository and in `julia` run the following commands: | ||
|
||
```julia | ||
using Pkg; activate("/path/to/SynthEvo") | ||
``` | ||
|
||
Where `/path/to/SynthEvo` is the path to the SynthEvo directory inside the cloned repository. | ||
|
||
In this way, you can use the package for the current session. | ||
|
||
### Changelog | ||
|
||
v0.0.0: Initial release with basic functionality | ||
|
||
v0.1.0: refactoring and optimization | ||
|
||
* Updataed code to imporve the performance of the symbolic computation | ||
* Added notebooks with examples | ||
* Added function documentation | ||
|
||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name = "SynthEvo" | ||
uuid = "6cd3eeb9-5a42-42a0-b734-1cbe889bcc08" | ||
authors = ["[email protected] <[email protected]>"] | ||
version = "0.9.9" | ||
|
||
[deps] | ||
Catalyst = "479239e8-5488-4da2-87a7-35f2df7eef83" | ||
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa" | ||
DiffEqParamEstim = "1130ab10-4a5a-5621-a13d-e4788d82bd4c" | ||
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa" | ||
GraphViz = "f526b714-d49f-11e8-06ff-31ed36ee7ee0" | ||
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819" | ||
LatinHypercubeSampling = "a5e1c1ea-c99a-51d3-a14d-a9a37257b02d" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78" | ||
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" | ||
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd" | ||
SimpleDiffEq = "05bca326-078c-5bf0-a5bf-ce7c7982d7fd" | ||
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" | ||
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" | ||
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" |
File renamed without changes.
File renamed without changes.
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.
eb1202c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register(branch="remastered")
eb1202c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register branch=remastered
eb1202c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Error while trying to register: "File (Julia)Project.toml not found"
eb1202c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register branch=remastered subdir=SynthEvo
eb1202c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/104804
Tip: Release Notes
Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.
To add them here just re-invoke and the PR will be updated.
Tagging
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:
Also, note the warning: This looks like a new registration that registers version 0.9.9.
Ideally, you should register an initial release with 0.0.1, 0.1.0 or 1.0.0 version numbers
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.