Skip to content

Commit

Permalink
document config option for external variant calling bed
Browse files Browse the repository at this point in the history
  • Loading branch information
kdm9 committed Apr 3, 2024
1 parent 27ccda3 commit bf15a39
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
13 changes: 13 additions & 0 deletions acanthophis/template/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 12 additions & 0 deletions documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bf15a39

Please sign in to comment.