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
6097e4e1
Commit
6097e4e1
authored
1 year ago
by
Martin Larralde
Browse files
Options
Downloads
Patches
Plain Diff
Add sequence and alphabet interfaces
parent
43e05da5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/abc.rs
+46
-0
46 additions, 0 deletions
src/abc.rs
src/lib.rs
+2
-1
2 additions, 1 deletion
src/lib.rs
src/seq.rs
+52
-0
52 additions, 0 deletions
src/seq.rs
with
100 additions
and
1 deletion
src/abc.rs
0 → 100644
+
46
−
0
View file @
6097e4e1
use
std
::
convert
::
TryFrom
;
use
std
::
fmt
::
Debug
;
pub
struct
InvalidSymbol
(
char
);
/// Common traits for a biological alphabet.
pub
trait
Alphabet
:
Debug
+
Copy
+
Default
{
type
Symbol
:
Default
+
Sized
+
Copy
+
TryFrom
<
char
>
;
}
#[derive(Clone,
Copy)]
#[repr(u8)]
pub
enum
DnaSymbol
{
A
=
0
,
C
=
1
,
T
=
2
,
G
=
3
,
N
=
4
,
}
impl
TryFrom
<
char
>
for
DnaSymbol
{
type
Error
=
InvalidSymbol
;
fn
try_from
(
c
:
char
)
->
Result
<
Self
,
Self
::
Error
>
{
match
c
{
'A'
=>
Ok
(
DnaSymbol
::
A
),
'C'
=>
Ok
(
DnaSymbol
::
C
),
'T'
=>
Ok
(
DnaSymbol
::
T
),
'G'
=>
Ok
(
DnaSymbol
::
G
),
'N'
=>
Ok
(
DnaSymbol
::
N
),
_
=>
Err
(
InvalidSymbol
(
c
)),
}
}
}
impl
Default
for
DnaSymbol
{
fn
default
()
->
DnaSymbol
{
DnaSymbol
::
N
}
}
#[derive(Default,
Debug,
Clone,
Copy)]
pub
struct
DnaAlphabet
;
impl
Alphabet
for
DnaAlphabet
{
type
Symbol
=
DnaSymbol
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/lib.rs
+
2
−
1
View file @
6097e4e1
//! Fast position-weight matrices using sequence striping and SIMD.
mod
abc
;
mod
matrix
;
mod
seq
;
This diff is collapsed.
Click to expand it.
src/seq.rs
0 → 100644
+
52
−
0
View file @
6097e4e1
use
super
::
abc
::
Alphabet
;
use
super
::
abc
::
InvalidSymbol
;
use
super
::
matrix
::
DenseMatrix
;
#[derive(Clone,
Debug)]
pub
struct
EncodedSequence
<
A
:
Alphabet
>
{
pub
alphabet
:
A
,
pub
data
:
Vec
<
A
::
Symbol
>
,
}
impl
<
A
:
Alphabet
>
EncodedSequence
<
A
>
{
/// Create a new encoded sequence from a textual representation.
pub
fn
from_text
(
sequence
:
&
str
)
->
Result
<
Self
,
InvalidSymbol
>
where
InvalidSymbol
:
From
<<
A
::
Symbol
as
TryFrom
<
char
>>
::
Error
>
{
let
data
=
sequence
.chars
()
.map
(|
c
|
A
::
Symbol
::
try_from
(
c
))
.collect
::
<
Result
<
_
,
_
>>
()
?
;
Ok
(
Self
{
data
,
alphabet
:
Default
::
default
(),
})
}
/// Convert the encoded sequence to a striped matrix.
pub
fn
to_striped
<
const
C
:
usize
>
(
&
self
)
->
StripedSequence
<
A
,
C
>
{
let
length
=
self
.data
.len
();
let
n
=
(
length
+
C
)
/
C
;
let
mut
data
=
DenseMatrix
::
new
(
n
);
for
(
i
,
&
x
)
in
self
.data
.iter
()
.enumerate
()
{
data
[
i
%
n
][
i
/
n
]
=
x
;
}
StripedSequence
{
alphabet
:
self
.alphabet
,
data
,
length
,
}
}
}
#[derive(Clone,
Debug)]
pub
struct
StripedSequence
<
A
:
Alphabet
,
const
C
:
usize
=
32
>
{
pub
alphabet
:
A
,
pub
length
:
usize
,
pub
data
:
DenseMatrix
<
A
::
Symbol
,
C
>
,
}
impl
<
A
:
Alphabet
,
const
C
:
usize
>
From
<
EncodedSequence
<
A
>>
for
StripedSequence
<
A
,
C
>
{
fn
from
(
encoded
:
EncodedSequence
<
A
>
)
->
Self
{
encoded
.to_striped
()
}
}
\ No newline at end of file
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