Skip to content

DILiS-lab/LoopDetectR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LoopDetectR: An R package for comprehensive detection of feedback loops in ODE models

Scope of the package

This package can be used to detect feedback loops (cycles, circuits) between species in ordinary differential equation (ODE) models. These are paths from one node to itself without visiting any other node twice, and they have important regulatory functions. Together with the loop length it is also reported whether the loop is a positive or a negative feedback loop. An upper limit of the number of feedback loops can be entered to limit the runtime (which scales with feedback loop count). Model parametrizations and values of the modelled variables are accounted for. Input can be the Jacobian matrix of the ODE model or the function definition. Graph-based algorithms from igraph are employed for path detection.

Installation

LoopDetectR is on CRAN link and can be installed within an R session.

# Download and install
utils::install.packages("LoopDetectR")
# Load package
library("LoopDetectR")

You can also install the package from gitlab. Call the following commands in an R session.

# Install from gitlab
remotes::install_gitlab(kabaum/LoopDetectR, build_manual = TRUE, build_vignettes = TRUE)
# Load package
library("LoopDetectR")

Workflow and documentation

A detailed workflow document can be found in the vignettes folder and as CRAN vignette. Each function is documented. For example, type

help('find_loops')

within an R session with installed and loaded LoopDetectR to obtain details on the function find_loops. For an overview of the functions, download the reference manual.

Licensing

All code is licensed under the GNU GPLv3, LoopDetectR, Copyright (C) 2020 Katharina Baum.

About

An R package to detect feedback loops (cycles, circuits) between species in ordinary differential equation (ODE) models

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors