summaryrefslogtreecommitdiff
path: root/gnu/packages/cran.scm
diff options
context:
space:
mode:
authorNavid Afkhami <navid.afkhami@mdc-berlin.de>2025-01-22 09:09:14 +0000
committerRicardo Wurmus <rekado@elephly.net>2025-01-22 12:39:32 +0100
commit8ac97e627e0234576e4eef4ca0ea9e190beab543 (patch)
tree71738aa10aebbaaadf55ec7a5f4c0c2b1fa1f7dc /gnu/packages/cran.scm
parenteac904c7231c9217ee8466cf801d2e41806ed355 (diff)
gnu: Add r-phytools.
* gnu/packages/cran.scm (r-phytools): New variable. Change-Id: Ie4fa9f40febf3b114a3da38b9cdf668e8ac415ca Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r--gnu/packages/cran.scm46
1 files changed, 46 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 936f3cf5935..77e89c642bc 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -38153,6 +38153,52 @@ range of object-specific analytical and tree-visualization functions found
38153across a wide array of bioinformatic R packages.") 38153across a wide array of bioinformatic R packages.")
38154 (license license:gpl3))) 38154 (license license:gpl3)))
38155 38155
38156(define-public r-phytools
38157 (package
38158 (name "r-phytools")
38159 (version "2.4-4")
38160 (source
38161 (origin
38162 (method url-fetch)
38163 (uri (cran-uri "phytools" version))
38164 (sha256
38165 (base32 "1i25dlikdx9av5653ra2709sjm9fc3fsis1yfsb7zagivi408ph9"))))
38166 (properties `((upstream-name . "phytools")))
38167 (build-system r-build-system)
38168 (propagated-inputs (list r-ape
38169 r-clustergeneration
38170 r-coda
38171 r-combinat
38172 r-deoptim
38173 r-doparallel
38174 r-expm
38175 r-foreach
38176 r-maps
38177 r-mass
38178 r-mnormt
38179 r-nlme
38180 r-numderiv
38181 r-optimparallel
38182 r-phangorn
38183 r-scatterplot3d))
38184 (home-page "https://github.com/liamrevell/phytools")
38185 (synopsis "Phylogenetic tools for comparative biology")
38186 (description
38187 "This package offers extensive tools for phylogenetic analysis. It
38188focuses on phylogenetic comparative biology but also includes methods for
38189visualizing, analyzing, manipulating, reading, writing, and inferring
38190phylogenetic trees. Functions for comparative biology include ancestral state
38191reconstruction, model fitting, and phylogeny and trait data simulation. A
38192broad range of plotting methods includes mapping trait evolution on trees,
38193projecting trees into phenotype space or geographic maps, and visualizing
38194correlated speciation between trees. Additional functions allow for reading,
38195writing, analyzing, inferring, simulating, and manipulating phylogenetic trees
38196and comparative data. Examples include computing consensus trees, simulating
38197trees and data under various models, and attaching species or clades to a tree
38198either randomly or non-randomly. This package provides numerous tools for
38199tree manipulations and analyses that are valuable for phylogenetic research.")
38200 (license license:gpl2+)))
38201
38156(define-public r-kmer 38202(define-public r-kmer
38157 (package 38203 (package
38158 (name "r-kmer") 38204 (name "r-kmer")