-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs kinda build (but 10000 doccheck fails)
- Loading branch information
Showing
10 changed files
with
37 additions
and
136 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
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,47 +1,6 @@ | ||
# API reference | ||
|
||
## Helper types | ||
|
||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = ["src/types.jl"] | ||
``` | ||
|
||
## Model loading and saving | ||
|
||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = ["src/io.jl"] | ||
``` | ||
|
||
## Constraint system building | ||
|
||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = ["src/builders/core.jl"] | ||
``` | ||
|
||
### Genetic constraints | ||
|
||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = ["src/builders/genes.jl"] | ||
```@contents | ||
Pages = ["reference/types.md", "reference/io.md", "reference/builders.md", "reference/solver.md"] | ||
Depth = 2 | ||
``` | ||
|
||
### Objective function helpers | ||
|
||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = ["src/builders/objectives.jl"] | ||
``` | ||
|
||
## Solver interface | ||
|
||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = ["src/solver.jl"] | ||
``` | ||
|
||
## Analysis functions | ||
|
||
## Distributed analysis |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
|
||
## Constraint system building | ||
|
||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = ["src/builders/core.jl"] | ||
``` | ||
|
||
### Genetic constraints | ||
|
||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = ["src/builders/genes.jl"] | ||
``` | ||
|
||
### Objective function helpers | ||
|
||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = ["src/builders/objectives.jl"] | ||
``` |
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,15 +1,7 @@ | ||
# Input and output | ||
|
||
## File I/O and serialization | ||
# Model loading and saving | ||
|
||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = map(file -> joinpath("io", file), readdir("../src/io")) | ||
``` | ||
|
||
## Pretty printing | ||
|
||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = map(file -> joinpath("io", "show", file), readdir("../src/io/show")) | ||
Pages = ["src/io.jl"] | ||
``` |
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
|
||
# Solver interface | ||
|
||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = ["src/solver.jl"] | ||
``` |
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,20 +1,7 @@ | ||
# Types | ||
|
||
## Base types | ||
# Helper types | ||
|
||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = map(file -> joinpath("base", "types", "abstract", file), readdir("../src/base/types/abstract")) | ||
``` | ||
|
||
## Model types and contents | ||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = map(file -> joinpath("base", "types", file), readdir("../src/base/types")) | ||
``` | ||
|
||
## Model type wrappers | ||
```@autodocs | ||
Modules = [COBREXA] | ||
Pages = map(file -> joinpath("base", "types", "wrappers", file), readdir("../src/base/types/wrappers")) | ||
Pages = ["src/types.jl"] | ||
``` |
This file was deleted.
Oops, something went wrong.