Description Usage Arguments Value Examples
Generates required files for a Perl circos plot containing Manta structural variants and/or CNVkit/FACETS/PURPLE/TitanCNA copy number variants.
1 | circos_prep(outdir = "circos", manta = NULL, cnv = NULL, genome = "hg19", ...)
|
outdir |
Directory to write the files to. |
manta |
Path to Manta VCF file. |
cnv |
Path to copy number call file. |
genome |
Genome assembly. "hg19" (default) or "hg38". hg19 gets converted to GRCh37 automatically. |
... |
Additional arguments for |
Generates the required files for a Perl circos plot with structural variant links and/or copy number variant segments. Returns the paths to these files invisibly.
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
manta <- system.file("extdata", "HCC2218_manta.vcf", package = "pebbles")
cnv <- system.file("extdata", "HCC2218_cnvkit-call.cns", package = "pebbles")
outdir <- "~/Desktop/tmp/circos"
circos_prep(outdir = outdir, manta = manta, cnv = cnv)
circos_prep(outdir = outdir, manta = manta) # no CNVs provided
circos_prep(outdir = outdir, manta = manta, genome = "hg19") # no CNVs provided
circos_prep(outdir = outdir, cnv = cnv) # no SVs provided
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.