GNU bug report logs - #57135
[PATCH] gnu: Add mrbayes.

Previous Next

Package: guix-patches;

Reported by: Mădălin Ionel Patrașcu <madalinionel.patrascu <at> mdc-berlin.de>

Date: Thu, 11 Aug 2022 08:31:01 UTC

Severity: normal

Tags: moreinfo, patch

To reply to this bug, email your comments to 57135 AT debbugs.gnu.org.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to rekado <at> elephly.net, guix-patches <at> gnu.org:
bug#57135; Package guix-patches. (Thu, 11 Aug 2022 08:31:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Mădălin Ionel Patrașcu <madalinionel.patrascu <at> mdc-berlin.de>:
New bug report received and forwarded. Copy sent to rekado <at> elephly.net, guix-patches <at> gnu.org. (Thu, 11 Aug 2022 08:31:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Mădălin Ionel Patrașcu
 <madalinionel.patrascu <at> mdc-berlin.de>
To: <guix-patches <at> gnu.org>
Subject: [PATCH] gnu: Add mrbayes.
Date: Thu, 11 Aug 2022 10:30:10 +0200
* gnu/packages/bioinformatics.scm (mrbayes): New variable.
---
 gnu/packages/bioinformatics.scm | 67 +++++++++++++++++++++++++++++++++
 1 file changed, 67 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 3a40cc2281..ae362de1e7 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -11155,6 +11155,73 @@ (define-public mantis
       (supported-systems '("x86_64-linux"))
       (license license:bsd-3))))
 
+(define-public mrbayes
+  (package
+    (name "mrbayes")
+    (version "3.2.7a")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/NBISweden/MrBayes/")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1c4qg4wd6lhj1if5g6462pk15bhh7v84ys92sp47yih7lrkk2jd6"))))
+    (properties `((upstream-name . "MrBayes")))
+    (build-system gnu-build-system)
+    (native-inputs
+     (list automake
+           autoconf))
+    (home-page "https://github.com/NBISweden/MrBayes/")
+    (synopsis "Bayesian inference of phylogeny")
+    (description
+     "@code{MrBayes} is a program for Bayesian inference and model choice across
+a wide range of phylogenetic and evolutionary models.  @code{MrBayes} uses @dfn{
+MCMC} (Markov chain Monte Carlo) methods to estimate the posterior distribution
+of model parameters.  Program features include:
+@itemize
+@item
+analysis of nucleotide, amino acid, restriction site, and morphological data;
+@item
+mixing of data types, such as molecular and morphological characters, in a single
+analysis;
+@item
+easy linking and unlinking of parameters across data partitions;
+@item
+multiple evolutionary models, including 4x4, doublet, and codon models for
+nucleotide data and many of the standard rate matrices for amino acid data;
+@item
+estimation of positively selected sites in a fully hierarchical Bayesian framework;
+@item
+full integration of the @code{BEST} algorithms for the multi-species coalescent;
+@item
+estimation of time calibrated (clock) trees using a variety of (strict and)
+relaxed-clock models;
+@item
+support for complex combinations of positive, negative, and backbone constraints
+on topologies;
+@item
+model jumping across the @code{GTR} model space and across fixed rate matrices
+for amino acid data;
+@item
+monitoring of convergence during the analysis, and access to a wide range of
+convergence diagnostics tools after the analysis has finished;
+@item
+rich summaries of posterior samples of branch and node parameters printed to
+majority rule consensus trees in FigTree format;
+@item
+implementation of the stepping-stone method for accurate estimation of model
+likelihoods for Bayesian model choice using Bayes factors;
+@item
+ability to spread jobs over a cluster of computers using @code{MPI} (for
+Macintosh and UNIX environments only);
+@item
+support for the @code{BEAGLE} library, resulting in dramatic speedups for codon
+and amino acid models on compatible hardware (NVIDIA graphics cards);
+@end itemize")
+    (license license:gpl3)))
+
 (define-public sjcount
   ;; There is no tag for version 3.2, nor is there a release archive.
   (let ((commit "292d3917cadb3f6834c81e509c30e61cd7ead6e5")

base-commit: 6ce3e51aa876681967177812dc295c86a50d7446
-- 
2.37.1





Information forwarded to guix-patches <at> gnu.org:
bug#57135; Package guix-patches. (Thu, 18 Aug 2022 20:49:01 GMT) Full text and rfc822 format available.

Message #8 received at 57135 <at> debbugs.gnu.org (full text, mbox):

From: Ricardo Wurmus <rekado <at> elephly.net>
To: Mădălin Ionel Patrașcu
 <madalinionel.patrascu <at> mdc-berlin.de>
Cc: 57135 <at> debbugs.gnu.org, debbugs-submit <at> debbugs.gnu.org
Subject: Re: [bug#57135] [PATCH] gnu: Add mrbayes.
Date: Thu, 18 Aug 2022 22:42:33 +0200
[Message part 1 (text/plain, inline)]
Hi Mădălin,

> * gnu/packages/bioinformatics.scm (mrbayes): New variable.

Thanks for the patch.

Unfortunately, there are a few problems.

- you added autoconf and automake, but neither of these is used as the
  git checkout includes a pre-built “configure” script and “Makefile.in”

- we cannot use the “configure” script as is, because the build system
  uses AX_EXT, which unconditionally adds -msse* compiler flags when the
  CPU on the build node supports these features.  This means that we
  cannot build a generic binary.  The build system ignores
  “--disable-sse”, “--disable-avx”, and “--disable-fma” because of
  AX_EXT.

- we cannot rebuild the “configure” script because the bootstrap phase
  fails with an error.  Adding pkg-config to the native inputs does not
  seem to fix this either, so more investigation is needed.

- consider adding openmpi and use --enable-mpi.

- consider shortening the description.  Especially the parts that
  mention proprietary software or trademarks (UNIX and Macintosh, as
  well as NVIDIA) should be removed.

Could you please revise this and send an updated patch?

-- 
Ricardo


[wip.diff (text/x-patch, inline)]
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index fcca9ef115..6ca257245a 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -11269,56 +11269,63 @@ (define-public mrbayes
                 "1c4qg4wd6lhj1if5g6462pk15bhh7v84ys92sp47yih7lrkk2jd6"))))
     (properties `((upstream-name . "MrBayes")))
     (build-system gnu-build-system)
