diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-12-01 08:34:31 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-12-03 17:00:00 +0100 |
commit | f8bbfe1ea962460204864e300c4b33afa15c1d44 (patch) | |
tree | e4c9ebe50ff02c422295c8378ff7628ff790dd22 /gnu | |
parent | 9e72ac0e0c288192443f494ccc82fac984a6dd2f (diff) | |
download | guix-f8bbfe1ea962460204864e300c4b33afa15c1d44.tar.gz guix-f8bbfe1ea962460204864e300c4b33afa15c1d44.zip |
gnu: Add r-faahko.
* gnu/packages/bioconductor.scm (r-faahko): New variable.
Change-Id: I70cd662bdd202ac78f5f25235fb7b9b9e7d60b37
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioconductor.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index dc5b08aec4..77f95366d1 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -2369,6 +2369,30 @@ only the information for chromosome 21. Data is stored in the @code{BigWig} format and is used for examples in other packages.") (license license:artistic2.0))) +(define-public r-faahko + (package + (name "r-faahko") + (version "1.46.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "faahKO" version + 'experiment)) + (sha256 + (base32 "1i52f5anjvag3n6hn1w6wyjc81h81rfb5a7w1lcnkg4q87g149nm")))) + (properties `((upstream-name . "faahKO"))) + (build-system r-build-system) + (propagated-inputs (list r-xcms)) + (home-page "http://dx.doi.org/10.1021/bi0480335") + (synopsis "Saghatelian et al. (2004) FAAH knockout LC/MS data") + (description + "This package includes positive ionization mode data in @code{NetCDF} +file format. Centroided subset from 200-600 m/z and 2500-4500 seconds. Data +originally reported in \"Assignment of Endogenous Substrates to Enzymes by +Global Metabolite Profiling\" Biochemistry; 2004; 43(45). It also includes +detected peaks in an @code{xcmsSet}.") + (license license:lgpl2.0+))) + (define-public r-flowsorted-blood-450k (package (name "r-flowsorted-blood-450k") |