Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
AroneyS committed Aug 30, 2024
1 parent d124888 commit 737b678
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ SingleM metapackage is the metapackage downloaded by SingleM using `singlem data
The latter databases are required only if you want to run Aviary directly using the `--run-aviary` argument.
GTDB-Tk database is the directory containing the GTDB-Tk release (see <https://github.com/Ecogenomics/GTDBTk>).
CheckM2 database is the directory containing the CheckM2 database (see <https://github.com/chklovski/CheckM2>).
These can also be downloaded automatically by Aviary using `aviary configure --download gtdb singlem checkm2` (see <https://github.com/rhysnewell/aviary>).
These can also be downloaded automatically with `--download-databases` flag, which uses Aviary (`aviary configure --download gtdb singlem checkm2`, see <https://github.com/rhysnewell/aviary>).
Note that the databases are very large.

```bash
binchicken build \
Expand Down
6 changes: 3 additions & 3 deletions test/test_manual.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,9 @@ def test_update_specific_coassembly_sra(self):
def test_build_with_downloads(self):
with in_tempdir():
# path_to_conda = os.path.abspath(".conda")
path_to_metapackage = "metapackage.smpkg"
path_to_checkm2_db = "checkm2_db"
path_to_gtdbtk_db = "gtdb_release"
path_to_metapackage = os.path.abspath("metapackage.smpkg")
path_to_checkm2_db = os.path.abspath("checkm2_db")
path_to_gtdbtk_db = os.path.abspath("gtdb_release")

cmd = (
f"binchicken build "
Expand Down

0 comments on commit 737b678

Please sign in to comment.