Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
LCSB-BioCore
COBREXA.jl
Commits
02e0c7fa
Commit
02e0c7fa
authored
May 16, 2022
by
Miroslav Kratochvil
Browse files
fix documentation issues and warnings
parent
78eb5bd4
Pipeline
#56598
passed with stages
in 12 minutes and 55 seconds
Changes
4
Pipelines
1
Show whitespace changes
Inline
Side-by-side
docs/src/functions/types.md
View file @
02e0c7fa
...
...
@@ -12,3 +12,9 @@ Pages = map(file -> joinpath("base", "types", "abstract", file), readdir("../src
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"))
```
src/base/types/MetabolicModel.jl
View file @
02e0c7fa
...
...
@@ -31,7 +31,7 @@ end
Return a vector of metabolite identifiers in a model. The vector precisely
corresponds to the rows in [`stoichiometry`](@ref) matrix.
As with [`reaction`](@ref)s, some metabolites in models may be virtual,
As with [`reaction
s
`](@ref)s, some metabolites in models may be virtual,
representing purely technical equality constraints.
"""
function
metabolites
(
a
::
MetabolicModel
)
::
Vector
{
String
}
...
...
src/base/utils/enzymes.jl
View file @
02e0c7fa
...
...
@@ -34,9 +34,10 @@ gene_product_mass_group_dict(model::GeckoModel, opt_model) =
"""
gene_product_mass_group_dict(model::GeckoModel)
A pipe-able variant of [`mass_group_dict`](@ref).
A pipe-able variant of [`
gene_product_
mass_group_dict`](@ref).
"""
gene_product_mass_group_dict
(
model
::
GeckoModel
)
=
x
->
mass_group_dict
(
model
,
x
)
gene_product_mass_group_dict
(
model
::
GeckoModel
)
=
x
->
gene_product_mass_group_dict
(
model
,
x
)
"""
gene_product_mass(model::SMomentModel)
...
...
src/reconstruction/gapfill_minimum_reactions.jl
View file @
02e0c7fa
...
...
@@ -21,7 +21,7 @@ refining genome annotation." *Proceedings of the National Academy of Sciences*
The function returns a solved JuMP optimization model, with the boolean
reaction inclusion indicators in variable vector `y`. Use
[`mask`](@ref) or [`gapfilled_rids`](@ref) to collect the reaction
[`
gapfilled_
mask`](@ref) or [`gapfilled_rids`](@ref) to collect the reaction
information in Julia datatypes.
To reduce the uncertainty in the MILP solver (and likely reduce the
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment