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
f6950e9b
Commit
f6950e9b
authored
7 months ago
by
Martin Larralde
Browse files
Options
Downloads
Patches
Plain Diff
Implement `Scanner.__init__` and fix type annotations in Python package
parent
6d5eb3a8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lightmotif-py/lightmotif/lib.pyi
+11
-0
11 additions, 0 deletions
lightmotif-py/lightmotif/lib.pyi
lightmotif-py/lightmotif/lib.rs
+46
-31
46 additions, 31 deletions
lightmotif-py/lightmotif/lib.rs
with
57 additions
and
31 deletions
lightmotif-py/lightmotif/lib.pyi
+
11
−
0
View file @
f6950e9b
...
...
@@ -84,12 +84,23 @@ class TransfacMotif(Motif):
class
JasparMotif
(
Motif
):
@property
def
counts
(
self
)
->
CountMatrix
:
...
@property
def
name
(
self
)
->
str
:
...
@property
def
description
(
self
)
->
Optional
[
str
]:
...
class
UniprobeMotif
(
Motif
):
@property
def
counts
(
self
)
->
None
:
...
class
Scanner
(
Iterator
[
Hit
]):
def
__init__
(
self
,
pssm
:
ScoringMatrix
,
sequence
:
StripedSequence
,
threshold
:
float
=
0.0
,
block_size
:
int
=
256
,
)
->
None
:
...
def
__iter__
(
self
)
->
Scanner
:
...
def
__next__
(
self
)
->
Hit
:
...
...
...
This diff is collapsed.
Click to expand it.
lightmotif-py/lightmotif/lib.rs
+
46
−
31
View file @
f6950e9b
...
...
@@ -312,7 +312,10 @@ impl From<StripedSequenceData> for StripedSequence {
let
cols
=
data
.columns
();
let
rows
=
data
.rows
();
let
shape
=
[
cols
as
Py_ssize_t
,
rows
as
Py_ssize_t
];
let
strides
=
[
1
,
data
.stride
()
as
Py_ssize_t
];
let
strides
=
[
std
::
mem
::
size_of
::
<
u8
>
()
as
Py_ssize_t
,
(
std
::
mem
::
size_of
::
<
u8
>
()
*
data
.stride
())
as
Py_ssize_t
,
];
Self
{
data
,
shape
,
...
...
@@ -1107,6 +1110,44 @@ pub struct Scanner {
#[pymethods]
impl
Scanner
{
#[new]
#[pyo3(signature
=
(pssm,
sequence,
threshold
=
0.0
,
block_size
=
256
))]
fn
__init__
<
'py
>
(
pssm
:
Bound
<
'py
,
ScoringMatrix
>
,
sequence
:
Bound
<
'py
,
StripedSequence
>
,
threshold
:
f32
,
block_size
:
usize
,
)
->
PyResult
<
PyClassInitializer
<
Self
>>
{
match
(
&
pssm
.try_borrow
()
?
.data
,
&
mut
sequence
.try_borrow_mut
()
?
.data
,
)
{
(
ScoringMatrixData
::
Dna
(
p
),
StripedSequenceData
::
Dna
(
s
))
=>
{
s
.configure
(
&
p
);
// transmute (!!!!!) the scanner so that its lifetime is 'static
// (i.e. the reference to the PSSM and sequence never expire),
// which is possible because we are building a self-referential
// struct and self.scanner.next() will only be called with
// the GIL held...
let
scanner
=
unsafe
{
let
mut
scanner
=
lightmotif
::
scan
::
Scanner
::
<
Dna
,
_
,
_
,
C
>
::
new
(
p
,
s
);
scanner
.threshold
(
threshold
);
scanner
.block_size
(
block_size
);
std
::
mem
::
transmute
(
scanner
)
};
Ok
(
PyClassInitializer
::
from
(
Scanner
{
data
:
scanner
,
pssm
:
pssm
.unbind
(),
sequence
:
sequence
.unbind
(),
}))
}
(
ScoringMatrixData
::
Protein
(
_
),
StripedSequenceData
::
Protein
(
_
))
=>
{
Err
(
PyValueError
::
new_err
(
"protein scanner is not supported"
))
}
(
_
,
_
)
=>
Err
(
PyValueError
::
new_err
(
"alphabet mismatch"
)),
}
}
fn
__iter__
(
slf
:
PyRef
<
Self
>
)
->
PyRef
<
Self
>
{
slf
}
...
...
@@ -1216,36 +1257,10 @@ pub fn scan<'py>(
block_size
:
usize
,
)
->
PyResult
<
Bound
<
'py
,
Scanner
>>
{
let
py
=
pssm
.py
();
match
(
&
pssm
.try_borrow
()
?
.data
,
&
mut
sequence
.try_borrow_mut
()
?
.data
,
)
{
(
ScoringMatrixData
::
Dna
(
p
),
StripedSequenceData
::
Dna
(
s
))
=>
{
s
.configure
(
&
p
);
// transmute (!!!!!) the scanner so that its lifetime is 'static
// (i.e. the reference to the PSSM and sequence never expire),
// which is possible because we are building a self-referential
// struct
let
scanner
=
unsafe
{
let
mut
scanner
=
lightmotif
::
scan
::
Scanner
::
<
Dna
,
_
,
_
,
C
>
::
new
(
p
,
s
);
scanner
.threshold
(
threshold
);
scanner
.block_size
(
block_size
);
std
::
mem
::
transmute
(
scanner
)
};
Bound
::
new
(
py
,
Scanner
{
data
:
scanner
,
pssm
:
pssm
.unbind
(),
sequence
:
sequence
.unbind
(),
},
)
}
(
ScoringMatrixData
::
Protein
(
_
),
StripedSequenceData
::
Protein
(
_
))
=>
{
Err
(
PyValueError
::
new_err
(
"protein scanner is not supported"
))
}
(
_
,
_
)
=>
Err
(
PyValueError
::
new_err
(
"alphabet mismatch"
)),
}
Bound
::
new
(
py
,
Scanner
::
__init__
(
pssm
,
sequence
,
threshold
,
block_size
)
?
,
)
}
// --- Module ------------------------------------------------------------------
...
...
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