# MyTaxa Utils

If you followed the instructions for [conda](/part2/requirements/conda.md), you already have all the necessary MyTaxa utils.

**The MyTaxa utilities are optional**, but without them the [MyTaxa](/part5/workflow.md#mytaxa) and [MyTaxa scan](/part5/workflow.md#mytaxa-scan) analyses are disabled. Note that MyTaxa requires about **15Gb** of disk available to store the database.

We will install the necessary software in `$HOME/apps`. You can change this directory if you prefer:

```bash
[[ -d $HOME/apps/bin ]] || mkdir -p $HOME/apps/bin
cd $HOME/apps
echo 'export PATH=$HOME/apps/bin:$PATH' >> ~/.miga_modules
```

## MyTaxa

```bash
wget -O - \
  https://github.com/bio-miga/MyTaxa/archive/master.tar.gz | tar zx
cd MyTaxa-master
make
python3 utils/download_db.py
echo 'export PATH="'$PWD':$PATH"' >> ~/.miga_modules
cd ..
```

## Krona

If you followed the instructions for [conda](/part2/requirements/conda.md) or [Homebrew](/part2/requirements/brew.md), you already have Krona. If you still need to install Krona, simply execute:

```bash
wget -O - \
  https://github.com/marbl/Krona/archive/master.tar.gz | tar zx
( cd Krona-master/KronaTools && ./install.pl --prefix ../.. )
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://manual.microbial-genomes.org/part2/requirements/mytaxa.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
