Skip to content

Commit 499a94d

Browse files
committed
RLS Version 1.2.0
Big changes - Add `load_fastq_directory` to builtin functions - Enable specifying *all* module resources by URL with download on first use Other - Better messages when using `lock1` - No longer ship JS libraries (also do not expand them in-place) - Remove old motus/specI moduels - Fix CIGAR reinjection bug (already fixed in v`1.1.1)
1 parent ba5eac7 commit 499a94d

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Version 1.1.0+
1+
Version 1.2.0 2020-07-12 by luispedro
22
* Add load_fastq_directory to builtin functions
33
* Better messages when using `lock1`
44
* Enable specifying *all* module resources by URL with download on first

NGLess/Version.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ versionStr :: String
1919
versionStr = showVersion version
2020

2121
dateStr :: String
22-
dateStr = "Unreleased (post v1.1.1)"
22+
dateStr = "12 July 2020"
2323

2424
gitHashStr :: String
2525
gitHashStr = $(gitHash)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ The following sequence of commands should download and build the software
100100

101101
git clone https://github.com/ngless-toolkit/ngless
102102
cd ngless
103+
stack setup
103104
make
104105

105106
To install, you can use the following command (replace `<PREFIX>` with

docs/sources/reproducible.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The `write()` function call supports the argument `auto_comments` which will
1818
add (as comments) meta information to the output. In particular, you can use
1919
the `{script}` auto comment to add the script to your output. For example:
2020

21-
ngless '0.8'
21+
ngless '1.2'
2222
mapped = samfile('input.bam')
2323

2424
counted = count(mapped, features=['seqname'])

docs/sources/whatsnew.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ What's New (History)
33
====================
44

55

6-
Version 1.2.0 (Unreleased)
7-
--------------------------
6+
Version 1.2.0
7+
-------------
8+
9+
Released *12 July 2020*.
810

911
User-visible improvements
1012
~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -13,7 +15,6 @@ User-visible improvements
1315
to the builtin namespace. This was previously available under the ``mocat``
1416
module, but it had become much more flexible than the original MOCAT version,
1517
so it was no longer a descriptive name.
16-
1718
- Better messages in `parallel
1819
<https://ngless.embl.de/stdlib.html?highlight=lock1#parallel-module>`__
1920
module when there are no free locks.
@@ -25,7 +26,7 @@ Internal improvements
2526
- Modules can now specify their annotation as a URL that NGLess downloads on a
2627
"as needed" basis: in version 1.1, only FASTA files were supported.
2728
- Memory consumption of `count() function <Functions.html#count>`__ has been
28-
improved when using GFF files.
29+
improved when using GFF files (*ca.* ⅓ less memory used).
2930
- This one is *hopefully **not** user-visible*: Previously, NGLess would ship
3031
the Javascript libraries it uses for the HTML viewer and copy them into all
3132
its outputs. Starting in v1.2.0, the HTML viewer links to the live versions

0 commit comments

Comments
 (0)