Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LightMotif
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Larralde
LightMotif
Commits
84200f25
Commit
84200f25
authored
1 year ago
by
Martin Larralde
Browse files
Options
Downloads
Patches
Plain Diff
Add remaining types for creating a weight matrix
parent
f23e1e23
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/pwm.rs
+74
-0
74 additions, 0 deletions
src/pwm.rs
with
74 additions
and
0 deletions
src/pwm.rs
+
74
−
0
View file @
84200f25
...
...
@@ -2,6 +2,7 @@ use super::abc::Alphabet;
use
super
::
abc
::
Symbol
;
use
super
::
dense
::
DenseMatrix
;
use
super
::
seq
::
EncodedSequence
;
use
super
::
seq
::
StripedSequence
;
#[derive(Clone,
Debug)]
pub
struct
CountMatrix
<
A
:
Alphabet
,
const
K
:
usize
>
{
...
...
@@ -10,6 +11,13 @@ pub struct CountMatrix<A: Alphabet, const K: usize> {
}
impl
<
A
:
Alphabet
,
const
K
:
usize
>
CountMatrix
<
A
,
K
>
{
pub
fn
new
(
data
:
DenseMatrix
<
u32
,
K
>
)
->
Result
<
Self
,
()
>
{
Ok
(
Self
{
data
,
alphabet
:
A
::
default
(),
})
}
pub
fn
from_sequences
<
'seq
,
I
>
(
sequences
:
I
)
->
Result
<
Self
,
()
>
where
I
:
IntoIterator
<
Item
=
&
'seq
EncodedSequence
<
A
>>
,
...
...
@@ -33,4 +41,70 @@ impl<A: Alphabet, const K: usize> CountMatrix<A, K> {
data
:
data
.unwrap_or_else
(||
DenseMatrix
::
new
(
0
)),
})
}
/// Build a probability matrix from this count matrix using pseudo-counts.
pub
fn
to_probability
(
&
self
,
pseudo
:
f32
)
->
ProbabilityMatrix
<
A
,
K
>
{
let
mut
probas
=
DenseMatrix
::
new
(
self
.data
.rows
());
for
i
in
0
..
self
.data
.rows
()
{
let
src
=
&
self
.data
[
i
];
let
mut
dst
=
&
mut
probas
[
i
];
for
(
j
,
&
x
)
in
src
.iter
()
.enumerate
()
{
dst
[
j
]
=
x
as
f32
+
pseudo
;
}
let
s
:
f32
=
dst
.iter
()
.sum
();
for
x
in
dst
.iter_mut
()
{
*
x
/=
s
;
}
}
ProbabilityMatrix
{
alphabet
:
self
.alphabet
,
data
:
probas
,
}
}
}
#[derive(Clone,
Debug)]
pub
struct
ProbabilityMatrix
<
A
:
Alphabet
,
const
K
:
usize
>
{
pub
alphabet
:
A
,
pub
data
:
DenseMatrix
<
f32
,
K
>
,
}
impl
<
A
:
Alphabet
,
const
K
:
usize
>
ProbabilityMatrix
<
A
,
K
>
{
pub
fn
to_weight
(
&
self
,
background
:
Background
<
A
,
K
>
)
->
WeightMatrix
<
A
,
K
>
{
let
mut
weight
=
DenseMatrix
::
new
(
self
.data
.rows
());
for
i
in
0
..
self
.data
.rows
()
{
let
src
=
&
self
.data
[
i
];
let
mut
dst
=
&
mut
weight
[
i
];
for
(
j
,
(
&
x
,
&
f
))
in
src
.iter
()
.zip
(
&
background
.frequencies
)
.enumerate
()
{
dst
[
j
]
=
(
x
/
f
)
.log2
();
}
}
WeightMatrix
{
background
,
alphabet
:
self
.alphabet
,
data
:
weight
,
}
}
}
#[derive(Clone,
Debug)]
pub
struct
Background
<
A
:
Alphabet
,
const
K
:
usize
>
{
pub
frequencies
:
[
f32
;
K
],
_marker
:
std
::
marker
::
PhantomData
<
A
>
,
}
impl
<
A
:
Alphabet
,
const
K
:
usize
>
Background
<
A
,
K
>
{
pub
fn
uniform
()
->
Self
{
Self
{
frequencies
:
[
1.0
/
(
K
as
f32
);
K
],
_marker
:
std
::
marker
::
PhantomData
,
}
}
}
#[derive(Clone,
Debug)]
pub
struct
WeightMatrix
<
A
:
Alphabet
,
const
K
:
usize
>
{
pub
alphabet
:
A
,
pub
background
:
Background
<
A
,
K
>
,
pub
data
:
DenseMatrix
<
f32
,
K
>
,
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment