me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-biosequences.

* gnu/packages/julia-xyz.scm (julia-biosequences): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
zimoun 2022-01-04 23:47:53 +01:00 committed by Efraim Flashner
parent 46472ae545
commit 5d697044a8
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 31 additions and 0 deletions

View File

@ -387,6 +387,37 @@ many of the other BioJulia packages. This package defines IO, exceptions, and
other types or methods used by other BioJulia packages.")
(license license:expat))))
(define-public julia-biosequences
(package
(name "julia-biosequences")
(version "2.0.5")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/BioJulia/BioSequences.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0ns6zk0zvnsf4hlsys9ck2xrn20qck0b0aghh484vc6n458zq2gw"))))
(build-system julia-build-system)
(propagated-inputs
(list julia-biogenerics
julia-biosymbols
julia-combinatorics
julia-indexablebitvectors
julia-stablerngs
julia-twiddle))
(native-inputs
(list julia-statsbase
julia-yaml))
(home-page "https://biojulia.net/BioSequences.jl/stable/")
(synopsis "Data types and methods for common operations with biological sequences")
(description "This package provides Data types and methods for common
operations with biological sequences, including DNA, RNA, and amino acid
sequences.")
(license license:expat)))
(define-public julia-biosymbols
(package
(name "julia-biosymbols")