unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#51513] Add r-xina and it's dependencies: r-stringdb and r-alluvial
@ 2021-10-30 15:52 MadalinIonel.Patrascu
  2021-10-30 15:55 ` [bug#51513] [PATCH 1/3] gnu: Add r-alluvial Mădălin Ionel Patrașcu
  0 siblings, 1 reply; 5+ messages in thread
From: MadalinIonel.Patrascu @ 2021-10-30 15:52 UTC (permalink / raw)
  To: 51513

[-- Attachment #1: Type: text/plain, Size: 2 bytes --]



[-- Attachment #2: Type: text/html, Size: 368 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#51513] [PATCH 1/3] gnu: Add r-alluvial.
  2021-10-30 15:52 [bug#51513] Add r-xina and it's dependencies: r-stringdb and r-alluvial MadalinIonel.Patrascu
@ 2021-10-30 15:55 ` Mădălin Ionel Patrașcu
  2021-10-30 15:55   ` [bug#51513] [PATCH 2/3] gnu: Add r-stringdb Mădălin Ionel Patrașcu
                     ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Mădălin Ionel Patrașcu @ 2021-10-30 15:55 UTC (permalink / raw)
  To: 51513; +Cc: rekado, Mădălin Ionel Patrașcu

* gnu/packages/cran.scm (r-alluvial): New variable.
---
 gnu/packages/cran.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 792ea2a75b..0e79ea0ef2 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7070,6 +7070,26 @@ (define-public r-algdesign
 and within plot factors interact.")
     (license license:gpl2+)))
 
+(define-public r-alluvial
+(package
+  (name "r-alluvial")
+  (version "0.1-2")
+  (source
+    (origin
+      (method url-fetch)
+      (uri (cran-uri "alluvial" version))
+      (sha256
+        (base32 "039frwrsxq1lb97s7vf2vbyyadimkigs628ymym06fxka53drdkp"))))
+  (properties `((upstream-name . "alluvial")))
+  (build-system r-build-system)
+  (native-inputs `(("r-knitr" ,r-knitr)))
+  (home-page "https://github.com/mbojan/alluvial")
+  (synopsis "Creating parallel sets plots (Alluvial Diagrams)")
+  (description
+    "The package @code{r-alluvial} creates alluvial diagrams (also known as
+parallel sets plots) for multivariate and time series-like data.")
+  (license license:expat)))
+
 (define-public r-signal
   (package
     (name "r-signal")
-- 
2.33.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#51513] [PATCH 2/3] gnu: Add r-stringdb.
  2021-10-30 15:55 ` [bug#51513] [PATCH 1/3] gnu: Add r-alluvial Mădălin Ionel Patrașcu
@ 2021-10-30 15:55   ` Mădălin Ionel Patrașcu
  2021-10-30 15:55   ` [bug#51513] [PATCH 3/3] gnu: Add r-xina Mădălin Ionel Patrașcu
  2021-11-27  9:35   ` bug#51513: [PATCH 1/3] gnu: Add r-alluvial Ricardo Wurmus
  2 siblings, 0 replies; 5+ messages in thread
From: Mădălin Ionel Patrașcu @ 2021-10-30 15:55 UTC (permalink / raw)
  To: 51513; +Cc: rekado, Mădălin Ionel Patrașcu

* gnu/packages/bioconductor.scm (r-stringdb): New variable.
---
 gnu/packages/bioconductor.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 90a0e1f288..f82427f831 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -4337,6 +4337,39 @@ (define-public r-slingshot
 graph construction.")
    (license license:artistic2.0)))
 
+(define-public r-stringdb
+  (package
+    (name "r-stringdb")
+    (version "2.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (bioconductor-uri "STRINGdb" version))
+       (sha256
+        (base32 "1hvb73anhbf1g82nn5m11s783z6ihvlavf7p30w29qggxggnl6lm"))))
+    (properties `((upstream-name . "STRINGdb")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-gplots" ,r-gplots)
+       ("r-hash" ,r-hash)
+       ("r-igraph" ,r-igraph)
+       ("r-plotrix" ,r-plotrix)
+       ("r-plyr" ,r-plyr)
+       ("r-png" ,r-png)
+       ("r-rcolorbrewer" ,r-rcolorbrewer)
+       ("r-rcurl" ,r-rcurl)
+       ("r-sqldf" ,r-sqldf)))
+    (home-page "https://git.bioconductor.org/packages/STRINGdb")
+    (synopsis "Searching tool for the retrieval of interacting proteins database")
+    (description
+     "The @code{STRINGdb} package provides a R interface to the STRING
+protein-protein interactions database.  STRING (https://www.string-db.org) is a
+database of known and predicted protein-protein interactions.  The interactions
+include direct (physical) and indirect (functional) associations.  Each
+interaction is associated with a combined confidence score that integrates the
+various evidences.")
+    (license license:gpl2)))
+
 (define-public r-structuralvariantannotation
   (package
     (name "r-structuralvariantannotation")
-- 
2.33.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#51513] [PATCH 3/3] gnu: Add r-xina.
  2021-10-30 15:55 ` [bug#51513] [PATCH 1/3] gnu: Add r-alluvial Mădălin Ionel Patrașcu
  2021-10-30 15:55   ` [bug#51513] [PATCH 2/3] gnu: Add r-stringdb Mădălin Ionel Patrașcu
@ 2021-10-30 15:55   ` Mădălin Ionel Patrașcu
  2021-11-27  9:35   ` bug#51513: [PATCH 1/3] gnu: Add r-alluvial Ricardo Wurmus
  2 siblings, 0 replies; 5+ messages in thread
From: Mădălin Ionel Patrașcu @ 2021-10-30 15:55 UTC (permalink / raw)
  To: 51513; +Cc: rekado, Mădălin Ionel Patrașcu

* gnu/packages/bioconductor.scm (r-xina): New variable.
---
 gnu/packages/bioconductor.scm | 36 +++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index f82427f831..a232c3fe61 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -4660,6 +4660,42 @@ (define-public r-vsn
 and specific in detecting differential transcription.")
     (license license:artistic2.0)))
 
+(define-public r-xina
+  (package
+    (name "r-xina")
+    (version "1.12.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (bioconductor-uri "XINA" version))
+       (sha256
+        (base32 "14j1rn3p7i0rlqkbbg0a6pyhb97ifzvsbw6vfxw9pna7zv7rbhsp"))))
+    (properties `((upstream-name . "XINA")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-alluvial" ,r-alluvial)
+       ("r-ggplot2" ,r-ggplot2)
+       ("r-gridextra" ,r-gridextra)
+       ("r-igraph" ,r-igraph)
+       ("r-mclust" ,r-mclust)
+       ("r-plyr" ,r-plyr)
+       ("r-stringdb" ,r-stringdb)))
+    (native-inputs `(("r-knitr" ,r-knitr)))
+    (home-page "https://git.bioconductor.org/packages/XINA")
+    (synopsis "Identifying proteins that exhibit similar patterns")
+    (description
+     "The aim of @code{XINA} is to determine which proteins exhibit similar
+patterns within and across experimental conditions, since proteins with
+co-abundance patterns may have common molecular functions.  @code{XINA} imports
+multiple datasets, tags dataset in silico, and combines the data for subsequent
+subgrouping into multiple clusters.  The result is a single output depicting
+the variation across all conditions.  @code{XINA}, not only extracts
+coabundance profiles within and across experiments, but also incorporates
+protein-protein interaction databases and integrative resources such as
+@dfn{Kyoto encyclopedia of genes and genomes} (KEGG) to infer interactors and
+molecular functions, respectively, and produces intuitive graphical outputs.")
+    (license license:gpl3)))
+
 (define-public r-xvector
   (package
     (name "r-xvector")
-- 
2.33.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#51513: [PATCH 1/3] gnu: Add r-alluvial.
  2021-10-30 15:55 ` [bug#51513] [PATCH 1/3] gnu: Add r-alluvial Mădălin Ionel Patrașcu
  2021-10-30 15:55   ` [bug#51513] [PATCH 2/3] gnu: Add r-stringdb Mădălin Ionel Patrașcu
  2021-10-30 15:55   ` [bug#51513] [PATCH 3/3] gnu: Add r-xina Mădălin Ionel Patrașcu
@ 2021-11-27  9:35   ` Ricardo Wurmus
  2 siblings, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2021-11-27  9:35 UTC (permalink / raw)
  To: Mădălin Ionel Patrașcu; +Cc: 51513-done

Thanks for the patches!  I applied them all with minor changes to 
indentation and description.

-- 
Ricardo




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-11-27  9:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-30 15:52 [bug#51513] Add r-xina and it's dependencies: r-stringdb and r-alluvial MadalinIonel.Patrascu
2021-10-30 15:55 ` [bug#51513] [PATCH 1/3] gnu: Add r-alluvial Mădălin Ionel Patrașcu
2021-10-30 15:55   ` [bug#51513] [PATCH 2/3] gnu: Add r-stringdb Mădălin Ionel Patrașcu
2021-10-30 15:55   ` [bug#51513] [PATCH 3/3] gnu: Add r-xina Mădălin Ionel Patrașcu
2021-11-27  9:35   ` bug#51513: [PATCH 1/3] gnu: Add r-alluvial Ricardo Wurmus

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).