Skip to content

Commit

Permalink
Merge pull request #154 from SciML/pl/citation_cff
Browse files Browse the repository at this point in the history
Add citation file
  • Loading branch information
ChrisRackauckas authored Jun 3, 2024
2 parents f7338af + 8e369d7 commit b0c1a63
Show file tree
Hide file tree
Showing 16 changed files with 129 additions and 303 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/cff-validator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
push:
paths:
- CITATION.cff
workflow_dispatch:

name: CITATION.cff
jobs:
Validate-CITATION-cff:
runs-on: ubuntu-latest
name: Validate CITATION.cff

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Validate CITATION.cff
uses: dieghernan/cff-validator@v3
23 changes: 0 additions & 23 deletions .github/workflows/draft-pdf.yml

This file was deleted.

76 changes: 76 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!

cff-version: 1.2.0
title: SBMLToolkit.jl
message: >-
If you use this software, please cite the preferred-citation in this file.
preferred-citation:
type: article
authors:
- given-names: Paul
name-particle: F
family-names: Lang
email: [email protected]
affiliation: Deep Origin
orcid: 'https://orcid.org/0000-0002-6388-2405'
- given-names: Anand
family-names: Jain
- given-names: Christopher
family-names: Rackauckas
orcid: 'https://orcid.org/0000-0001-5850-0663'
affiliation: JuliaHub
doi: "10.1515/jib-2024-0003"
journal: "Journal of Integrative Bioinformatics"
month: 5
title: "SBMLToolkit.jl: a Julia package for importing SBML into the SciML ecosystem"
year: 2024
keywords:
- systems biology markup language
- SBML
- Julia
- scientific machine learning
license: CC-BY-4.0
repository-code: >-
https://github.com/JuliaSmoothOptimizers/CaNNOLeS.jl
abstract: >-
Julia is a general purpose programming language that was
designed for simplifying and accelerating numerical
analysis and computational science. In particular the
Scientific Machine Learning (SciML) ecosystem of Julia
packages includes frameworks for high-performance
symbolic-numeric computations. It allows users to
automatically enhance high-level descriptions of their
models with symbolic preprocessing and automatic
sparsification and parallelization of computations. This
enables performant solution of differential equations,
efficient parameter estimation and methodologies for
automated model discovery with neural differential
equations and sparse identification of nonlinear dynamics.
To give the systems biology community easy access to
SciML, we developed SBMLToolkit.jl. SBMLToolkit.jl imports
dynamic SBML models into the SciML ecosystem to accelerate
model simulation and fitting of kinetic parameters. By
providing computational systems biologists with easy
access to the open-source Julia ecosystevnm, we hope to
catalyze the development of further Julia tools in this
domain and the growth of the Julia bioscience community.
SBMLToolkit.jl is freely available under the MIT license.
The source code is available at
https://github.com/SciML/SBMLToolkit.jl.
type: software
authors:
- given-names: Paul
name-particle: F
family-names: Lang
affiliation: Deep Origin
orcid: 'https://orcid.org/0000-0002-6388-2405'
- given-names: Anand
family-names: Jain
- given-names: Christopher
family-names: Rackauckas
orcid: 'https://orcid.org/0000-0001-5850-0663'
affiliation: JuliaHub
- given-names: contributors
repository-code: 'https://github.com/SciML/SBMLToolkit.jl'
license: MIT
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ makedocs(;
assets = ["assets/favicon.ico"]),
pages = [
"Home" => "index.md",
"API documentation" => "api.md",
"API documentation" => "api.md"
])

deploydocs(;
Expand Down
Binary file removed paper/figure.png
Binary file not shown.
185 changes: 0 additions & 185 deletions paper/paper.bib

This file was deleted.

67 changes: 0 additions & 67 deletions paper/paper.md

This file was deleted.

2 changes: 1 addition & 1 deletion src/SBMLToolkit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include("utils.jl")

export ReactionSystem, ODESystem
export readSBML, readSBMLFromString, set_level_and_version, convert_simplify_math,
convert_promotelocals_expandfuns
convert_promotelocals_expandfuns
export DefaultImporter, ReactionSystemImporter, ODESystemImporter

end
Loading

0 comments on commit b0c1a63

Please sign in to comment.