mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: r-geneplotter: Move to (gnu packages bioconductor).
* gnu/packages/bioinformatics.scm (r-geneplotter): Move from here... * gnu/packages/bioconductor.scm (r-geneplotter): ...to here.
This commit is contained in:
parent
9f8698ad1c
commit
bfb93b4889
2 changed files with 26 additions and 26 deletions
|
@ -1,7 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2016, 2017, 2018 Roel Janssen <roel@gnu.org>
|
||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -349,6 +349,31 @@ (define-public r-regioner
|
|||
region sets and other genomic features.")
|
||||
(license license:artistic2.0)))
|
||||
|
||||
(define-public r-geneplotter
|
||||
(package
|
||||
(name "r-geneplotter")
|
||||
(version "1.60.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (bioconductor-uri "geneplotter" version))
|
||||
(sha256
|
||||
(base32
|
||||
"10khr0pznxf3m0f5gzck9ymljrwcv3vamfmpskd51yjh36lhllqz"))))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-annotate" ,r-annotate)
|
||||
("r-annotationdbi" ,r-annotationdbi)
|
||||
("r-biobase" ,r-biobase)
|
||||
("r-biocgenerics" ,r-biocgenerics)
|
||||
("r-lattice" ,r-lattice)
|
||||
("r-rcolorbrewer" ,r-rcolorbrewer)))
|
||||
(home-page "https://bioconductor.org/packages/geneplotter")
|
||||
(synopsis "Graphics functions for genomic data")
|
||||
(description
|
||||
"This package provides functions for plotting genomic data.")
|
||||
(license license:artistic2.0)))
|
||||
|
||||
(define-public r-diffbind
|
||||
(package
|
||||
(name "r-diffbind")
|
||||
|
|
|
@ -6347,31 +6347,6 @@ (define-public r-centipede
|
|||
information as possible.")
|
||||
(license (list license:gpl2+ license:gpl3+))))
|
||||
|
||||
(define-public r-geneplotter
|
||||
(package
|
||||
(name "r-geneplotter")
|
||||
(version "1.60.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (bioconductor-uri "geneplotter" version))
|
||||
(sha256
|
||||
(base32
|
||||
"10khr0pznxf3m0f5gzck9ymljrwcv3vamfmpskd51yjh36lhllqz"))))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-annotate" ,r-annotate)
|
||||
("r-annotationdbi" ,r-annotationdbi)
|
||||
("r-biobase" ,r-biobase)
|
||||
("r-biocgenerics" ,r-biocgenerics)
|
||||
("r-lattice" ,r-lattice)
|
||||
("r-rcolorbrewer" ,r-rcolorbrewer)))
|
||||
(home-page "https://bioconductor.org/packages/geneplotter")
|
||||
(synopsis "Graphics functions for genomic data")
|
||||
(description
|
||||
"This package provides functions for plotting genomic data.")
|
||||
(license license:artistic2.0)))
|
||||
|
||||
(define-public r-genefilter
|
||||
(package
|
||||
(name "r-genefilter")
|
||||
|
|
Loading…
Reference in a new issue