unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#54511] [PATCH] gnu: Add r-cytobackbone.
@ 2022-03-21 19:19 Mădălin Ionel Patrașcu
  2022-03-21 20:17 ` Maxime Devos
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Mădălin Ionel Patrașcu @ 2022-03-21 19:19 UTC (permalink / raw)
  To: 54511

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

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 55d397e5cf..6f5a040f65 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -10066,6 +10066,44 @@ (define-public r-consensusclusterplus
 cluster count and membership by stability evidence in unsupervised analysis.")
     (license license:gpl2)))
 
+;; It doesn't have a system of releases. This package depends on a bioconductor
+;; input.
+(define-public r-cytobackbone
+  (let ((commit "4c1a0a35cc5ae1f8f516127cec92351d96fe26e7") (revision "1"))
+    (package
+      (name "r-cytobackbone")
+      (version (git-version "1.0.0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/tchitchek-lab/CytoBackBone")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0ahiad14zcgdk42xzw5xryic2ibn2l8lkrcdvl2b5sz2js028yb3"))))
+      (properties `((upstream-name #{.}# "CytoBackBone")))
+      (build-system r-build-system)
+      (propagated-inputs (list r-flowcore r-flowutils r-fnn r-ggplot2
+                               r-preprocesscore))
+      (native-inputs (list r-knitr))
+      (home-page "https://github.com/tchitchek-lab/CytoBackBone")
+      (synopsis
+       "Merging of phenotype information from different cytometric profiles")
+      (description
+       "Single-cell technologies are the most suitable techniques for the
+characterization of cells by the differential expression of the molecules that
+define their roles and functions in tissues.  Among these techniques, mass
+cytometry represents a leap forward by increasing the number of available
+measurements to approximately 40 cell markers.  Thanks to this technology,
+detailed immune responses were described in several diseases.  However, the
+study of immune responses, such as that due to viral infections or auto-immune
+diseases, could be further improved by increasing the number of simultaneously
+measurable markers.  To increase this number, we designed an algorithm, named
+@code{CytoBackBone}, which combines phenotypic information of different
+cytometric profiles obtained from different cytometry panels.")
+      (license license:gpl2))))
+
 (define-public r-cytolib
   (package
     (name "r-cytolib")
-- 
2.34.0





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

* [bug#54511] [PATCH] gnu: Add r-cytobackbone.
  2022-03-21 19:19 [bug#54511] [PATCH] gnu: Add r-cytobackbone Mădălin Ionel Patrașcu
@ 2022-03-21 20:17 ` Maxime Devos
  2022-03-22  9:39   ` [bug#54511] [ext] " MadalinIonel.Patrascu
  2022-03-21 20:17 ` Maxime Devos
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Maxime Devos @ 2022-03-21 20:17 UTC (permalink / raw)
  To: Mădălin Ionel Patrașcu, 54511

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

Mădălin Ionel Patrașcu schreef op ma 21-03-2022 om 20:19 [+0100]:
> +      (properties `((upstream-name #{.}# "CytoBackBone")))

This needs to be (upstream-name . "CytoBackBone") -- #{.}# is the
symbol containing a dot, so (upstream-name #{.}# "CytoBackBone") is a
three-element list and not a pair.

Greetings,
Maxime.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

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

* [bug#54511] [PATCH] gnu: Add r-cytobackbone.
  2022-03-21 19:19 [bug#54511] [PATCH] gnu: Add r-cytobackbone Mădălin Ionel Patrașcu
  2022-03-21 20:17 ` Maxime Devos
@ 2022-03-21 20:17 ` Maxime Devos
  2022-03-22  9:41   ` [bug#54511] [ext] " MadalinIonel.Patrascu
  2022-03-21 20:19 ` Maxime Devos
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Maxime Devos @ 2022-03-21 20:17 UTC (permalink / raw)
  To: Mădălin Ionel Patrașcu, 54511

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

Mădălin Ionel Patrașcu schreef op ma 21-03-2022 om 20:19 [+0100]:
> +      (license license:gpl2))))

Could you ask upstream if they meant gpl2 or gpl2-or-later?

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

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

* [bug#54511] [PATCH] gnu: Add r-cytobackbone.
  2022-03-21 19:19 [bug#54511] [PATCH] gnu: Add r-cytobackbone Mădălin Ionel Patrașcu
  2022-03-21 20:17 ` Maxime Devos
  2022-03-21 20:17 ` Maxime Devos
@ 2022-03-21 20:19 ` Maxime Devos
  2022-03-22  9:53   ` [bug#54511] [ext] " MadalinIonel.Patrascu
  2022-03-22 10:34 ` Mădălin Ionel Patrașcu
  2022-03-29 13:02 ` bug#54511: " Ricardo Wurmus
  4 siblings, 1 reply; 9+ messages in thread
From: Maxime Devos @ 2022-03-21 20:19 UTC (permalink / raw)
  To: Mădălin Ionel Patrașcu, 54511

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

Mădălin Ionel Patrașcu schreef op ma 21-03-2022 om 20:19 [+0100]:
> +      (description
> +       "Single-cell technologies are the most suitable [...]

This doesn't seem a good description to me as it is one big word salad.
Also see ‘(guix)Synopses and Descriptions’ for some tips.

Greetings,
Maxime.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

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

* [bug#54511] [ext] Re: [bug#54511] [PATCH] gnu: Add r-cytobackbone.
  2022-03-21 20:17 ` Maxime Devos
@ 2022-03-22  9:39   ` MadalinIonel.Patrascu
  0 siblings, 0 replies; 9+ messages in thread
From: MadalinIonel.Patrascu @ 2022-03-22  9:39 UTC (permalink / raw)
  To: Maxime Devos, 54511@debbugs.gnu.org

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

Dear Maxime,



This is an artifact after I run guix style.

I missed it this time.


Thanks for spotting this!

All the best!

Mădălin Ionel Patrașcu

System Administrator
The Berlin Institute for Medical Systems Biology (BIMSB)
Max Delbrück Center (MDC)
Robert-Rössle-Straße 10
House 87, room 1.10
13125 Berlin, Germany


________________________________
From: Maxime Devos <maximedevos@telenet.be>
Sent: Monday, March 21, 2022 21:17
To: Patrascu, Madalin Ionel; 54511@debbugs.gnu.org
Subject: [ext] Re: [bug#54511] [PATCH] gnu: Add r-cytobackbone.

Mădălin Ionel Patrașcu schreef op ma 21-03-2022 om 20:19 [+0100]:
> +      (properties `((upstream-name #{.}# "CytoBackBone")))

This needs to be (upstream-name . "CytoBackBone") -- #{.}# is the
symbol containing a dot, so (upstream-name #{.}# "CytoBackBone") is a
three-element list and not a pair.

Greetings,
Maxime.

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

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

* [bug#54511] [ext] Re: [bug#54511] [PATCH] gnu: Add r-cytobackbone.
  2022-03-21 20:17 ` Maxime Devos
@ 2022-03-22  9:41   ` MadalinIonel.Patrascu
  0 siblings, 0 replies; 9+ messages in thread
From: MadalinIonel.Patrascu @ 2022-03-22  9:41 UTC (permalink / raw)
  To: Maxime Devos, 54511@debbugs.gnu.org

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

Dear Maxime,


Thanks for the suggestion!

Now, I have asked this.

https://github.com/tchitchek-lab/CytoBackBone/issues/2

[https://opengraph.githubassets.com/0db2fcd2573d74d186964b02586c50768de2bd17394f06020ea67ddcba92e496/tchitchek-lab/CytoBackBone/issues/2]<https://github.com/tchitchek-lab/CytoBackBone/issues/2>

License · Issue #2 · tchitchek-lab/CytoBackBone · GitHub<https://github.com/tchitchek-lab/CytoBackBone/issues/2>
github.com
Dear Authors, Quick question: This project is licensed under GPL-2.0-only or the license GPL-2.0-or-later can be applied? I ask this because we try to add this to Guix. https://debbugs.gnu.org/cgi/bugreport.cgi?bug=54511 Thanks and all t...



All the best!

Mădălin Ionel Patrașcu

System Administrator
The Berlin Institute for Medical Systems Biology (BIMSB)
Max Delbrück Center (MDC)
Robert-Rössle-Straße 10
House 87, room 1.10
13125 Berlin, Germany


________________________________
From: Maxime Devos <maximedevos@telenet.be>
Sent: Monday, March 21, 2022 21:17
To: Patrascu, Madalin Ionel; 54511@debbugs.gnu.org
Subject: [ext] Re: [bug#54511] [PATCH] gnu: Add r-cytobackbone.

Mădălin Ionel Patrașcu schreef op ma 21-03-2022 om 20:19 [+0100]:
> +      (license license:gpl2))))

Could you ask upstream if they meant gpl2 or gpl2-or-later?

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

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

* [bug#54511] [ext] Re: [bug#54511] [PATCH] gnu: Add r-cytobackbone.
  2022-03-21 20:19 ` Maxime Devos
@ 2022-03-22  9:53   ` MadalinIonel.Patrascu
  0 siblings, 0 replies; 9+ messages in thread
From: MadalinIonel.Patrascu @ 2022-03-22  9:53 UTC (permalink / raw)
  To: Maxime Devos, 54511@debbugs.gnu.org

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

Dear Maxime,



Bioinformatics is not my area of expertise ,and beside this, it was the end of a busy day and I wanted to finish this faster.
Sorry that I didn't treat this with more attention!


I will try to send again a path with a more readable description.


All the best!

Mădălin Ionel Patrașcu

System Administrator
The Berlin Institute for Medical Systems Biology (BIMSB)
Max Delbrück Center (MDC)
Robert-Rössle-Straße 10
House 87, room 1.10
13125 Berlin, Germany


________________________________
From: Maxime Devos <maximedevos@telenet.be>
Sent: Monday, March 21, 2022 21:19
To: Patrascu, Madalin Ionel; 54511@debbugs.gnu.org
Subject: [ext] Re: [bug#54511] [PATCH] gnu: Add r-cytobackbone.

Mădălin Ionel Patrașcu schreef op ma 21-03-2022 om 20:19 [+0100]:
> +      (description
> +       "Single-cell technologies are the most suitable [...]

This doesn't seem a good description to me as it is one big word salad.
Also see ‘(guix)Synopses and Descriptions’ for some tips.

Greetings,
Maxime.

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

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

* [bug#54511] [PATCH] gnu: Add r-cytobackbone.
  2022-03-21 19:19 [bug#54511] [PATCH] gnu: Add r-cytobackbone Mădălin Ionel Patrașcu
                   ` (2 preceding siblings ...)
  2022-03-21 20:19 ` Maxime Devos
@ 2022-03-22 10:34 ` Mădălin Ionel Patrașcu
  2022-03-29 13:02 ` bug#54511: " Ricardo Wurmus
  4 siblings, 0 replies; 9+ messages in thread
From: Mădălin Ionel Patrașcu @ 2022-03-22 10:34 UTC (permalink / raw)
  To: 54511

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

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 55d397e5cf..bf123ef7cc 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -10066,6 +10066,48 @@ (define-public r-consensusclusterplus
 cluster count and membership by stability evidence in unsupervised analysis.")
     (license license:gpl2)))
 
+;; It doesn't have a system of releases. This package depends on a bioconductor
+;; input.
+(define-public r-cytobackbone
+  (let ((commit "4c1a0a35cc5ae1f8f516127cec92351d96fe26e7") (revision "1"))
+    (package
+      (name "r-cytobackbone")
+      (version (git-version "1.0.0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/tchitchek-lab/CytoBackBone")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0ahiad14zcgdk42xzw5xryic2ibn2l8lkrcdvl2b5sz2js028yb3"))))
+      (properties `((upstream-name . "CytoBackBone")))
+      (build-system r-build-system)
+      (propagated-inputs
+       (list r-flowcore
+             r-flowutils
+             r-fnn
+             r-ggplot2
+             r-preprocesscore))
+      (native-inputs (list r-knitr))
+      (home-page "https://github.com/tchitchek-lab/CytoBackBone")
+      (synopsis
+       "Merging of phenotype information from different cytometric profiles")
+      (description
+       "This package implements an algorithm which increases the number of
+simultaneously measurable markers and in this way helps with study of the
+immune responses.  Thus, the present algorithm, named @code{CytoBackBone},
+allows combining phenotypic information of cells from different cytometric
+profiles obtained from different cytometry panels.  This computational approach
+is based on the principle that each cell has its own phenotypic and functional
+characteristics that can be used as an identification card.
+@code{CytoBackBone} uses a set of predefined markers, that we call the
+backbone, to define this identification card.  The phenotypic information of
+cells with similar identification cards in the different cytometric profiles is
+then merged.")
+      (license license:gpl2))))
+
 (define-public r-cytolib
   (package
     (name "r-cytolib")
-- 
2.34.0





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

* bug#54511: [PATCH] gnu: Add r-cytobackbone.
  2022-03-21 19:19 [bug#54511] [PATCH] gnu: Add r-cytobackbone Mădălin Ionel Patrașcu
                   ` (3 preceding siblings ...)
  2022-03-22 10:34 ` Mădălin Ionel Patrașcu
@ 2022-03-29 13:02 ` Ricardo Wurmus
  4 siblings, 0 replies; 9+ messages in thread
From: Ricardo Wurmus @ 2022-03-29 13:02 UTC (permalink / raw)
  To: 54511-done

I moved this to bioinformatics.scm.

Thanks!

-- 
Ricardo




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

end of thread, other threads:[~2022-03-29 13:04 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-21 19:19 [bug#54511] [PATCH] gnu: Add r-cytobackbone Mădălin Ionel Patrașcu
2022-03-21 20:17 ` Maxime Devos
2022-03-22  9:39   ` [bug#54511] [ext] " MadalinIonel.Patrascu
2022-03-21 20:17 ` Maxime Devos
2022-03-22  9:41   ` [bug#54511] [ext] " MadalinIonel.Patrascu
2022-03-21 20:19 ` Maxime Devos
2022-03-22  9:53   ` [bug#54511] [ext] " MadalinIonel.Patrascu
2022-03-22 10:34 ` Mădălin Ionel Patrașcu
2022-03-29 13:02 ` bug#54511: " 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).