Description Usage Arguments Value Examples
View source: R/ONT_tutorial_sv.R
this method prepares a kable format table summarising the key mapping characteritics from a provided BAM file summary (from bamSummarise). This will describe the mapped sequence reads that are defined as primary, secondary and supplementary and will overlay additional data that releases to read length, read quality and other characteristics as reported in the tutorial document
1 | SVMappingCharacteristicTable(bamSummary, validationResponse, bamFile)
|
bamSummary |
is the result from bamSummarise |
validationResponse |
is the product of the floundeR fastqCheckup method |
bamFile |
is a path to a file |
kable table of mapping characteristics as tuned for the ont_tutorial_sv document
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | demoBam <- system.file("extdata",
"Ecoli_zymo_R10_filt_subs.bam",
package = "nanopoRe")
demoFastq <- system.file("extdata",
"Ecoli_zymo_R10.fastq.gz",
package = "nanopoRe")
referenceGenome <- system.file("extdata",
"Escherichia_coli_complete_genome.fasta",
package = "nanopoRe")
setReferenceGenome(referenceGenome)
loadReferenceGenome()
bamSummary <- bamSummarise(demoBam, force=FALSE, blockSize=1000L)
fastqView <- fastqCheckup(demoFastq)
kable <- SVMappingCharacteristicTable(bamSummary, fastqView, demoBam)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.