gnu: Add r-affy.

* gnu/packages/bioinformatics.scm (r-affy): New variable.
This commit is contained in:
Ricardo Wurmus 2017-01-16 12:18:51 +01:00
parent 5c9d15055f
commit 05c7e5fb76
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 26 additions and 0 deletions

View File

@ -8304,3 +8304,29 @@ previously been used in XCMS.")
upon file format information. The primary focus is on accessing the CEL and upon file format information. The primary focus is on accessing the CEL and
CDF file formats.") CDF file formats.")
(license license:lgpl2.0+))) (license license:lgpl2.0+)))
(define-public r-affy
(package
(name "r-affy")
(version "1.52.0")
(source
(origin
(method url-fetch)
(uri (bioconductor-uri "affy" version))
(sha256
(base32
"1snq71ligf0wvaxa6zfrl13ydw0zfhspmhdyfk8q3ba3np4cz344"))))
(build-system r-build-system)
(propagated-inputs
`(("r-affyio" ,r-affyio)
("r-biobase" ,r-biobase)
("r-biocgenerics" ,r-biocgenerics)
("r-biocinstaller" ,r-biocinstaller)
("r-preprocesscore" ,r-preprocesscore)
("r-zlibbioc" ,r-zlibbioc)))
(home-page "http://bioconductor.org/packages/affy")
(synopsis "Methods for affymetrix oligonucleotide arrays")
(description
"This package contains functions for exploratory oligonucleotide array
analysis.")
(license license:lgpl2.0+)))