View source: R/writeListOfGAlignments.R
writeListOfGAlignments | R Documentation |
wraper for export to export list of GAlignment into bam files.
writeListOfGAlignments(objs, outPath = ".")
objs |
A list of GAlignments. |
outPath |
character(1). Output file path. |
status of export.
Jianhong Ou
library(GenomicAlignments)
gal1 <- GAlignments(seqnames=Rle("chr1"), pos=1L, cigar="10M",
strand=Rle(strand(c("+"))), names="a", score=1)
galist <- GAlignmentsList(a=gal1)
writeListOfGAlignments(galist)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.