Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Martin Larralde
pyrodigal
Commits
2d97c02e
Commit
2d97c02e
authored
Feb 25, 2022
by
Martin Larralde
Browse files
Add a figure draft showing how Prodigal identifies genes
parent
16d1b573
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
paper/figure1.svg
0 → 100644
View file @
2d97c02e
This diff is collapsed.
Click to expand it.
paper/paper.md
View file @
2d97c02e
...
@@ -21,11 +21,11 @@ Improvements in sequencing technologies have seen the amount of available
...
@@ -21,11 +21,11 @@ Improvements in sequencing technologies have seen the amount of available
genomic data expand considerably over the last twenty years. One of the key
genomic data expand considerably over the last twenty years. One of the key
step for analysing this data is the prediction of protein-coding regions in
step for analysing this data is the prediction of protein-coding regions in
the genomic sequences, known as Open Reading Frames (ORFs), which span between
the genomic sequences, known as Open Reading Frames (ORFs), which span between
a start and a stop codon.
a start and a stop codon.
A recent comparison of several ORF prediction methods
[@AssessORF:2019] has shown that Prodigal [@Prodigal:2010], a prokaryotic gene
A recent compar
ison of
several ORF prediction methods [@AssessORF:2019]
finder using dynamic programming,
is
on
e
of
the highest performing
*ab initio*
has shown that
Prodigal
[@Prodigal:2010], a prokaryotic gene finder using
ORF finder.
P
y
rodigal
is a Python package that provides bindings and an
dynamic programming, is one of the highest performing
*ab initio*
ORF finder
.
interface to Prodigal to make it easier to use in Python applications
.
# Statement of need
# Statement of need
...
@@ -75,6 +75,19 @@ re-implementing peripheral parts of the original software:
...
@@ -75,6 +75,19 @@ re-implementing peripheral parts of the original software:
releasing the Python Global Interpreter Lock (GIL), which makes the ORF
releasing the Python Global Interpreter Lock (GIL), which makes the ORF
finder class usable in multi-threaded code. -->
finder class usable in multi-threaded code. -->
# Method

{width=100%}
# Optimization
# Optimization
...
@@ -90,7 +103,7 @@ The dynamic programming algorithm assigns a score for a gene spanning between
...
@@ -90,7 +103,7 @@ The dynamic programming algorithm assigns a score for a gene spanning between
two codons based mostly on the frequency of nucleotide hexamers inside the
two codons based mostly on the frequency of nucleotide hexamers inside the
gene sequence. There are however pairs of codons between which a gene can
gene sequence. There are however pairs of codons between which a gene can
never span, such as two stop codons, or a forward start codon and a reverse
never span, such as two stop codons, or a forward start codon and a reverse
stop codon.
stop codon
, as shown in
\a
utoref{fig:method}
.
Identifying these invalid connections is done by checking the strand, type and
Identifying these invalid connections is done by checking the strand, type and
reading frame of the pair of nodes. Considering two nodes $i$ and $j$, the
reading frame of the pair of nodes. Considering two nodes $i$ and $j$, the
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment