-
Notifications
You must be signed in to change notification settings - Fork 1
Examples #218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Examples #218
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,5 +1,7 @@ | ||
| include example/*.csv | ||
| include example/*.tsv | ||
| include example/*.xml | ||
| include example/*/*.csv | ||
| include example/*/*.tsv | ||
| include example/*/*.xml | ||
| include example/*/*.yaml | ||
| include example/*/*.yml | ||
| exclude .git_archival.txt | ||
| exclude .gitattributes |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,11 @@ | ||
| time obs_A obs_B | ||
| 0 10.1 0.1 | ||
| 2 8.0 2.1 | ||
| 4 6.8 3.4 | ||
| 6 5.6 4.6 | ||
| 8 4.4 5.4 | ||
| 10 3.8 6.4 | ||
| 12 3.1 7.2 | ||
| 15 2.3 7.9 | ||
| 18 1.6 8.2 | ||
| 20 1.3 8.5 |
This file contains hidden or 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 hidden or 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or 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,2 @@ | ||
| conditionId conditionName | ||
| cond_1 |
This file contains hidden or 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 @@ | ||
| observableId simulationConditionId time measurement | ||
| obs_A cond_1 0.0 10.1 | ||
| obs_A cond_1 2.0 8.0 | ||
| obs_A cond_1 4.0 6.8 | ||
| obs_A cond_1 6.0 5.6 | ||
| obs_A cond_1 8.0 4.4 | ||
| obs_A cond_1 10.0 3.8 | ||
| obs_A cond_1 12.0 3.1 | ||
| obs_A cond_1 15.0 2.3 | ||
| obs_A cond_1 18.0 1.6 | ||
| obs_A cond_1 20.0 1.3 | ||
| obs_B cond_1 0.0 0.1 | ||
| obs_B cond_1 2.0 2.1 | ||
| obs_B cond_1 4.0 3.4 | ||
| obs_B cond_1 6.0 4.6 | ||
| obs_B cond_1 8.0 5.4 | ||
| obs_B cond_1 10.0 6.4 | ||
| obs_B cond_1 12.0 7.2 | ||
| obs_B cond_1 15.0 7.9 | ||
| obs_B cond_1 18.0 8.2 | ||
| obs_B cond_1 20.0 8.5 |
This file contains hidden or 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,34 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <sbml xmlns="http://www.sbml.org/sbml/level3/version2/core" level="3" version="2"> | ||
| <model metaid="SimpleConversion" id="SimpleConversion"> | ||
| <listOfCompartments> | ||
| <compartment sboTerm="SBO:0000410" id="default_compartment" spatialDimensions="3" size="1" constant="true"/> | ||
| </listOfCompartments> | ||
| <listOfSpecies> | ||
| <species id="A" compartment="default_compartment" initialConcentration="10" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/> | ||
| <species id="B" compartment="default_compartment" initialConcentration="0" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/> | ||
| </listOfSpecies> | ||
| <listOfParameters> | ||
| <parameter id="k_conversion" value="0.1" constant="true"/> | ||
| </listOfParameters> | ||
| <listOfReactions> | ||
| <reaction id="conversion" reversible="true"> | ||
| <listOfReactants> | ||
| <speciesReference species="A" stoichiometry="1" constant="true"/> | ||
| </listOfReactants> | ||
| <listOfProducts> | ||
| <speciesReference species="B" stoichiometry="1" constant="true"/> | ||
| </listOfProducts> | ||
| <kineticLaw> | ||
| <math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
| <apply> | ||
| <times/> | ||
| <ci> k_conversion </ci> | ||
| <ci> A </ci> | ||
| </apply> | ||
| </math> | ||
| </kineticLaw> | ||
| </reaction> | ||
| </listOfReactions> | ||
| </model> | ||
| </sbml> |
This file contains hidden or 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,3 @@ | ||
| observableId observableFormula noiseFormula | ||
| obs_A A 0.5 | ||
| obs_B B 0.5 |
This file contains hidden or 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,2 @@ | ||
| parameterId parameterScale lowerBound upperBound nominalValue estimate | ||
| k_conversion log10 0.001 100.0 0.1 1 |
This file contains hidden or 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,11 @@ | ||
| parameter_file: parameters.tsv | ||
| format_version: 1 | ||
| problems: | ||
| - condition_files: | ||
| - conditions.tsv | ||
| measurement_files: | ||
| - measurements.tsv | ||
| sbml_files: | ||
| - model.xml | ||
| observable_files: | ||
| - observables.tsv |
This file contains hidden or 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,5 @@ | ||
| """Example PEtab dataset bundled with PEtab GUI. | ||
|
|
||
| This package contains an example PEtab problem that can be loaded | ||
| without an internet connection. | ||
| """ |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.