Browse code

Update DESCRIPTION, NEWS and README

Charlotte Soneson authored on 20/11/2023 16:00:53
Showing 3 changed files

... ...
@@ -1,7 +1,7 @@
1 1
 Package: Rhisat2
2 2
 Type: Package
3 3
 Title: R Wrapper for HISAT2 Aligner
4
-Version: 1.19.0
4
+Version: 1.19.1
5 5
 Authors@R: c(person("Charlotte", "Soneson", role = c("aut", "cre"), 
6 6
     email = "charlottesoneson@gmail.com", comment = c(ORCID = "0000-0003-3833-2169")))
7 7
 SystemRequirements: GNU make
... ...
@@ -10,7 +10,7 @@ Description: An R interface to the HISAT2 spliced short-read aligner by
10 10
     genome index and to perform the read alignment to the generated index.
11 11
 License: GPL-3
12 12
 Encoding: UTF-8
13
-RoxygenNote: 7.2.1
13
+RoxygenNote: 7.2.3
14 14
 Depends: R (>= 4.2)
15 15
 Suggests: testthat,
16 16
     knitr,
... ...
@@ -1,3 +1,9 @@
1
+CHANGES IN VERSION 1.19.1
2
+-------------------------
3
+
4
+    o Exclude unsupported flags in Makefile for Linux aarch64 platform
5
+    o Make mask2iupac a signed char array
6
+
1 7
 CHANGES IN VERSION 1.13.1
2 8
 -------------------------
3 9
 
... ...
@@ -6,6 +6,10 @@ The `Rhisat2` R package provides an R interface to the [`hisat2`](https://ccb.jh
6 6
 
7 7
 ### Source code
8 8
 
9
+#### Rhisat2 v1.19.1 and newer
10
+
11
+To allow compilation on Linux aarch64, the Makefile obtained from hisat2 was adapted to exclude unsupported flags (`-m64` and `-msse2`) on this platform. In addition, the `mask2iupac` array was converted from a `char` to a `signed char`. See [here](https://github.com/fmicompbio/Rhisat2/pull/5/files) for the precise changes. 
12
+
9 13
 #### Rhisat2 v1.13.1 and newer
10 14
 
11 15
 In Rhisat2 v1.13.1 and onwards, hisat2 was updated to v2.2.1, which was obtained from [https://github.com/DaehwanKimLab/hisat2/releases](https://github.com/DaehwanKimLab/hisat2/releases) on July 27, 2022.