Description Usage Arguments Value See Also Examples
DETECT Binding sites with given motif and mismatch number as well genome/build, False Discovery Rate for a given experiment name. Read bam or bed alignment files and convert to 1 nt bed and detect binding site among motifs from 1nt bed alignment.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | DetectBindingSitesMotif(
motif,
mismatchNumber,
IPfiles,
BackgroundFiles,
genome,
genomeBuild,
DB = "UCSC",
fdrValue = 0.05,
expName = "Motif_Centric_Peaks",
windowSize = 100,
format = "",
GivenRegion = NA
)
|
motif |
motif characters in nucleotide IUPAC format |
mismatchNumber |
Number of mismatches allowed to match with motifs |
IPfiles |
IP ChIP-seq alignment files |
BackgroundFiles |
Background ChIP-seq alignment files. Can be Input experimetn, DNA whole exctract, etc. |
genome |
The genome name such as "Hsapiens", "Mmusculus", "Dmelanogaster" |
genomeBuild |
The genome build such as "hg38", "hg19", "mm10", "dm3" |
DB |
The database of genome build. default: "UCSC" |
fdrValue |
FDR value cut-off |
expName |
The name of the output table |
windowSize |
Window size around binding site. The total region would be 2*windowSize+1 |
format |
alignment format and should be one of these: "BAMPE", "BAMSE", "BEDPE", "BEDSE" |
GivenRegion |
granges of user provided binding regions |
A list FRiPs, sequence statistics, and Motif statistics
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # ChIP-seq datasets in bed single end format
IPFe <- c(system.file("extdata", "FUR_fe1.bed", package="Motif2Site"),
system.file("extdata", "FUR_fe2.bed", package="Motif2Site"))
Inputs <- c(system.file("extdata", "Input1.bed", package="Motif2Site"),
system.file("extdata", "Input2.bed", package="Motif2Site"))
# Granages region for motif search
NC_000913_Coordiante <-
GenomicRanges::GRanges(seqnames=S4Vectors::Rle("NC_000913"),
ranges=IRanges::IRanges(1, 4639675))
FURfeStringInputStats <-
DetectBindingSitesMotif(motif="GWWTGAGAA",
mismatchNumber=1,
IPfiles=IPFe,
BackgroundFiles=Inputs,
genome="Ecoli",
genomeBuild="20080805",
DB="NCBI",
expName="FUR_Fe_StringInput",
format="BEDSE",
GivenRegion=NC_000913_Coordiante
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.