From 7ceb09657e5dafb3f3b85683052a7c54a6d1ffba Mon Sep 17 00:00:00 2001 From: Charlie Simkin Date: Mon, 14 Oct 2024 13:18:51 -0400 Subject: [PATCH] put all variant calling parameters together --- .../config_v0.5.0.yaml | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/base_resources/user_scripts_and_config/config_v0.5.0.yaml b/base_resources/user_scripts_and_config/config_v0.5.0.yaml index e512806..9d7ceae 100644 --- a/base_resources/user_scripts_and_config/config_v0.5.0.yaml +++ b/base_resources/user_scripts_and_config/config_v0.5.0.yaml @@ -82,6 +82,27 @@ wrangler_file: allInfo.tsv.gz # e.g. pf species: pf +#This block is for variant calling with freebayes. These are the settings that +#we've found work best for Plasmodium falciparum. If you're using a different +#genome, you may want to alter these settings (see the Jupyter notebook for +#more info) +freebayes_settings: + [ + "--pooled-continuous", + "--min-alternate-fraction", "0.01", + "--min-alternate-count", "2", + "--haplotype-length", "3", + "--min-alternate-total", "10", + "--use-best-n-alleles", "70", + "--genotype-qualities", + "--gvcf", + "--gvcf-dont-use-chunk", "true", + ] + +#freebayes is a particularly memory intensive step. If variant calling is failing +#you might set this to be lower +freebayes_cpu_count: 8 + ################################################################################ ## prevalence calling parameters ## ################################################################################ @@ -127,27 +148,6 @@ min_wsaf: 0.5 num_samples_umi: 2 min_umi: 3 -#This block is for variant calling with freebayes. These are the settings that -#we've found work best for Plasmodium falciparum. If you're using a different -#genome, you may want to alter these settings (see the Jupyter notebook for -#more info) -freebayes_settings: - [ - "--pooled-continuous", - "--min-alternate-fraction", "0.01", - "--min-alternate-count", "2", - "--haplotype-length", "3", - "--min-alternate-total", "10", - "--use-best-n-alleles", "70", - "--genotype-qualities", - "--gvcf", - "--gvcf-dont-use-chunk", "true", - ] - -#freebayes is a particularly memory intensive step. If variant calling is failing -#you might set this to be lower -freebayes_cpu_count: 8 - ################################################################################ ## Advanced Options and Settings ## ################################################################################