vignette: Vignette Data

Description Usage Format Details Source Examples

Description

Precomputed data for use in the vignette, mostly for the sake of Windows, where gmapR and its tallying functionality are unsupported.

Usage

1

Format

The following objects are included:

tallies_H1993, tallies_H2073

Tallies for the two samples.

coverage_H1993, coverage_H2073

Coverage for the two samples.

p53

A GRanges of the p53 exons

genome_p53

DNAStringSet with the genome sequence of the p53 region

Details

The following demonstrates how we created these objects:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
    bams <- LungCancerLines::LungCancerBamFiles()
    tally.param <- TallyVariantsParam(gmapR::TP53Genome(), 
                                      high_base_quality = 23L,
				      which = range(p53) + 5e4,
                                      indels = TRUE, read_length = 75L)
    tallies_H1993 <- tallyVariants(bams$H1993, tally.param)
    tallies_H2073 <- tallyVariants(bams$H2073, tally.param)
    coverage_H1993 <- coverage(bams$H1993)
    coverage_H2073 <- coverage(bams$H2073)
    genome_p53 <- DNAStringSet(getSeq(gmapR::TP53Genome()))
    p53 <- gmapR:::exonsOnTP53Genome("TP53")
  

Source

Computed from the data in the LungCancerLines package.

Examples

1

VariantTools documentation built on Nov. 8, 2020, 8:03 p.m.