From 62c04e8812a0b71845186267702db1aaf5a0a4ba Mon Sep 17 00:00:00 2001 From: jvfe Date: Tue, 4 Jun 2024 12:47:19 -0300 Subject: [PATCH] docs: Update readme with download entry --- README.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4730233..ee51fe1 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,6 @@ nextflow run dalmolingroup/euryale \ --input samplesheet.csv \ --outdir \ --kaiju_db kaiju_reference \ - --diamond_db diamond_db \ --reference_fasta diamond_fasta \ --host_fasta host_reference_fasta \ --id_mapping id_mapping_file \ @@ -81,6 +80,26 @@ nextflow run dalmolingroup/euryale \ A question that pops up a lot is: Since Euryale requires a lot of reference parameters, where can I find these references? +One option is to execute EURYALE's download entry, which will download the necessary databases for you. +This is the recommended way to get started with the pipeline. +This uses the same sources as EURYALE's predecessor MEDUSA. + +```bash +nextflow run dalmolingroup/euryale \ + --download_functional \ + --download_kaiju \ + --download_host \ + --outdir \ + -entry download \ + -profile +``` +In case you download the Kraken2 database (`--download_kraken`), make sure to extract it using the following command before using +it in the pipeline: + +```bash +tar -xvf kraken2_db.tar.gz +``` + Below we provide a short list of places where you can find these databases. But, of course, we're not limited to these references: Euryale should be able to process your own databases, should you want to build them yourself.