View source: R/modbam_to_tabix.R
modbam_to_tabix | R Documentation |
The modbam_to_tabix
function takes a ModBamResult object and
converts it into a tabix file format, which is efficient for indexing and
querying large datasets.
modbam_to_tabix(x, out_file, mod_code = NanoMethViz::mod_code(x))
x |
the |
out_file |
the path of the output tabix. |
mod_code |
the modification code to use, defaults to 'm' for 5mC methylation. |
The possible tags for mod_code can be found at https://samtools.github.io/hts-specs/SAMtags.pdf under the 'Base modifications' section.
invisibly returns the name of the created tabix file.
out_file <- paste0(tempfile(), ".tsv.bgz")
mbr <- ModBamResult(
methy = ModBamFiles(
samples = "sample1",
paths = system.file("peg3.bam", package = "NanoMethViz",
mustWork = FALSE)
),
samples = data.frame(
sample = "sample1",
group = "group1"
)
)
modbam_to_tabix(mbr, out_file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.