@@ -21,10 +21,9 @@ cd path/to/repo/
2121git clone --recurse-submodules https://github.com/CVUA-RRW/BAnalyzer.git
2222```
2323
24- Set up a conda environment containing snakemake, python and the pandas library and activate it:
25-
24+ Set up a conda environment containing snakemake (version 6 not supported), python and the pandas library and activate it:
2625``` bash
27- conda create --name snakemake -c bioconda -c anaconda snakemake pandas
26+ conda create --name snakemake -c bioconda -c anaconda " snakemake>=5.10,<6.0 " pandas
2827conda activate snakemake
2928```
3029
@@ -37,9 +36,11 @@ to know how to format it.
3736If you want to extract barcodes from a database of reference genomes you can check out
3837our [ RRW-PrimerBLAST] ( https://github.com/CVUA-RRW/RRW-PrimerBLAST ) pipeline.
3938
40- You will also need to provide the [ taxdb] ( https://ftp.ncbi.nlm.nih.gov/blast/db/taxdb.tar.gz )
39+ You will also need to provide the [ taxdb] ( https://ftp.ncbi.nlm.nih.gov/blast/db/taxdb.tar.gz ) and
40+ [ taxdump] ( https://ftp.ncbi.nlm.nih.gov/pub/taxonomy/new_taxdump/new_taxdump.tar.gz )
4141files available from the NCBI server.
4242
43+
4344### Running BAnalyzer
4445
4546BAnalyzer should be run using the snakemake command-line application.
@@ -63,6 +64,8 @@ The configuration file contains the following parameters:
6364workdir: # Path to output directory
6465blast_db: # Path to BLAST-formated database
6566taxdb: # Path to the folder containing the taxdb files
67+ rankedlineage_dmp: # Path to rankedlineage.dmp
68+ nodes_dmp: # Path to nodes.dmp
6669
6770# Modify the parameters below:
6871trim_primers: False # True to trim primers from sequences
0 commit comments