From 662f1baca1888174bf5b28d8d6774faa90ed77c2 Mon Sep 17 00:00:00 2001 From: Alexander Minges Date: Thu, 14 Apr 2016 14:10:04 +0200 Subject: [PATCH] declare kinetic functions as static --- libkinetics/__init__.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libkinetics/__init__.py b/libkinetics/__init__.py index 6a8922b..ce2bcbc 100644 --- a/libkinetics/__init__.py +++ b/libkinetics/__init__.py @@ -82,7 +82,7 @@ class Replicate(): ) = stats.linregress(x_for_fit, y_for_fit) r_squared = r_value ** 2 - + n = len(x_for_fit[0]) # number of observations k = 2 # independent variables: slope and intercept @@ -328,7 +328,8 @@ class Experiment(): else: self.hill = None - def mm_kinetics_function(self, x, vmax, Km): + @staticmethod + def mm_kinetics_function(x, vmax, Km): """ Michaelis-Menten function. @@ -349,7 +350,8 @@ class Experiment(): v = (vmax * x) / (Km + x) return v - def hill_kinetics_function(self, x, vmax, Kprime, h): + @staticmethod + def hill_kinetics_function(x, vmax, Kprime, h): """ Hill function.