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
cd460572
Commit
cd460572
authored
7 months ago
by
Martin Larralde
Browse files
Options
Downloads
Patches
Plain Diff
Add `Motif.name` property to store the name of a motif in `lightmotif-py`
parent
1e43a171
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/io.rs
+13
-3
13 additions, 3 deletions
lightmotif-py/lightmotif/io.rs
lightmotif-py/lightmotif/lib.rs
+7
-2
7 additions, 2 deletions
lightmotif-py/lightmotif/lib.rs
with
20 additions
and
5 deletions
lightmotif-py/lightmotif/io.rs
+
13
−
3
View file @
cd460572
...
...
@@ -25,8 +25,12 @@ where
ScoringMatrixData
:
From
<
lightmotif
::
pwm
::
ScoringMatrix
<
A
>>
,
{
let
record
=
record
.unwrap
();
let
name
=
record
.id
()
.to_string
();
let
counts
=
record
.into_matrix
();
Python
::
with_gil
(|
py
|
Motif
::
from_counts
(
py
,
counts
))
let
mut
motif
=
Python
::
with_gil
(|
py
|
Motif
::
from_counts
(
py
,
counts
))
?
;
motif
.name
=
Some
(
name
);
Ok
(
motif
)
}
fn
convert_transfac
<
A
>
(
record
:
Result
<
lightmotif_io
::
transfac
::
Record
<
A
>
,
Error
>
)
->
PyResult
<
Motif
>
...
...
@@ -37,10 +41,13 @@ where
ScoringMatrixData
:
From
<
lightmotif
::
pwm
::
ScoringMatrix
<
A
>>
,
{
let
record
=
record
.unwrap
();
let
name
=
record
.accession
()
.or
(
record
.id
())
.map
(
String
::
from
);
let
counts
=
record
.to_counts
()
.ok_or_else
(||
PyValueError
::
new_err
(
"invalid count matrix"
))
?
;
Python
::
with_gil
(|
py
|
Motif
::
from_counts
(
py
,
counts
))
let
mut
motif
=
Python
::
with_gil
(|
py
|
Motif
::
from_counts
(
py
,
counts
))
?
;
motif
.name
=
name
;
Ok
(
motif
)
}
fn
convert_uniprobe
<
A
>
(
record
:
Result
<
lightmotif_io
::
uniprobe
::
Record
<
A
>
,
Error
>
)
->
PyResult
<
Motif
>
...
...
@@ -50,9 +57,12 @@ where
ScoringMatrixData
:
From
<
lightmotif
::
pwm
::
ScoringMatrix
<
A
>>
,
{
let
record
=
record
.unwrap
();
let
name
=
record
.id
()
.to_string
();
let
freqs
=
record
.into_matrix
();
let
weights
=
freqs
.to_weight
(
None
);
Python
::
with_gil
(|
py
|
Motif
::
from_weights
(
py
,
weights
))
let
mut
motif
=
Python
::
with_gil
(|
py
|
Motif
::
from_weights
(
py
,
weights
))
?
;
motif
.name
=
Some
(
name
);
Ok
(
motif
)
}
#[pyclass(module
=
"lightmotif.lib"
)]
...
...
This diff is collapsed.
Click to expand it.
lightmotif-py/lightmotif/lib.rs
+
7
−
2
View file @
cd460572
...
...
@@ -1049,6 +1049,8 @@ pub struct Motif {
pwm
:
Py
<
WeightMatrix
>
,
#[pyo3(get)]
pssm
:
Py
<
ScoringMatrix
>
,
#[pyo3(get)]
name
:
Option
<
String
>
,
}
impl
Motif
{
...
...
@@ -1065,6 +1067,7 @@ impl Motif {
counts
:
Some
(
Py
::
new
(
py
,
CountMatrix
::
new
(
counts
))
?
),
pwm
:
Py
::
new
(
py
,
WeightMatrix
::
new
(
weights
))
?
,
pssm
:
Py
::
new
(
py
,
ScoringMatrix
::
new
(
scoring
))
?
,
name
:
None
,
})
}
...
...
@@ -1079,6 +1082,7 @@ impl Motif {
counts
:
None
,
pwm
:
Py
::
new
(
py
,
WeightMatrix
::
new
(
weights
))
?
,
pssm
:
Py
::
new
(
py
,
ScoringMatrix
::
new
(
scoring
))
?
,
name
:
None
,
})
}
}
...
...
@@ -1154,8 +1158,8 @@ impl From<lightmotif::scan::Hit> for Hit {
/// or when the sequence lengths are not consistent.
///
#[pyfunction]
#[pyo3(signature
=
(sequences,
protein
=
false
))]
pub
fn
create
(
sequences
:
Bound
<
PyAny
>
,
protein
:
bool
)
->
PyResult
<
Motif
>
{
#[pyo3(signature
=
(sequences,
protein
=
false
,
name
=
None
))]
pub
fn
create
(
sequences
:
Bound
<
PyAny
>
,
protein
:
bool
,
name
:
Option
<
String
>
)
->
PyResult
<
Motif
>
{
let
py
=
sequences
.py
();
macro_rules!
run
{
(
$alphabet:ty
)
=>
{{
...
...
@@ -1178,6 +1182,7 @@ pub fn create(sequences: Bound<PyAny>, protein: bool) -> PyResult<Motif> {
counts
:
Some
(
Py
::
new
(
py
,
CountMatrix
::
new
(
data
))
?
),
pwm
:
Py
::
new
(
py
,
WeightMatrix
::
new
(
weights
))
?
,
pssm
:
Py
::
new
(
py
,
ScoringMatrix
::
new
(
scoring
))
?
,
name
,
})
}};
}
...
...
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