From 2cc511083239d5579aafef6a9dea03f36a1c1b2b Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 4 Jul 2018 17:43:33 +0200 Subject: gnu: Add r-genelendatabase. * gnu/packages/bioconductor.scm (r-genelendatabase): New variable. --- gnu/packages/bioconductor.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'gnu/packages/bioconductor.scm') diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index a6a8216ccb..5e08143f30 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -167,6 +167,35 @@ Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by default." ) (license license:artistic2.0))) +(define-public r-genelendatabase + (package + (name "r-genelendatabase") + (version "1.16.0") + (source + (origin + (method url-fetch) + ;; We cannot use bioconductor-uri here because this tarball is + ;; located under "data/experiment/" instead of "bioc/". + (uri (string-append "https://bioconductor.org/packages/" + "release/data/experiment/src/contrib" + "/geneLenDataBase_" version ".tar.gz")) + (sha256 + (base32 + "07mmmn53kb7v14msc13dsbm8ghssbvwcrhifrk15hn37bw2p4ja5")))) + (properties + `((upstream-name . "geneLenDataBase"))) + (build-system r-build-system) + (propagated-inputs + `(("r-rtracklayer" ,r-rtracklayer) + ("r-genomicfeatures" ,r-genomicfeatures))) + (home-page "https://bioconductor.org/packages/geneLenDataBase/") + (synopsis "Lengths of mRNA transcripts for a number of genomes") + (description + "This package provides the lengths of mRNA transcripts for a number of +genomes and gene ID formats, largely based on the UCSC table browser.") + (license license:lgpl2.0+))) + + (define-public r-hpar (package (name "r-hpar") -- cgit 1.4.1 From 27c51606ae44f682dfba5363757bead223b57c5d Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 4 Jul 2018 17:43:56 +0200 Subject: gnu: Add r-ctc. * gnu/packages/bioconductor.scm (r-ctc): New variable. --- gnu/packages/bioconductor.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'gnu/packages/bioconductor.scm') diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 5e08143f30..882e3e14dd 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -704,3 +704,23 @@ experiments.") such as ChIA-PET/Hi-C, annotating genomic features with interaction information and producing various plots and statistics.") (license license:gpl3))) + +(define-public r-ctc + (package + (name "r-ctc") + (version "1.54.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "ctc" version)) + (sha256 + (base32 + "0sadplm4n9n3z6inmn6y3d6qbr4hllljqh700x5fygrnfacnckk9")))) + (build-system r-build-system) + (propagated-inputs `(("r-amap" ,r-amap))) + (home-page "https://bioconductor.org/packages/ctc/") + (synopsis "Cluster and tree conversion") + (description + "This package provides tools for exporting and importing classification +trees and clusters to other programs.") + (license license:gpl2))) -- cgit 1.4.1 From 5da0e1428568be137054cb1fe220c28cd42f9eec Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 4 Jul 2018 17:44:47 +0200 Subject: gnu: Add r-goseq. * gnu/packages/bioconductor.scm (r-goseq): New variable. --- gnu/packages/bioconductor.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'gnu/packages/bioconductor.scm') diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 882e3e14dd..40ac1d2015 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -724,3 +724,29 @@ information and producing various plots and statistics.") "This package provides tools for exporting and importing classification trees and clusters to other programs.") (license license:gpl2))) + +(define-public r-goseq + (package + (name "r-goseq") + (version "1.32.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "goseq" version)) + (sha256 + (base32 + "0xmbb8ma32lrfy810r82y34gkspq4fqiqxykic9j4rq9rg9n9x2l")))) + (build-system r-build-system) + (propagated-inputs + `(("r-annotationdbi" ,r-annotationdbi) + ("r-biasedurn" ,r-biasedurn) + ("r-biocgenerics" ,r-biocgenerics) + ("r-genelendatabase" ,r-genelendatabase) + ("r-go-db" ,r-go-db) + ("r-mgcv" ,r-mgcv))) + (home-page "https://bioconductor.org/packages/goseq/") + (synopsis "Gene Ontology analyser for RNA-seq and other length biased data") + (description + "This package provides tools to detect Gene Ontology and/or other user +defined categories which are over/under represented in RNA-seq data.") + (license license:lgpl2.0+))) -- cgit 1.4.1 From f4235c0eca46a59c3a71e9977efcbed6248901cf Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 4 Jul 2018 17:45:08 +0200 Subject: gnu: Add r-glimma. * gnu/packages/bioconductor.scm (r-glimma): New variable. --- gnu/packages/bioconductor.scm | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) (limited to 'gnu/packages/bioconductor.scm') diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 40ac1d2015..611fd99336 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -28,7 +28,8 @@ #:use-module (gnu packages cran) #:use-module (gnu packages compression) #:use-module (gnu packages graph) - #:use-module (gnu packages statistics)) + #:use-module (gnu packages statistics) + #:use-module (gnu packages web)) (define-public r-bsgenome-dmelanogaster-ucsc-dm6 (package @@ -750,3 +751,30 @@ trees and clusters to other programs.") "This package provides tools to detect Gene Ontology and/or other user defined categories which are over/under represented in RNA-seq data.") (license license:lgpl2.0+))) + +(define-public r-glimma + (package + (name "r-glimma") + (version "1.8.2") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "Glimma" version)) + (sha256 + (base32 + "0kfia60vrlys6amdchdix01iwbkwyb7nfjqn5hczsxp8rhmbg25s")))) + (properties `((upstream-name . "Glimma"))) + (build-system r-build-system) + (propagated-inputs + `(("r-edger" ,r-edger) + ("r-jsonlite" ,r-jsonlite) + ("r-s4vectors" ,r-s4vectors))) + (home-page "https://github.com/Shians/Glimma") + (synopsis "Interactive HTML graphics") + (description + "This package generates interactive visualisations for analysis of +RNA-sequencing data using output from limma, edgeR or DESeq2 packages in an +HTML page. The interactions are built on top of the popular static +representations of analysis results in order to provide additional +information.") + (license license:lgpl3))) -- cgit 1.4.1 From aa388dc7b9ac5a0836507b24cde377762d64c759 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 4 Jul 2018 17:45:27 +0200 Subject: gnu: Add r-rots. * gnu/packages/bioconductor.scm (r-rots): New variable. --- gnu/packages/bioconductor.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'gnu/packages/bioconductor.scm') diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 611fd99336..dfb0fe6d5a 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -778,3 +778,27 @@ HTML page. The interactions are built on top of the popular static representations of analysis results in order to provide additional information.") (license license:lgpl3))) + +(define-public r-rots + (package + (name "r-rots") + (version "1.8.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "ROTS" version)) + (sha256 + (base32 + "12jvdqanyk86ihpcylp105zip22y0gkbksmyxy00q7iad0jhaqp3")))) + (properties `((upstream-name . "ROTS"))) + (build-system r-build-system) + (propagated-inputs + `(("r-biobase" ,r-biobase) + ("r-rcpp" ,r-rcpp))) + (home-page "https://bioconductor.org/packages/ROTS/") + (synopsis "Reproducibility-Optimized Test Statistic") + (description + "This package provides tools for calculating the +@dfn{Reproducibility-Optimized Test Statistic} (ROTS) for differential testing +in omics data.") + (license license:gpl2+))) -- cgit 1.4.1