Browse code

fix of msa() function; version number bumped to 1.1.1

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/msa@104866 bc3139a8-67e5-0310-9ffc-ced21a209358

Ulrich Bodenhofer authored on 12/06/2015 08:49:45
Showing 4 changed files

... ...
@@ -1,8 +1,8 @@
1 1
 Package: msa
2 2
 Type: Package
3 3
 Title: Multiple Sequence Alignment
4
-Version: 1.1.0
5
-Date: 2015-04-16
4
+Version: 1.1.1
5
+Date: 2015-06-12
6 6
 Author: Enrico Bonatesta, Christoph Horejs-Kainrath, Ulrich Bodenhofer
7 7
 Maintainer: Ulrich Bodenhofer <bodenhofer@bioinf.jku.at>
8 8
 Description: This package provides a unified R/Bioconductor interface to the
... ...
@@ -13,10 +13,19 @@ msa <- function(inputSeqs,
13 13
 {
14 14
     method <- match.arg(method)
15 15
 
16
-    msaArgs <- as.list(match.call(expand.dots=TRUE)[-1])
17
-    msaArgs[["method"]] <- NULL
16
+    msaFun <- match.fun(paste0("msa", method))
18 17
 
19
-    out <- do.call(paste0("msa", method), msaArgs)
18
+    out <- msaFun(inputSeqs=inputSeqs,
19
+                  cluster=cluster,
20
+                  gapOpening=gapOpening,
21
+                  gapExtension=gapExtension,
22
+                  maxiters=maxiters,
23
+                  substitutionMatrix=substitutionMatrix,
24
+                  type=type,
25
+                  order=order,
26
+                  verbose=verbose,
27
+                  help=help,
28
+                  ...)
20 29
 
21 30
     if (is(out, "MsaMetaData"))
22 31
         out@call <- deparse(sys.call())
... ...
@@ -1,5 +1,11 @@
1 1
 Change history of package msa:
2 2
 ==============================
3 3
 
4
+Version 1.1.1:
5
+- fix of msa() function
6
+
7
+Version 1.1.0:
8
+- new branch for Bioconductor 3.2 devel
9
+
4 10
 Version 1.0.0:
5 11
 - first official release as part of Bioconductor 3.1
... ...
@@ -613,7 +613,9 @@ bibliography below).
613 613
 \section{Change Log}
614 614
 
615 615
 \begin{description}
616
-\item[Version 0.99.0:] first version submitted to Bioconductor
616
+\item[Version 1.1.1:] fix of \verb+msa()+ function
617
+\item[Version 1.1.0:] new branch for Bioconductor 3.2 devel
618
+\item[Version 1.0.0:] first official release as part of Bioconductor 3.1
617 619
 \end{description}
618 620
 
619 621
 %\bibliographystyle{plain}