Skip to content
Snippets Groups Projects
Commit 90a32578 authored by Claus Jonathan Fritzemeier's avatar Claus Jonathan Fritzemeier
Browse files

corrected mistake in deadEndMetabolite (thuong)

parent 9b246173
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ ...@@ -95,7 +95,7 @@
# dead end list: test all reactions k > j # dead end list: test all reactions k > j
k <- j+1 k <- j+1
while (k <= length(nz)) { while (k <= length(nz)) {
if ( (tmp_mat[i, nz[k]] != tmp_mat[i, nz[j]]) || if ( ( sign(tmp_mat[i, nz[k]]) != sign(tmp_mat[i, nz[j]]) ) ||
(lb[nz[k]] < 0) || (lb[nz[k]] < 0) ||
(lb[nz[j]] < 0) ) { (lb[nz[j]] < 0) ) {
#print(paste(i,":",k)) #print(paste(i,":",k))
......
...@@ -6,6 +6,12 @@ ...@@ -6,6 +6,12 @@
\newcommand{\CRANpkg}{\href{http://CRAN.R-project.org/package=#1}{\pkg{#1}}} \newcommand{\CRANpkg}{\href{http://CRAN.R-project.org/package=#1}{\pkg{#1}}}
\section{Changes in version 1.3.1 2015-08-06}{
\itemize{
\item \code{deadEndMetabolite()} could miss deadEndMetabolites if reactions differ in stoichiometry e.g. 1 and 2.
}
}
\section{Changes in version 1.3.1 2015-08-06}{ \section{Changes in version 1.3.1 2015-08-06}{
\itemize{ \itemize{
\item \code{readTSVmod} had a mistake in the documentation about singletons. \item \code{readTSVmod} had a mistake in the documentation about singletons.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment