-
Notifications
You must be signed in to change notification settings - Fork 6
/
pwmsDistanceMatrix.Rd
38 lines (31 loc) · 1.2 KB
/
pwmsDistanceMatrix.Rd
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
26
27
28
29
30
31
32
33
34
35
36
37
38
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/pwmAlignment.R
\name{pwmsDistanceMatrix}
\alias{pwmsDistanceMatrix}
\title{Multiple PWMs alignment}
\usage{
pwmsDistanceMatrix(pwms, diagonal_value = 0,
bottom_default_value = NULL, divergence = shannonDivergence,
unaligned_penalty = divergencePenaltyForUnaligned,
try_reverse_complement = TRUE, base_distribution = NULL,
length_normalization = FALSE)
}
\arguments{
\item{pwms}{list of pwms}
\item{diagonal_value}{value to put on diagonal.}
\item{bottom_default_value}{value to put on bottom triangle. Set to NULL to get symmetric distance matrix.}
\item{divergence}{divergence measure.}
\item{unaligned_penalty}{is a function for localPwmAlignment.}
\item{try_reverse_complement}{if True, alignment will try reverse complement pwms}
\item{base_distribution}{is a vector of length nrow(pwm) that is added to unaligned columns of pwms for comparing. If NULL, uniform distribution is used}
\item{length_normalization}{is a vector of length nrow(pwm) that is added to unaligned columns of pwms for comparing. If NULL, uniform distribution is used}
}
\value{
list
}
\description{
Creates a distance matrix for pwms
}
\author{
Lando Andrey
}