[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#53017] [PATCH 14/17] gnu: Add julia-biosymbols.
From: |
zimoun |
Subject: |
[bug#53017] [PATCH 14/17] gnu: Add julia-biosymbols. |
Date: |
Tue, 4 Jan 2022 23:47:52 +0100 |
* gnu/packages/julia-xyz.scm (julia-biosymbols): New variable.
---
gnu/packages/julia-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 404c35627c..04d0beeb96 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -387,6 +387,30 @@ (define-public julia-biogenerics
other types or methods used by other BioJulia packages.")
(license license:expat))))
+(define-public julia-biosymbols
+ (package
+ (name "julia-biosymbols")
+ (version "4.0.4") ;Older release for compatibility with julia-biosequence
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/BioJulia/BioSymbols.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1222rwdndi777lai8a6dwrh35i5rgmj75kcrhn8si72sxgz0syjm"))))
+ (build-system julia-build-system)
+ (arguments
+ `(#:tests? #f))
+ (propagated-inputs
+ (list julia-automa))
+ (home-page "https://github.com/BioJulia/BioSymbols.jl")
+ (synopsis "Primitive types for nucleic acids and amino acids")
+ (description "This package defines the primitive types for nucleic acids
+and amino acids that are used ny otherBioJulia packages.")
+ (license license:expat)))
+
(define-public julia-blockarrays
(package
(name "julia-blockarrays")
--
2.33.1
- [bug#53017] [PATCH 00/17] Add julia-biosequences and julia-bioalignments, zimoun, 2022/01/04
- [bug#53017] [PATCH 01/17] gnu: julia-xyz: Adjust style., zimoun, 2022/01/04
- [bug#53017] [PATCH 02/17] build: julia-build-system: Create 'Project.toml' file when missing., zimoun, 2022/01/04
- [bug#53017] [PATCH 03/17] gnu: julia-zygote: Adjust style., zimoun, 2022/01/04
- [bug#53017] [PATCH 07/17] gnu: Add julia-indexablebitvectors., zimoun, 2022/01/04
- [bug#53017] [PATCH 08/17] gnu: Add julia-twiddle., zimoun, 2022/01/04
- [bug#53017] [PATCH 09/17] gnu: Add julia-simd., zimoun, 2022/01/04
- [bug#53017] [PATCH 14/17] gnu: Add julia-biosymbols.,
zimoun <=
- [bug#53017] [PATCH 17/17] gnu: Add julia-bioalignments., zimoun, 2022/01/04
- [bug#53017] [PATCH 04/17] gnu: julia-documentertools: Adjust style., zimoun, 2022/01/04
- [bug#53017] [PATCH 05/17] gnu: julia-documenter: Adjust style., zimoun, 2022/01/04
- [bug#53017] [PATCH 06/17] gnu: Add julia-biogenerics., zimoun, 2022/01/04
- [bug#53017] [PATCH 10/17] gnu: Add julia-scanbyte., zimoun, 2022/01/04
- [bug#53017] [PATCH 11/17] gnu: Add julia-automa., zimoun, 2022/01/04
- [bug#53017] [PATCH 12/17] gnu: Add julia-stringencodings., zimoun, 2022/01/04
- [bug#53017] [PATCH 13/17] gnu: Add julia-yaml., zimoun, 2022/01/04
- [bug#53017] [PATCH 16/17] gnu: Add julia-intervaltrees., zimoun, 2022/01/04
- [bug#53017] [PATCH 15/17] gnu: Add julia-biosequences., zimoun, 2022/01/04