Skip to content

Commit

Permalink
update nanoq version
Browse files Browse the repository at this point in the history
  • Loading branch information
esteinig committed Feb 27, 2022
1 parent 6258e55 commit 598872e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nanoq"
version = "0.8.5"
version = "0.8.6"
authors = ["esteinig <[email protected]>", "ljmcoin <[email protected]>"]
description = "Minimal but speedy quality control and summaries of nanopore reads"
documentation = "https://github.com/esteinig/nanoq"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:latest

ENV VERSION=0.8.4
ENV VERSION=0.8.6
ENV RELEASE=nanoq-${VERSION}-x86_64-unknown-linux-musl.tar.gz

RUN apk update && apk add --no-cache wget
Expand Down
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

[![build](https://github.com/esteinig/nanoq/actions/workflows/rust-ci.yaml/badge.svg?branch=master)](https://github.com/esteinig/nanoq/actions/workflows/rust-ci.yaml)
[![codecov](https://codecov.io/gh/esteinig/nanoq/branch/master/graph/badge.svg?token=1X04YD8YOE)](https://codecov.io/gh/esteinig/nanoq)
![](https://img.shields.io/badge/version-0.8.5-black.svg)
![](https://img.shields.io/badge/version-0.8.6-black.svg)
[![DOI](https://joss.theoj.org/papers/10.21105/joss.02991/status.svg)](https://doi.org/10.21105/joss.02991)

Ultra-fast quality control and summary reports for nanopore reads

## Overview

**`v0.8.5`**
**`v0.8.6`**

- [Purpose](#purpose)
- [Install](#install)
Expand Down Expand Up @@ -56,15 +56,15 @@ cargo install nanoq
Explicit version (for some reason defaults to old version)

```
conda install -c conda-forge -c bioconda nanoq=0.8.5
conda install -c conda-forge -c bioconda nanoq=0.8.6
```

#### `Binaries`

Precompiled binaries for Linux and MacOS are attached to the latest release.

```
VERSION=0.8.5
VERSION=0.8.6
RELEASE=nanoq-${VERSION}-x86_64-unknown-linux-musl.tar.gz
wget https://github.com/esteinig/nanoq/releases/download/${VERSION}/${RELEASE}
Expand Down Expand Up @@ -128,7 +128,7 @@ done
### Parameters

```
nanoq 0.8.5
nanoq 0.8.6
Read filters and summary reports for nanopore data
Expand All @@ -138,6 +138,7 @@ USAGE:
FLAGS:
-f, --fast Ignore quality values if present
-h, --help Prints help information
-H, --header Header for summary output
-s, --stats Summary statistics report
-V, --version Prints version information
-v, --verbose Verbose output statistics [multiple up to -vvv]
Expand Down Expand Up @@ -172,6 +173,12 @@ A basic read summary is output to `stderr`:
* mean read quality
* median read quality

A machine readable header can be added using the `-H` flag:

```bash
nanoq -i test.fq -s -H
```

Extended summaries analogous to `NanoStat` can be obtained using multiple `-v` flags (up to `-vvv`), including the top (`-t`) read lengths and qualities:

```bash
Expand Down

0 comments on commit 598872e

Please sign in to comment.