Skip to content

Commit

Permalink
Merge pull request #103 from sanjaynagi/change-min-alternate-fraction…
Browse files Browse the repository at this point in the history
…-freebayes-19-07-24

freebayes add parameter: min-alternate-fraction 0.05
  • Loading branch information
sanjaynagi authored Jul 19, 2024
2 parents 69fe338 + 6e3af41 commit 6638816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rules/hisat2-freebayes.smk
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ rule VariantCallingFreebayes:
"../envs/variants.yaml"
threads: 1
shell:
"freebayes -f {input.ref} -t {input.regions} --ploidy {params.ploidy} --populations {input.pops} --pooled-discrete --use-best-n-alleles 5 -L {input.samples} > {output} 2> {log}"
"freebayes -f {input.ref} -t {input.regions} --ploidy {params.ploidy} --populations {input.pops} --pooled-discrete --use-best-n-alleles 5 --min-alternate-fraction 0.05 -L {input.samples} > {output} 2> {log}"

chunks = np.arange(1, config["VariantAnalysis"]["chunks"])

Expand Down

0 comments on commit 6638816

Please sign in to comment.