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

fix typos and add some code to motus db installation #126

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,14 @@ Installation
mOTUs can be installed either by using `pip` or via `conda`.
Installation with `conda` has the advantage that it will also download and install dependencies:
```bash
# Install in the base environment
# Install in the current activated environment or base environment
conda install motus
motus downloadDB

# OR, create a new environment
conda create -n motu-env motus
conda activate motu-env
motus downloadDB
```

Installation with `pip`:
Expand All @@ -62,7 +64,7 @@ pip install motu-profiler
motus downloadDB
```

You can test that motus is intalled correctly with:
You can test that motus is installed correctly with:
```
motus profile --test
```
Expand Down