mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: r-ldheatmap: Fix missing variable.
This is a follow-up of 61ec8928c7
.
* gnu/packages/cran.scm (r-ldheatmap)[propagated-inputs]: Use 'module-ref' to
resolve r-snpstats variable which is located in (gnu package bioinformatics)
that cannot be included due to a circular dependency.
This commit is contained in:
parent
610cd6a170
commit
0c8bb20b7c
1 changed files with 3 additions and 1 deletions
|
@ -14734,7 +14734,9 @@ (define-public r-ldheatmap
|
|||
(propagated-inputs
|
||||
`(("r-genetics" ,r-genetics)
|
||||
("r-rcpp" ,r-rcpp)
|
||||
("r-snpstats" ,r-snpstats)))
|
||||
("r-snpstats" ,(module-ref
|
||||
(resolve-interface '(gnu packages bioconductor))
|
||||
'r-snpstats))))
|
||||
(home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
|
||||
(synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue