Skip to content

Commit ad57e03

Browse files
committed
bump version to 0.6.0
1 parent f53ddad commit ad57e03

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ SLOW5 specification: https://hasindu2008.github.io/slow5specs<br/>
1818

1919
If you are a Linux user on x86_64 architecture and want to quickly try slow5tools out, download the compiled binaries from the [latest release](https://github.com/hasindu2008/slow5tools/releases). For example:
2020
```sh
21-
VERSION=v0.5.1
21+
VERSION=v0.6.0
2222
wget "https://github.com/hasindu2008/slow5tools/releases/download/$VERSION/slow5tools-$VERSION-x86_64-linux-binaries.tar.gz" && tar xvf slow5tools-$VERSION-x86_64-linux-binaries.tar.gz && cd slow5tools-$VERSION/
2323
./slow5tools
2424
```
@@ -36,7 +36,7 @@ Quick example for Ubuntu :
3636

3737
```sh
3838
sudo apt-get install libhdf5-dev zlib1g-dev #install HDF5 and zlib development libraries
39-
VERSION=v0.5.1
39+
VERSION=v0.6.0
4040
wget "https://github.com/hasindu2008/slow5tools/releases/download/$VERSION/slow5tools-$VERSION-release.tar.gz" && tar xvf slow5tools-$VERSION-release.tar.gz && cd slow5tools-$VERSION/
4141
./configure
4242
make

docs/faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ The direct link to the complete PromethION dataset (~9M reads) is [here](https:/
3636

3737
If your SLOW5 to FAST5 conversion takes ages, it is likely that you called `slow5tools s2f` on a single SLOW5 file which will only use one processor. For parallelising the conversion, first split the SLOW5 file into multiple files using `slow5tools split -r` (you may have to use `slow5tools split -g` first if you BLOW5 file has multiple read groups). Then call `slow5tools s2f` with `-p <num_processes>` so that multiple CPU processors can be used for parallel conversion.
3838

39-
**Q5:** When I convert from FAST5 to BLOW5 and then reconvert to FAST5, why are the new FAST5 files are different in size to original FAST5 files?
39+
**Q6:** When I convert from FAST5 to BLOW5 and then reconvert to FAST5, why are the new FAST5 files are different in size to original FAST5 files?
4040

4141
This is normal behaviour and be assured that difference in sizes does not mean that data has been lost. Please see the issues [#70](https://github.com/hasindu2008/slow5tools/issues/70), [#76](https://github.com/hasindu2008/slow5tools/issues/76) and [#58](https://github.com/hasindu2008/slow5tools/issues/58).
4242

43-
**Q6** Can I upload my BLOW5 files to public archives like SRA?
43+
**Q7** Can I upload my BLOW5 files to public archives like SRA?
4444

4545
Yes you can. Follow the same method you use to upload unbasecalled FAST5 files. Simply create a tar ball containing your BLOW5 file/files (optionally .blow5.idx files as well), select ONT_NATIVE under the SRA submission format and upload as you would usually do. When the loading fails (happens for unbasecalled FAST5 as well - and now ONT does not store basecalls on FAST5 anyway), email the SRA helpdesk and they will complete your submission.

docs/getting_started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ SLOW5 specification: https://hasindu2008.github.io/slow5specs<br/>
1313

1414
If you are a Linux user on x86_64 architecture and want to quickly try slow5tools out, download the compiled binaries from the [latest release](https://github.com/hasindu2008/slow5tools/releases). For example:
1515
```sh
16-
VERSION=v0.5.1
16+
VERSION=v0.6.0
1717
wget "https://github.com/hasindu2008/slow5tools/releases/download/$VERSION/slow5tools-$VERSION-x86_64-linux-binaries.tar.gz" && tar xvf slow5tools-$VERSION-x86_64-linux-binaries.tar.gz && cd slow5tools-$VERSION/
1818
./slow5tools
1919
```
@@ -32,7 +32,7 @@ Quick example for Ubuntu:
3232

3333
```sh
3434
sudo apt-get install libhdf5-dev zlib1g-dev #install HDF5 and zlib development libraries
35-
VERSION=v0.5.1
35+
VERSION=v0.6.0
3636
wget "https://github.com/hasindu2008/slow5tools/releases/download/$VERSION/slow5tools-$VERSION-release.tar.gz" && tar xvf slow5tools-$VERSION-release.tar.gz && cd slow5tools-$VERSION/
3737
./configure
3838
make

slow5lib

src/cmd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef CMD_H
22
#define CMD_H
33

4-
#define SLOW5TOOLS_VERSION "0.5.1-dirty"
4+
#define SLOW5TOOLS_VERSION "0.6.0"
55

66
#define DEFAULT_NUM_THREADS 8
77
#define DEFAULT_NUM_PROCESSES 8

0 commit comments

Comments
 (0)