ChIP-seq s Bioconductor v R
Peter Humburg
Statistician, Macquarie University

SRR1782620.72657690chr20 29803915051M0 0AATGAAATGGAA ...CCCFFFFFHHHH ...Rsamtools.Rsamtools poskytuje funkce pro indexování, čtení, filtrování a zápis souborů BAM.K importu mapovaných čtení použijte readGAlignments.
library(GenomicAlignments)
reads <- readGAlignments(bam_file)
Vrací objekt GAlignments.
BamViews.library(GenomicRanges)
library(Rsamtools)
ranges <- GRanges(...)
views <- BamViews(bam_file, bamRanges=ranges)
reads <- readGAlignments(views)
Funkce BamViews podporuje více souborů BAM.
K načtení vrcholových volání ze souboru BED použijte import.bed.
library(rtracklayer)
peaks <- import.bed(peak_bed, genome="hg19")
Pomocí peaks definujte pohledy do souborů BAM.
bams <- BamViews(bam_file, bamRanges=peaks)
reads <- readGAlignments(bams)
ChIP-seq s Bioconductor v R