mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add r-dnacopy.
* gnu/packages/bioconductor.scm (r-dnacopy): New variable.
This commit is contained in:
parent
ab61ce3730
commit
c18dccffa2
1 changed files with 23 additions and 0 deletions
|
@ -27,6 +27,7 @@ (define-module (gnu packages bioconductor)
|
|||
#:use-module (gnu packages bioinformatics)
|
||||
#:use-module (gnu packages cran)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages gcc)
|
||||
#:use-module (gnu packages graph)
|
||||
#:use-module (gnu packages maths)
|
||||
#:use-module (gnu packages statistics)
|
||||
|
@ -1176,3 +1177,25 @@ (define-public r-chipexoqual
|
|||
"This package provides a quality control pipeline for ChIP-exo/nexus
|
||||
sequencing data.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-dnacopy
|
||||
(package
|
||||
(name "r-dnacopy")
|
||||
(version "1.56.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (bioconductor-uri "DNAcopy" version))
|
||||
(sha256
|
||||
(base32
|
||||
"04cqdqxhva66xwh1s2vffi56b9fcrqd4slcrvqasj5lp2rkjli82"))))
|
||||
(properties `((upstream-name . "DNAcopy")))
|
||||
(build-system r-build-system)
|
||||
(native-inputs `(("gfortran" ,gfortran)))
|
||||
(home-page "https://bioconductor.org/packages/DNAcopy")
|
||||
(synopsis "DNA copy number data analysis")
|
||||
(description
|
||||
"This package implements the @dfn{circular binary segmentation} (CBS)
|
||||
algorithm to segment DNA copy number data and identify genomic regions with
|
||||
abnormal copy number.")
|
||||
(license license:gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue