Comparison¶
MATLAB functions in RAVEN/comparison of the RAVEN toolbox. Help text is collected from the source of the tracked branch.
Functions¶
| Function | Summary |
|---|---|
compareMultipleModels |
Compare two or more condition-specific models. |
compareRxnsGenesMetsComps |
Compare overlap of genes, reactions, metabolites and compartments. |
Reference¶
compareMultipleModels¶
Compare two or more condition-specific models.
Compares two or more condition-specific models generated from the same base model using high-dimensional comparisons in the reaction-space.
Input arguments:
| Name | Type | Description | Default |
|---|---|---|---|
models
|
cell
|
cell array of two or more models. |
required |
Name-value arguments:
| Name | Type | Description | Default |
|---|---|---|---|
printResults
|
logical
|
true if the results should be printed on the screen (default false). |
|
plotResults
|
logical
|
true if the results should be plotted (default false). |
|
groupVector
|
double or cell
|
numeric vector or cell array for grouping similar models, i.e. by tissue (default all models ungrouped). |
|
funcCompare
|
logical
|
should a functional comparison be run (default false). |
|
taskFile
|
char
|
string containing the name of the task file to use for the functional comparison (should be an .xls or .xlsx file, required for functional comparison). |
Output arguments:
| Name | Type | Description |
|---|---|---|
compStruct
|
struct
|
structure that contains the comparison results, with fields:
|
Examples:
compStruct = compareMultipleModels(models, printResults, ...
plotResults, groupVector, funcCompare, taskFile);
compareRxnsGenesMetsComps¶
Compare overlap of genes, reactions, metabolites and compartments.
Compares two or more models with respect to overlap in terms of genes, reactions, metabolites and compartments.
Input arguments:
| Name | Type | Description | Default |
|---|---|---|---|
models
|
cell
|
cell array of two or more models. |
required |
Name-value arguments:
| Name | Type | Description | Default |
|---|---|---|---|
printResults
|
logical
|
true if the results should be printed on the screen (default false). |
Output arguments:
| Name | Type | Description |
|---|---|---|
compStruct
|
struct
|
structure that contains the comparison, with fields:
|
Examples:
compStruct = compareRxnsGenesMetsComps(models, printResults);