From bf15a39e627a181f74e8b5e4d4fbd1a548b2c717 Mon Sep 17 00:00:00 2001 From: "Dr. K.D. Murray" Date: Wed, 3 Apr 2024 09:17:18 +0200 Subject: [PATCH] document config option for external variant calling bed --- acanthophis/template/config.yml | 13 +++++++++++++ documentation.md | 12 ++++++++++++ 2 files changed, 25 insertions(+) diff --git a/acanthophis/template/config.yml b/acanthophis/template/config.yml index b859660..ff84cd8 100644 --- a/acanthophis/template/config.yml +++ b/acanthophis/template/config.yml @@ -15,6 +15,19 @@ data_paths: references: lambda: fasta: "rawdata/reference/genome.fa" + # By default, Acanthophis automatically generates bins of equal coverage + # for parallelising variant calling. However, due to some arcane + # snakemake issues, it's sometimes desireable to disable this feature as + # it relies on checkpointing. One can alternatively provide a BED file + # that Acanthophis will use as regions when variant calling with a given + # caller. These should be 4-column bed files (chr, start0, end, name; + # with name ignored). These regions need not all be the same size, and + # can even be used to only call variants within certain regions, e.g. + # when using exon capture or other reduced representation methods. + # + #region_beds: + # mpileup: "rawdata/reference/genome.fa.1kbp.bed" + # Taxon profiling databases. These can either be downloaded as a pre-compiled # database, or built by the corresponding tool from some database. In the diff --git a/documentation.md b/documentation.md index db486de..c942d78 100644 --- a/documentation.md +++ b/documentation.md @@ -217,6 +217,18 @@ data_paths: references: lambda: fasta: "rawdata/reference/genome.fa" + # By default, Acanthophis automatically generates bins of equal coverage + # for parallelising variant calling. However, due to some arcane + # snakemake issues, it's sometimes desireable to disable this feature as + # it relies on checkpointing. One can alternatively provide a BED file + # that Acanthophis will use as regions when variant calling with a given + # caller. These should be 4-column bed files (chr, start0, end, name; + # with name ignored). These regions need not all be the same size, and + # can even be used to only call variants within certain regions, e.g. + # when using exon capture or other reduced representation methods. + # + #region_beds: + # mpileup: "rawdata/reference/genome.fa.1kbp.bed" # Taxon profiling databases. These can either be downloaded as a pre-compiled # database, or built by the corresponding tool from some database. In the