Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consecutive genes fix #148

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ MAINTAINER [email protected]
#
# Install the dependancies
#
RUN apt-get update -qq && apt-get install -y git bowtie2 cd-hit fastaq libc6 libfml0 libgcc1 libminimap0 libstdc++6 mash mummer python3 python3-setuptools python3-dev python3-pysam python3-pymummer python3-dendropy gcc g++ zlib1g-dev
RUN apt-get update -qq && apt-get install -y git bowtie2 cd-hit fastaq libc6 libfml0 libgcc1 libminimap0 libstdc++6 mummer python3 python3-setuptools python3-dev python3-pysam python3-pymummer python3-dendropy gcc g++ zlib1g-dev

#
# Get the latest code from github and install
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ ARIBA has the following dependencies, which need to be installed:
* [Python3][python] version >= 3.3.2
* [Bowtie2][bowtie2] version >= 2.1.0
* [CD-HIT][cdhit] version >= 4.6
* [MASH][mash] version >= 1.0.2
* [MUMmer][mummer] version >= 3.23


Expand Down Expand Up @@ -74,7 +73,6 @@ to the following dependencies.
|----------------|------------------------|---------------------------|
| Bowtie2 | `bowtie2` | `$ARIBA_BOWTIE2` |
| CD-HIT (est) | `cd-hit-est` | `$ARIBA_CDHIT` |
| MASH | `mash` | `$ARIBA_MASH` |


For example, you could specify an exact version of a bowtie2 executable
Expand Down Expand Up @@ -139,7 +137,6 @@ Build status: [![Build Status](https://travis-ci.org/sanger-pathogens/ariba.svg?
[bowtie2]: http://bowtie-bio.sourceforge.net/bowtie2/index.shtml
[cdhit]: http://weizhongli-lab.org/cd-hit/
[ARIBA wiki]: https://github.com/sanger-pathogens/ariba/wiki
[mash]: https://mash.readthedocs.io/en/latest/
[mummer]: http://mummer.sourceforge.net/
[python]: https://www.python.org/

Expand Down
2 changes: 1 addition & 1 deletion ariba/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
'histogram',
'link',
'mapping',
'mash',
'read_filter',
'read_store',
'refdata_query',
'reference_data',
'ref_genes_getter',
'ref_preparer',
'ref_seq_chooser',
'report',
'report_filter',
'scaffold_graph',
Expand Down
Loading