Skip to content

Commit

Permalink
updating docs for patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
will-rowe committed May 8, 2020
1 parent e2b20b3 commit 5cf7ec8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# The short X.Y version
version = '1.1'
# The full version, including alpha/beta/rc tags
release = '1.1.0'
release = '1.1.2'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 4 additions & 0 deletions docs/using-groot.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,10 @@ gunzip -c file.gz | ./groot align -i grootIndex -p 8 | ./groot report

Multiple FASTQ files can be specified as input, however all are treated as the same sample and paired-end info isn't used. To specify multiple files, make sure they are comma separated (`-f fileA.fq,fileB.fq`) or use gunzip/cat with a wildcard (gunzip -c \*.fq.gz | groot...).

Some more flags that can be used:

- `--noAlign`: if set, no exact alignment will be performed (graphs will still be weighted using approximate read mappings)

### report

The `report` subcommand is used to processes graph traversals and generate a resistome profile for a sample. Here is an example:
Expand Down
2 changes: 1 addition & 1 deletion src/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const major = 1
const minor = 1

// patch is the patch version number
const patch = 1
const patch = 2

// GetVersion returns the full version string for the current GROOT software
func GetVersion() string {
Expand Down

0 comments on commit 5cf7ec8

Please sign in to comment.