Browse code

msa() function changed such that it also works if the package is not attached to the workspace; version number bumped to 1.31.2

UBod authored on 14/12/2022 06:25:02
Showing 3 changed files

... ...
@@ -1,8 +1,8 @@
1 1
 Package: msa
2 2
 Type: Package
3 3
 Title: Multiple Sequence Alignment
4
-Version: 1.31.1
5
-Date: 2022-12-05
4
+Version: 1.31.2
5
+Date: 2022-12-14
6 6
 Author: Enrico Bonatesta, Christoph Horejs-Kainrath, Ulrich Bodenhofer
7 7
 Maintainer: Ulrich Bodenhofer <bodenhofer@bioinf.jku.at>
8 8
 Description: The 'msa' package provides a unified R/Bioconductor interface to
... ...
@@ -19,7 +19,7 @@ msa <- function(inputSeqs,
19 19
 
20 20
     method <- match.arg(method)
21 21
 
22
-    msaFun <- match.fun(paste0("msa", method))
22
+    msaFun <- get(paste0("msa", method), envir=environment(msa))
23 23
 
24 24
     out <- msaFun(inputSeqs=inputSeqs,
25 25
                   cluster=cluster,
... ...
@@ -1,6 +1,10 @@
1 1
 Change history of package msa:
2 2
 ==============================
3 3
 
4
+Version 1.31.2:
5
+- msa() function changed such that it also works if the package
6
+  is not attached to the workspace
7
+
4 8
 Version 1.31.1:
5 9
 - update of gc
6 10