+    (arguments
+     (list
+      #:configure-flags '(list "--enable-sse=no"
+                               "--enable-avx=no"
+                               "--enable-fma=no"
+                               "--with-mpi"
+                               "--without-beagle")
+      #:phases
+      `(modify-phases %standard-phases
+         (add-after 'unpack 'do-not-detect-CPU-features
+           (lambda _
+             (delete-file "configure")
+             (delete-file "aclocal.m4")
+             (substitute* "configure.ac"
+               (("AC_CONFIG_AUX_DIR.*") "")
+               (("AC_CONFIG_MACRO_DIRS.*") "")
+               (("^AX_EXT") "")))))))
+    (inputs
+     (list openmpi))
     (native-inputs
-     (list automake
-           autoconf))
+     (list autoconf autoconf-archive automake pkg-config))
     (home-page "https://github.com/NBISweden/MrBayes/")
     (synopsis "Bayesian inference of phylogeny")
     (description
-     "@code{MrBayes} is a program for Bayesian inference and model choice across
-a wide range of phylogenetic and evolutionary models.  @code{MrBayes} uses @dfn{
-MCMC} (Markov chain Monte Carlo) methods to estimate the posterior distribution
-of model parameters.  Program features include:
+     "@code{MrBayes} is a program for Bayesian inference and model choice
+across a wide range of phylogenetic and evolutionary models.  @code{MrBayes}
+uses @dfn{MCMC} (Markov chain Monte Carlo) methods to estimate the posterior
+distribution of model parameters.  Program features include:
+
 @itemize
-@item
-analysis of nucleotide, amino acid, restriction site, and morphological data;
-@item
-mixing of data types, such as molecular and morphological characters, in a single
-analysis;
-@item
-easy linking and unlinking of parameters across data partitions;
-@item
-multiple evolutionary models, including 4x4, doublet, and codon models for
-nucleotide data and many of the standard rate matrices for amino acid data;
-@item
-estimation of positively selected sites in a fully hierarchical Bayesian framework;
-@item
-full integration of the @code{BEST} algorithms for the multi-species coalescent;
-@item
-estimation of time calibrated (clock) trees using a variety of (strict and)
-relaxed-clock models;
-@item
-support for complex combinations of positive, negative, and backbone constraints
-on topologies;
-@item
-model jumping across the @code{GTR} model space and across fixed rate matrices
-for amino acid data;
-@item
-monitoring of convergence during the analysis, and access to a wide range of
-convergence diagnostics tools after the analysis has finished;
-@item
-rich summaries of posterior samples of branch and node parameters printed to
-majority rule consensus trees in FigTree format;
-@item
-implementation of the stepping-stone method for accurate estimation of model
-likelihoods for Bayesian model choice using Bayes factors;
-@item
-ability to spread jobs over a cluster of computers using @code{MPI} (for
-Macintosh and UNIX environments only);
-@item
-support for the @code{BEAGLE} library, resulting in dramatic speedups for codon
-and amino acid models on compatible hardware (NVIDIA graphics cards);
-@end itemize")
+@item analysis of nucleotide, amino acid, restriction site, and morphological
+  data;
+@item mixing of data types, such as molecular and morphological characters, in
+  a single analysis;
+@item easy linking and unlinking of parameters across data partitions;
+@item multiple evolutionary models, including 4x4, doublet, and codon models
+  for nucleotide data and many of the standard rate matrices for amino acid
+  data;
+@item estimation of positively selected sites in a fully hierarchical Bayesian
+  framework;
+@item full integration of the @code{BEST} algorithms for the multi-species
+  coalescent;
+@item estimation of time calibrated trees using a variety of (strict and)
+  relaxed-clock models;
+@item support for complex combinations of positive, negative, and backbone
+  constraints on topologies;
+@item model jumping across the @code{GTR} model space and across fixed rate
+  matrices for amino acid data;
+@item monitoring of convergence during the analysis, and access to a wide
+  range of convergence diagnostics tools after the analysis has finished;
+@item rich summaries of posterior samples of branch and node parameters
+  printed to majority rule consensus trees in FigTree format;
+@item implementation of the stepping-stone method for accurate estimation of
+  model likelihoods for Bayesian model choice using Bayes factors;
+@item ability to spread jobs over a cluster of computers using @code{MPI}.
+@end itemize
+")
     (license license:gpl3)))
 
 (define-public sjcount

Added tag(s) moreinfo. Request was from Ricardo Wurmus <rekado <at> elephly.net> to control <at> debbugs.gnu.org. (Fri, 04 Nov 2022 11:47:02 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 223 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.