diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-13 13:57:37 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-13 22:41:37 +0100 |
commit | 303c7d1dff7e0a2f91591489c83fb0dfa15ca8a8 (patch) | |
tree | ae2ba5363319e2f09a10c3edea8b3af1d24c5bbc /gnu | |
parent | 59beb0d23feaa046646bfcc84acb121d10fb2fb0 (diff) | |
download | guix-303c7d1dff7e0a2f91591489c83fb0dfa15ca8a8.tar guix-303c7d1dff7e0a2f91591489c83fb0dfa15ca8a8.tar.gz |
gnu: Add r-aasea.
* gnu/packages/cran.scm (r-aasea): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 984b8b8858..3b7cb48038 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -16143,3 +16143,35 @@ tools for help in data interpretation.") "This package creates D3 JavaScript network, tree, dendrogram, and Sankey graphs from R.") (license license:gpl3+))) + +(define-public r-aasea + (package + (name "r-aasea") + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "aaSEA" version)) + (sha256 + (base32 + "0him4r8qyp0xssgrmdxjs45yn4d28h5anv4jyxxbbs9phb0m6j3h")))) + (properties `((upstream-name . "aaSEA"))) + (build-system r-build-system) + (propagated-inputs + `(("r-bios2cor" ,r-bios2cor) + ("r-dt" ,r-dt) + ("r-hmisc" ,r-hmisc) + ("r-magrittr" ,r-magrittr) + ("r-networkd3" ,r-networkd3) + ("r-plotly" ,r-plotly) + ("r-seqinr" ,r-seqinr) + ("r-shiny" ,r-shiny) + ("r-shinydashboard" ,r-shinydashboard))) + (home-page "https://cran.r-project.org/web/packages/aaSEA/") + (synopsis "Amino acid substitution effect analyzer") + (description + "Given a protein multiple sequence alignment, it is a daunting task to +assess the effects of substitutions along sequence length. The aaSEA package +is intended to help researchers to rapidly analyze property changes caused by +single, multiple and correlated amino acid substitutions in proteins.") + (license license:gpl3))) |