Browse code

add heatmaps to repsitory and manifest

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/heatmaps@129069 bc3139a8-67e5-0310-9ffc-ced21a209358

Martin Morgan authored on 23/04/2017 21:07:03
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,46 @@
1
+% Generated by roxygen2: do not edit by hand
2
+% Please edit documentation in R/PWMScanHeatmap.R
3
+\docType{methods}
4
+\name{PWMScanHeatmap}
5
+\alias{PWMScanHeatmap}
6
+\alias{PWMScanHeatmap,DNAStringSet,matrix-method}
7
+\title{Generate a Heatmap of PWM Scores in DNA sequnce}
8
+\usage{
9
+PWMScanHeatmap(seq, pwm, ...)
10
+
11
+\S4method{PWMScanHeatmap}{DNAStringSet,matrix}(seq, pwm, coords = NULL,
12
+  label = "")
13
+}
14
+\arguments{
15
+\item{seq}{A DNAString of equal length}
16
+
17
+\item{pwm}{A PWM}
18
+
19
+\item{...}{additional arguments used by methods
20
+
21
+This function creates a heatmap where each point is the score of a PWM match
22
+starting from that position, which can visualise regions of enrichment or exclusion
23
+of certain motifs}
24
+
25
+\item{coords}{Co-ordinates for the heatmap, defaults to c(0, width(windows))}
26
+
27
+\item{label}{Label for the heatmap}
28
+}
29
+\value{
30
+A heatmap
31
+}
32
+\description{
33
+Generate a Heatmap of PWM Scores in DNA sequnce
34
+}
35
+\section{Methods (by class)}{
36
+\itemize{
37
+\item \code{seq = DNAStringSet,pwm = matrix}: Heatmap of PWM Scores
38
+}}
39
+
40
+\examples{
41
+data(HeatmapExamples)
42
+PatternHeatmap(string_set, tata_pwm, coords=c(-100, 100), label="TATA Scan")
43
+}
44
+\seealso{
45
+PatternHeatmap
46
+}