From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55340) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhc-00087P-4x for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhZ-0000uB-SC for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:19 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36981) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhZ-0000t7-Mh for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:17 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhZ-0008Jv-MW for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:17 -0500 Subject: [bug#39416] [PATCH 22/34] gnu: Add package r-openmx Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:14 +0100 Message-Id: <20200204135626.28261-22-ldb@leibniz-psychology.org> In-Reply-To: <20200204135626.28261-1-ldb@leibniz-psychology.org> References: <20200204135626.28261-1-ldb@leibniz-psychology.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39416@debbugs.gnu.org Cc: Lars-Dominik Braun * gnu/packages/cran.scm (r-openmx): New variable. --- gnu/packages/cran.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index a607abd262..0223b97a62 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19843,3 +19843,41 @@ core support code suitable for more specialized IRT packages to build upon. Complete access to optimized C functions are made available with @code{R_RegisterCCallable()}.") (license license:gpl3+))) + +(define-public r-openmx + (package + (name "r-openmx") + (version "2.15.5") + (source + (origin + (method url-fetch) + (uri (cran-uri "OpenMx" version)) + (sha256 + (base32 + "1wbzhmyb1lnk39dkcyccmblxvniwsghh0jd94x05pk6yrcq8im5v")))) + (properties `((upstream-name . "OpenMx"))) + (build-system r-build-system) + (propagated-inputs + `(("r-bh" ,r-bh) + ("r-digest" ,r-digest) + ("r-mass" ,r-mass) + ("r-matrix" ,r-matrix) + ("r-rcpp" ,r-rcpp) + ("r-rcppeigen" ,r-rcppeigen) + ("r-rpf" ,r-rpf) + ("r-stanheaders" ,r-stanheaders))) + (native-inputs `(("gfortran" ,gfortran))) + (home-page "http://openmx.ssri.psu.edu") + (synopsis + "Extended Structural Equation Modelling") + (description + "Create structural equation models that can be manipulated +programmatically. Models may be specified with matrices or paths (LISREL or +RAM) Example models include confirmatory factor, multiple group, mixture +distribution, categorical threshold, modern test theory, differential Fit +functions include full information maximum likelihood, maximum likelihood, and +weighted least squares. equations, state space, and many others. Support and +advanced package binaries available at . The +software is described in Neale, Hunter, Pritikin, Zahery, Brick, Kirkpatrick, +Estabrook, Bates, Maes, & Boker (2016) .") + (license license:asl2.0))) -- 2.20.1