new_haplotypecaller_gatk | R Documentation |
This function functions calls HaplotypeCaller for variant calling. If a vector of normal samples are provided these will be processed in multi-sample mode. To run in normal mode suppply a single normal sample. TO DO// Implement mitochondrial mode feature
new_haplotypecaller_gatk(
sif_gatk = build_default_sif_list()$sif_gatk,
ref_genome = build_default_reference_list()$HG19$reference$genome,
indel_db = build_default_reference_list()$HG19$variant$mills_reference,
haplotype_db = build_default_reference_list()$HG19$variant$hapmap_reference,
bam = NULL,
region = NULL,
score = TRUE,
score_CNN = "CNN_1D",
filter = TRUE,
snp_tranche = 99.95,
indel_tranche = 99.4,
keep_previous_filters = FALSE,
...
)
sif_gatk |
REQUIRED Path to gatk sif file. |
ref_genome |
REQUIRED Path to reference genome fasta file. |
bam |
OPTIONAL Path to normal BAM file. |
region |
REQUIRED Genomic position in samtools format chr:start-end. |
For more information read: https://gatk.broadinstitute.org/hc/en-us/articles/360037225632-HaplotypeCaller
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.