Description Usage Arguments Value See Also Examples
This function gets user provided bedfiles and compare them with a user provided region.
It returns this comparison to given user binding regions in terms of precision/recall.
1 | compareBedFiless2UserProvidedRegions(bedfiles, motifnames, givenRegion)
|
bedfiles |
a vector of bed files |
motifnames |
a vector of the names related to bed files |
givenRegion |
granges of user provided binding regions |
A dataframe which includes precision recall values for each bed file
compareMotifs2UserProvidedRegions
1 2 3 4 5 6 7 8 9 10 11 12 | yeastExampleFile=system.file("extdata", "YeastSampleMotif.bed",
package="Motif2Site")
YeastRegionsChIPseq <- Bed2Granges(yeastExampleFile)
bed1 <- system.file("extdata", "YeastBedFile1.bed", package="Motif2Site")
bed2 <- system.file("extdata", "YeastBedFile2.bed", package="Motif2Site")
BedFilesVector <- c(bed1, bed2)
SequenceComparison <- compareBedFiless2UserProvidedRegions(
givenRegion=YeastRegionsChIPseq,
bedfiles=BedFilesVector,
motifnames=c("YeastBed1", "YeastBed2")
)
SequenceComparison
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.