Skip to content
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

Add PEtab 2.0 draft #554

Merged
merged 15 commits into from
Aug 8, 2024
Merged

Add PEtab 2.0 draft #554

merged 15 commits into from
Aug 8, 2024

Commits on Jul 3, 2024

  1. fix #525

    FFroehlich authored and dweindl committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    1eade37 View commit details
    Browse the repository at this point in the history
  2. fix #524

    FFroehlich authored and dweindl committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    011ea5e View commit details
    Browse the repository at this point in the history
  3. Update tutorial.rst

    FFroehlich authored and dweindl committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    992a278 View commit details
    Browse the repository at this point in the history
  4. Proposal for the introduction of extensions (#537)

    * extract all changes from previous
    
    * fixup
    
    * allow hyphens in extension names
    
    * fixup hyphens
    
    * only require one toolbox that implements extension
    
    * specify how to work with multiple PEtab problems
    
    * specify we do not require a quorum number of votes
    
    * allow test cases to be provided by the extension library
    
    * Apply suggestions from code review
    
    Co-authored-by: Daniel Weindl <[email protected]>
    
    Co-authored-by: Daniel Weindl <[email protected]>
    FFroehlich and dweindl committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    617431c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b83348d View commit details
    Browse the repository at this point in the history
  6. Add required attribute to extensions in yaml file (#545)

    PEtab extensions were introduced in #537. We should be able to distinguish there between optional extensions and required extensions, i.e. those that modify the parameter estimation problem as such, and those that just add additional/optional information (e.g. annotations, info for visualization, ...). If some tool does not know about a certain optional extension, it can safely be ignored during import, if it does not know about a required extension, it should fail.
    
    This PR adds a `required` attribute to extensions in the yaml file to indicate whether they are required for the mathematical interpretation of the PEtab problem.
    
    Resolves #544
    dweindl committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    88c6605 View commit details
    Browse the repository at this point in the history
  7. Clarify implications of 'parameterScale' (#547)

    
    Co-authored-by: Dilan Pathirana <[email protected]>
    dweindl and dilpath committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    bacf83e View commit details
    Browse the repository at this point in the history
  8. Fix .rst formatting (#563)

    dweindl committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    c2bb990 View commit details
    Browse the repository at this point in the history
  9. Specification of math expressions (#579)

    Previously, the math expression syntax wasn't specified. This was very problematic, because different libraries and programming languages have different names for the same functions, and more importantly, differ in operator precedence.
    
    
    Co-authored-by: Dilan Pathirana <[email protected]>
    Co-authored-by: dilpath <[email protected]>
    3 people committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    5fa0f1f View commit details
    Browse the repository at this point in the history
  10. Allow using observable IDs in observableFormula and noiseFormula (#…

    …562)
    
    Following up on #543 and the discussion during the last PEtab editor meeting:
    There was general consent to allow using observableIDs in the `noiseFormula` column in the observables table.
    
    Closes #543.
    dweindl committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    fcccbcf View commit details
    Browse the repository at this point in the history
  11. Proposal: Different languages for model specification (#538)

    # Motivation
    
    There are a number of formats for specifying models in systems biology, each with their specific strengths and weaknesses. PEtab version 1.0.0 only allows  Systems Biology Markup Language (SBML) models. While SBML is supported by a large number of tools, there are good reasons to use other formats. For example, rule-based model formats (e.g., BioNetGenLanguage) permit more abstract and compact specification of models based on rules, which are generalisations of reactions. Therefore, and based on user request (#436), we propose to lift PEtab’s restriction to SBML models and allow arbitrary model formats.
    
    # Proposed changes
    
    * Changes to the PEtab YAML file:
      * Change `sbml_files` to `models`
      * `models` entries will be model IDs (following the existing conventions for PEtab IDs) mapping to:
        * `location`: path / URL to the model
        * `language`: model format
          Initial set of model format identifiers (to be extended as needed):
          * SBML: `sbml`
          * CellML: `cellml`
          * BNGL: `bngl`
          * PySB: `pysb`
      * An additional entry for mapping tables (see below) is added
    
      Example:
    
      **Before:**
      ```yaml
      format_version: 1
      parameter_file: parameters.tsv
      problems:
      - condition_files:
        - conditions.tsv
        measurement_files:
        - measurements.tsv
        observable_files:
        - observables.tsv
        sbml_files:
        - model1.xml
      ```
    
      **After:**
      ```yaml
      format_version: 2.0.0
      parameter_file: parameters.tsv
      problems:
      - condition_files:
        - conditions.tsv
        measurement_files:
        - measurements.tsv
        observable_files:
        - observables.tsv
        mapping_file: mappings.tsv # optional 
        models:
          id_for_model1:
            location: model1.xml
            language: sbml
      ```
    
    
    
    * Changes to the format of existing tables/files:
      * Condition/Observable/Parameter Table
        All symbols that previously referenced the ID of SBML entities, such as parameter IDs or compartment IDs, now refer to (globally unique) named entities in the model, such as parameters, observables, expressions. For example, condition table columns may correspond to parameters, states, species of the referenced model. 
        For species, assignments in the condition table set the initial value at the beginning of the simulation for that condition, potentially replacing the initialization from preequilibration. For all other entities, values are statically replaced at all time points. For entities that assign values to other entities, such as SBML AssignmentRules, the value of the target of that rule is statically replaced at all time points.    
    * Additional files
      * Mapping Table: 
        Mapping PEtab entity IDs to entity IDs in the model. This optional file may be used to reference model entities in PEtab files where the ID in the model would not be a valid identifier in PEtab (e.g., due to containing blanks, dots, or other special characters).
        The tsv file has two mandatory columns: `petabEntityId`, `modelEntityId`. Additional columns are allowed. modelEntityIds must be unique identifiers in the model. The mapping table must not map modelEntityIds to petabEntityIds that are also defined in any other part of the PEtab problem. modelEntityId may not refer to other petabEntityIds, including those defined in the mapping table. petabEntityIds defined in the mapping table may be referenced in condition, measurement, parameter and observable tables, but cannot be referenced in the model itself.
        For example, in SBML, local parameters may be referenced as `$reactionId.$localParameterId`, which are not valid PEtab IDs as they contain a `.` character. Similarly, this table may be used to reference specific species in a BGNL model which may contain many unsupported characters such as `,`, `(` or `.`. However, please note that IDs must exactly match the species names in the BNGL generated network file and no pattern matching will be performed. 
    
    # Implications
    
    * Tools need to check the model format and provide an informative message if the given format cannot be handled
    * Validators will skip model-dependent validation when encountering unknown model types - ideally there would be some plugin mechanisms to provide validation
    
    --- 
    
    Co-authored by @FFroehlich @fbergmann. Also thanks to everybody participating in these discussions during the last COMBINE meeting.
    
    ---------
    
    
    
    Co-authored-by: FFroehlich <[email protected]>
    Co-authored-by: Dilan Pathirana <[email protected]>
    Co-authored-by: Frank T. Bergmann <[email protected]>
    4 people committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    d650906 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    06697a4 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    f7b51a2 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2024

  1. Configuration menu
    Copy the full SHA
    a3f1e03 View commit details
    Browse the repository at this point in the history
  2. Apply suggestions from code review

    Co-authored-by: Dilan Pathirana <[email protected]>
    dweindl and dilpath committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    68c309a View commit details
    Browse the repository at this point in the history