Skip to content
/ genet Public

Gene regulatory network inference with covariance dynamics

License

Notifications You must be signed in to change notification settings

zhengp0/genet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

genet

Gene regulatory network inference with covariance dynamics

Install

You can install this package through pip

pip install git+https://github.com/zhengp0/genet.git

Example

After installed the package you can use the following code as an example.

import numpy as np
from genet.solver import RegRelSolver

# problem setup
# true solution of this problem should be all 0
n = 5
inv_kt = np.identity(n)
inv_k0 = np.identity(n)
lam = 0.0

# solve the problem
solver = RegRelSolver(inv_kt, inv_k0, lam)
regrel = solver.fit()

assert np.allclose(regrel, 0.0)

About

Gene regulatory network inference with covariance dynamics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages