[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
51/54: gnu: r-phantompeakqualtools: Let-bind commit, set revision to 1.
From: |
guix-commits |
Subject: |
51/54: gnu: r-phantompeakqualtools: Let-bind commit, set revision to 1. |
Date: |
Mon, 31 May 2021 10:03:21 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit b0ecd6cea90838018744bfad15662abf8f1b0025
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon May 31 15:46:30 2021 +0200
gnu: r-phantompeakqualtools: Let-bind commit, set revision to 1.
* gnu/packages/bioinformatics.scm (r-phantompeakqualtools): Bind the commit
outside of the package value.
[version]: Use git-version.
[source]: Use git-file-name.
---
gnu/packages/bioinformatics.scm | 86 +++++++++++++++++++++--------------------
1 file changed, 44 insertions(+), 42 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 11dbad5..a7ff938 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -7977,51 +7977,53 @@ other functional sequencing data.")
(license license:gpl2)))
(define-public r-phantompeakqualtools
- (package
- (name "r-phantompeakqualtools")
- (version "1.2.2")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/kundajelab/phantompeakqualtools")
- (commit "8d2b2d18c686d894ef5908b37da7adf72a07ef42")))
- (file-name (string-append name "-" version "-checkout"))
- (sha256
- (base32
- "00anrvcwsp02d98qhj1xpj85644h2pp4kfzq6dgbmwmdr6jvy7p4"))))
- (build-system gnu-build-system)
- (arguments
- `(#:tests? #f ; There are no tests.
- #:phases
- (modify-phases %standard-phases
- (delete 'configure)
- (delete 'build)
- (replace 'install
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (let ((script (string-append (assoc-ref outputs "out")
- "/share/scripts")))
- (install-file "run_spp.R" script)))))))
- (inputs
- `(("r" ,r-minimal)))
- (propagated-inputs
- `(("r-catools" ,r-catools)
- ("r-snow" ,r-snow)
- ("r-snowfall" ,r-snowfall)
- ("r-bitops" ,r-bitops)
- ("r-rsamtools" ,r-rsamtools)
- ("r-spp" ,r-spp)
- ("gawk" ,gawk)
- ("samtools" ,samtools)
- ("boost" ,boost)
- ("gzip" ,gzip)))
- (home-page "https://github.com/kundajelab/phantompeakqualtools")
- (synopsis "Informative enrichment for ChIP-seq data")
- (description "This package computes informative enrichment and quality
+ (let ((commit "8d2b2d18c686d894ef5908b37da7adf72a07ef42")
+ (revision "1"))
+ (package
+ (name "r-phantompeakqualtools")
+ (version (git-version "1.2.2" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kundajelab/phantompeakqualtools")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "00anrvcwsp02d98qhj1xpj85644h2pp4kfzq6dgbmwmdr6jvy7p4"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; There are no tests.
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure)
+ (delete 'build)
+ (replace 'install
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let ((script (string-append (assoc-ref outputs "out")
+ "/share/scripts")))
+ (install-file "run_spp.R" script)))))))
+ (inputs
+ `(("r" ,r-minimal)))
+ (propagated-inputs
+ `(("r-catools" ,r-catools)
+ ("r-snow" ,r-snow)
+ ("r-snowfall" ,r-snowfall)
+ ("r-bitops" ,r-bitops)
+ ("r-rsamtools" ,r-rsamtools)
+ ("r-spp" ,r-spp)
+ ("gawk" ,gawk)
+ ("samtools" ,samtools)
+ ("boost" ,boost)
+ ("gzip" ,gzip)))
+ (home-page "https://github.com/kundajelab/phantompeakqualtools")
+ (synopsis "Informative enrichment for ChIP-seq data")
+ (description "This package computes informative enrichment and quality
measures for ChIP-seq/DNase-seq/FAIRE-seq/MNase-seq data. It can also be
used to obtain robust estimates of the predominant fragment length or
characteristic tag shift values in these assays.")
- (license license:bsd-3)))
+ (license license:bsd-3))))
(define-public r-r4rna
(package
- 20/54: gnu: r-annotationhub: Move to (gnu packages bioconductor)., (continued)
- 20/54: gnu: r-annotationhub: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 22/54: gnu: r-affy: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 32/54: gnu: r-ensembldb: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 33/54: gnu: r-mzr: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 34/54: gnu: r-protgenerics: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 43/54: gnu: r-tximport: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 28/54: gnu: r-organismdbi: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 42/54: gnu: r-mutationalpatterns: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 46/54: gnu: r-rhdf5: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 48/54: gnu: r-copyhelper: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 51/54: gnu: r-phantompeakqualtools: Let-bind commit, set revision to 1.,
guix-commits <=
- 24/54: gnu: r-gage: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 26/54: gnu: r-genomicfiles: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 27/54: gnu: r-dirichletmultinomial: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 31/54: gnu: r-biovizbase: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 36/54: gnu: r-motifrg: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 39/54: gnu: r-rhtslib: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 23/54: gnu: r-keggrest: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 30/54: gnu: r-vsn: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 35/54: gnu: r-sva: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 38/54: gnu: r-zlibbioc: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31