gnu: r-absfiltergsea: Move to (gnu packages cran).

* gnu/packages/bioinformatics.scm (r-absfiltergsea): Move from here...
* gnu/packages/cran.scm (r-absfiltergsea): ...to here.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
zimoun 2020-09-11 20:08:48 +02:00 committed by Ricardo Wurmus
parent 77c7394086
commit d4e2ec1b8a
No known key found for this signature in database
GPG key ID: 197A5888235FACAC
2 changed files with 27 additions and 27 deletions

View file

@ -14083,33 +14083,6 @@ (define-public poretools
of the Hierarchical Data Format (HDF5) standard.") of the Hierarchical Data Format (HDF5) standard.")
(license license:expat)))) (license license:expat))))
(define-public r-absfiltergsea
(package
(name "r-absfiltergsea")
(version "1.5.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "AbsFilterGSEA" version))
(sha256
(base32 "15srxkxsvn38kd5frdrwfdf0ad8gskrd0h01wmdf9hglq8fjrp7w"))))
(properties `((upstream-name . "AbsFilterGSEA")))
(build-system r-build-system)
(propagated-inputs
`(("r-biobase" ,r-biobase)
("r-deseq" ,r-deseq)
("r-limma" ,r-limma)
("r-rcpp" ,r-rcpp)
("r-rcpparmadillo" ,r-rcpparmadillo)))
(home-page "https://cran.r-project.org/web/packages/AbsFilterGSEA/")
(synopsis "Improved false positive control of gene-permuting with absolute filtering")
(description
"This package provides a function that performs gene-permuting of a gene-set
enrichment analysis (GSEA) calculation with or without the absolute filtering.
Without filtering, users can perform (original) two-tailed or one-tailed
absolute GSEA.")
(license license:gpl2)))
(define-public jamm (define-public jamm
(package (package
(name "jamm") (name "jamm")

View file

@ -24555,3 +24555,30 @@ (define-public r-diversitree
include Markov models of discrete and continuous trait evolution and constant include Markov models of discrete and continuous trait evolution and constant
rate speciation and extinction.") rate speciation and extinction.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public r-absfiltergsea
(package
(name "r-absfiltergsea")
(version "1.5.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "AbsFilterGSEA" version))
(sha256
(base32 "15srxkxsvn38kd5frdrwfdf0ad8gskrd0h01wmdf9hglq8fjrp7w"))))
(properties `((upstream-name . "AbsFilterGSEA")))
(build-system r-build-system)
(propagated-inputs
`(("r-biobase" ,r-biobase)
("r-deseq" ,r-deseq)
("r-limma" ,r-limma)
("r-rcpp" ,r-rcpp)
("r-rcpparmadillo" ,r-rcpparmadillo)))
(home-page "https://cran.r-project.org/web/packages/AbsFilterGSEA/")
(synopsis "Improved false positive control of gene-permuting with absolute filtering")
(description
"This package provides a function that performs gene-permuting of a gene-set
enrichment analysis (GSEA) calculation with or without the absolute filtering.
Without filtering, users can perform (original) two-tailed or one-tailed
absolute GSEA.")
(license license:gpl2)))