Description Usage Arguments Value Author(s) Examples
Convenience for creating an
SRFilter
object appropriate
for ChIP-seq data. Typically, the result is passed
to readAligned
when loading reads.
1 | chipseqFilter(exclude = "[_MXY]", uniqueness = c("location", "sequence", "location*sequence", "none"), hasStrand = TRUE)
|
exclude |
A regular expression for excluding chromosomes by name. Just
like the parameter to |
uniqueness |
The criteria used to determine whether a read is unique. A read may
be unique if it maps to a unique |
hasStrand |
Whether to require that the read is mapped to a strand, which usually translates to whether the read was mapped at all. |
An SRFilter
object
M. Lawrence
1 2 3 4 5 6 7 8 9 10 | sp <- SolexaPath(system.file("extdata", package="ShortRead"))
filter <- chipseqFilter()
aln <- readAligned(sp, "s_2_export.txt", filter=filter)
## allow mapping to the same location (but only if sequence is different)
filter <- chipseqFilter(uniqueness = "sequence")
aln <- readAligned(sp, "s_2_export.txt", filter=filter)
## allow sex chromosomes
filter <- chipseqFilter(exclude = "[M_]")
aln <- readAligned(sp, "s_2_export.txt", filter=filter)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.