Skip to content

Commit

Permalink
Bump version to 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus1487 committed Jan 17, 2017
1 parent c41f015 commit c58c3fa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.3.1'
version = u'0.4'
# The full version, including alpha/beta/rc tags.
release = u'0.3.1'
release = u'0.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/resquiggle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Genome Re-squiggle
`genome_resquiggle`
-------------------

This command re-annotates raw signal to match continguous genomic bases with contiguous sections ("Events") of raw signal. The algorithm begins with a genomic alignment (currently graphmap) produced by the `genome_resquiggle` command. The full algorithm is described in detail within the manuscript describing nanoraw (`Pre-print manuscript <http://biorxiv.org/content/early/2016/12/15/094672>`_).
This command re-annotates raw signal to match continguous genomic bases with contiguous sections ("Events") of raw signal. The algorithm begins with a genomic alignment (currently graphmap or bwa-mem) produced by the `genome_resquiggle` command. The full algorithm is described in detail within the manuscript describing nanoraw (`Pre-print manuscript <http://biorxiv.org/content/early/2016/12/15/094672>`_).

Required positional arguments for this command are (in order) `fast5_basedir` which specifies a directory containing FAST5 files to process and `genome_fasta` specifying the FASTA file to which mapping should be computed. Additionally, either a bwa or graphmap executable is required (e.g. `--graphmap-executable ./graphmap` or `--bwa-mem-executable ./bwa` assuming the binary is linked to the current directory).

Expand Down
2 changes: 1 addition & 1 deletion nanoraw/resquiggle.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def _redirect_stderr(to):
_redirect_stderr(old_stderr)


NANORAW_VERSION = '0.3.1'
NANORAW_VERSION = '0.4'
VERBOSE = False

# allow this many times the alignment batch size into the queue of
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def readme():

setup(
name = "nanoraw",
version = "0.3.1",
version = "0.4",
packages = ["nanoraw"],
install_requires = ['h5py', 'rpy2', 'numpy', 'scipy'],

Expand Down

0 comments on commit c58c3fa

Please sign in to comment.