Description Usage Arguments Details
Construct a somatic Panel of Normals according to GATK best practices.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | gatk_make_pon(
bam,
reference,
vcf,
outdir = "pon",
intervals = NULL,
remake = FALSE
)
gatk_GenomicsDBImport(
vcf,
reference,
database,
intervals = NULL,
remake = FALSE
)
gatk_CreateSomaticPanelOfNormals(database, reference, vcf, remake = FALSE)
|
bam |
one or more input sam/bam files |
reference |
a reference genome that was used during mapping of the sam/bam files |
vcf |
a variant call file, either one or more vcf to be merged into a database
(for |
outdir |
optional outdir an output directory for intermediate files |
intervals |
optional a character string or a file (one line per file) of genomic
segments over which to operate. If not provided, these itnervals are derived from the reference
|
remake |
optional remake the output if it already exists |
database |
a name of the database file created by |
gatk_make_pon is a convenience function that creates the Panel of Normals out of one or
multiple bam files according to GATK best practices. The input bam files are first mapped
using the gatk_Mutect2 in a tumour-only mode, the resulting vcf files are merged into
a database using the gatk_GenomicDBIImport and then a the Panel of Normals is created using the
gatk_CreateSomaticPanelOfNormals.
gatk_GenomicsDBImport merges multiple variant call files (vcf), such as those created by
gatk_Mutect2, into a database. This database can be used to create a Panel of Normals using
the gatk_CreateSomaticPanelOfNormals call.
gatk_CreateSomaticPanelOfNormals creates a Panel of Normals vcf out of a provided database.
Panel of Normals are typically created out of multiple guranteed normal samples that use the same
same sequencing technology as the tumour sample. Panel of Normals are used in the gatk_Mutect2
to inform the caller about technological errors and properties and also to filter out
pre-existing variants.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.