diff options
author | zimoun <zimon.toutoune@gmail.com> | 2021-05-21 22:25:42 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-05-31 15:35:30 +0200 |
commit | 14fb30e5f68dca6c64508ce3accce0a1722b118b (patch) | |
tree | 83c6f11cc7b8adff20b0e3cddf2e7844f7e9c9cb | |
parent | b832fddbfc83dfc1b13a4f113a9d3f86754e4c57 (diff) | |
download | guix-14fb30e5f68dca6c64508ce3accce0a1722b118b.tar.gz |
gnu: r-seqpattern: Move to (gnu packages bioconductor).
* gnu/packages/bioinformatics.scm (r-seqpattern): Move from here... * gnu/packages/bioconductor.scm (r-seqpattern): ...to here.
-rw-r--r-- | gnu/packages/bioconductor.scm | 27 | ||||
-rw-r--r-- | gnu/packages/bioinformatics.scm | 27 |
2 files changed, 27 insertions, 27 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index a4a3fbd39a..d386f2270e 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -2860,6 +2860,33 @@ differential expression analysis, RNAseq data and related problems.") ;; Any version of the LGPL (license license:lgpl3+))) +(define-public r-seqpattern + (package + (name "r-seqpattern") + (version "1.22.0") + (source (origin + (method url-fetch) + (uri (bioconductor-uri "seqPattern" version)) + (sha256 + (base32 + "0j68n6fwycxjpl2va5fw7ajb123n758s2pq997d76dysxghmrlzq")))) + (properties + `((upstream-name . "seqPattern"))) + (build-system r-build-system) + (propagated-inputs + `(("r-biostrings" ,r-biostrings) + ("r-genomicranges" ,r-genomicranges) + ("r-iranges" ,r-iranges) + ("r-kernsmooth" ,r-kernsmooth) + ("r-plotrix" ,r-plotrix))) + (home-page "https://bioconductor.org/packages/seqPattern") + (synopsis "Visualising oligonucleotide patterns and motif occurrences") + (description + "This package provides tools to visualize oligonucleotide patterns and +sequence motif occurrences across a large set of sequences centred at a common +reference point and sorted by a user defined feature.") + (license license:gpl3+))) + (define-public r-shortread (package (name "r-shortread") diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 566370c37f..fa57451bdc 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -7976,33 +7976,6 @@ including VCF header and contents in RDF and JSON.") information about the latest version of the Gene Ontologies.") (license license:artistic2.0))) -(define-public r-seqpattern - (package - (name "r-seqpattern") - (version "1.22.0") - (source (origin - (method url-fetch) - (uri (bioconductor-uri "seqPattern" version)) - (sha256 - (base32 - "0j68n6fwycxjpl2va5fw7ajb123n758s2pq997d76dysxghmrlzq")))) - (properties - `((upstream-name . "seqPattern"))) - (build-system r-build-system) - (propagated-inputs - `(("r-biostrings" ,r-biostrings) - ("r-genomicranges" ,r-genomicranges) - ("r-iranges" ,r-iranges) - ("r-kernsmooth" ,r-kernsmooth) - ("r-plotrix" ,r-plotrix))) - (home-page "https://bioconductor.org/packages/seqPattern") - (synopsis "Visualising oligonucleotide patterns and motif occurrences") - (description - "This package provides tools to visualize oligonucleotide patterns and -sequence motif occurrences across a large set of sequences centred at a common -reference point and sorted by a user defined feature.") - (license license:gpl3+))) - (define-public r-spp (package (name "r-spp") |