This function formats VCF file using bcftools
1 2 3 4 5 6 7 8 9 10 | vcf_format(
vcf = "",
bin_path = "tools/bcftools/bcftools",
bin_path2 = "tools/htslib/bgzip",
bin_path3 = "tools/htslib/tabix",
expr = "'%CHROM\\t%POS\\t%ID\\t%REF\\t%ALT\\t%QUAL\\t%FILTER\\t%INFO\\n'",
verbose = FALSE,
output_dir = ""
)
|
vcf |
Path to vcf file. |
bin_path |
Path to gatk binary. Default tools/gatk/gatk. |
bin_path2 |
Path to bgzip binary. Default tools/htslib/bgzip. |
bin_path3 |
Path to tabix binary. Default tools/htslib/tabix. |
expr |
Expresion by which to format VCF. Default %CHROM\t%POS\t%ID\t%REF\t%ALT\t%QUAL\t%FILTER\t%INFO\n |
verbose |
Enables progress messages. Default False. |
output_dir |
Path to the output directory. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.