We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
build_geneSBML()
1 parent 6c2a408 commit 50e76abCopy full SHA for 50e76ab
R/evaluation_funs.R
@@ -698,4 +698,27 @@
698
699
}
700
701
+# `build_geneSBML` deprecated, for compatibility --------
702
+
703
+#' Create a SBML model from gene Entrez IDs (not active anymore).
704
+#'
705
+#' @description
706
+#' Function `bulid_geneSBML()` is not active anymore and was replaced by
707
+#' much more robust \code{\link{get_regulation}} with a slightly different
708
+#' interface and output.
709
+#' Calling `bulid_geneSBML()` returns `NULL` with a warning.
710
711
+#' @inheritParams get_regulation
712
713
+#' @export
714
715
+ build_geneSBML <- function(x, ...) {
716
717
+ warning("The function is not active anymore, please use `get_regulation()` instead.",
718
+ call. = FALSE)
719
720
+ return(NULL)
721
722
+ }
723
724
# END --------
0 commit comments