@@ -38,37 +38,40 @@ if [[ -z "$2" ]]; then
38
38
# most of this file is comments, which you can delete #
39
39
#=======================================================#
40
40
41
- fragment_size: 50
41
+ fragment_size: 150
42
42
# size of the sliding window genome fragments
43
43
# values of 50-300+ should be ok (use your judgement)
44
44
# note: bwa isn't good at mapping really long sequences
45
45
46
- reference_genome: ""
46
+ reference_genome: "genome.fasta "
47
47
# name of reference genome in the genomes/ dir
48
48
49
- outgroup: ""
49
+ outgroup: "outgroupgenome.fasta "
50
50
# name of the outgroup genome in the genomes/ dir
51
51
52
52
bwa_parameters: "-a -k 19"
53
53
# -a outputs all alignments
54
54
# -k 19 is a kmer size of 19
55
55
56
56
freebayes_parameters: "-C 1 --min-coverage 5 --standard-filter --ploidy 1"
57
- # -C 1 means at least 1 sample needs to have alt allele for a site to be kept
57
+ # -C 2 means at least 2 samples need to have alt alleles for a site to be kept
58
58
# --min-coverage 5 means at least 5 aligments to score a site
59
- # --standard-filter is equivalent to -m 30 -q 20 -R 0 -S 0
59
+ # --standard-filter is to add more stringency
60
60
# --ploidy 1 because these are typically haploid assemblies
61
61
62
- window_size: 50000
63
- sites_per_window: 10
62
+ window_size: 20000
64
63
# window size in base pairs for LD pruning snp data
64
+ # bigger window = fewer snps
65
+ sites_per_window: 10
65
66
# number of sites to keep per window
66
67
67
- musclev5_parameters: "-replicates 100"
68
- # if runtime is important, you may want to reduce replicates
68
+ mafft_parameters: "--auto --maxiterate 1000 --nuc"
69
+ # --auto chooses the appropriate model for the data size
70
+ # --maxiterate is the max number of iterations for tree building
71
+ # --nuc is to specify the input is nucleotides
69
72
70
73
raxml_model: "GTR+G"
71
- # the phylogenetic model you would like to use see for options:
74
+ # the phylogenetic model you would like to use, see for options:
72
75
# https://isu-molphyl.github.io/EEOB563/computer_labs/lab4/models.html
73
76
74
77
raxml_parameters: '--bs-trees 100 --tree pars\{25\},rand\{25\} -brlen scaled'
0 commit comments