Skip to content
Snippets Groups Projects
Commit b25bd6d9 authored by Bertrand  NÉRON's avatar Bertrand NÉRON
Browse files

fix rest syntax and fix enzymes_1.py file name

parent 87cd29e4
No related branches found
No related tags found
No related merge requests found
...@@ -425,7 +425,7 @@ pseudocode: ...@@ -425,7 +425,7 @@ pseudocode:
| *rev_comp <- empty* | *rev_comp <- empty*
| *for each nt of rev_seq* | *for each nt of rev_seq*
| *concatenate nt complement to rev_comp* | *concatenate nt complement to rev_comp*
| *return rev_comp | *return rev_comp*
.. literalinclude:: _static/code/rev_comp2.py .. literalinclude:: _static/code/rev_comp2.py
:linenos: :linenos:
...@@ -509,7 +509,7 @@ and the 2 dna fragments: :: ...@@ -509,7 +509,7 @@ and the 2 dna fragments: ::
apply the same functions to compute the enzymes which cut the dna_2 apply the same functions to compute the enzymes which cut the dna_2
compute the difference between the enzymes which cut the dna_1 and enzymes which cut the dna_2 compute the difference between the enzymes which cut the dna_1 and enzymes which cut the dna_2
.. literalinclude:: _static/code/enzymes_1.py .. literalinclude:: _static/code/enzyme_1.py
:linenos: :linenos:
:language: python :language: python
...@@ -523,7 +523,7 @@ and the 2 dna fragments: :: ...@@ -523,7 +523,7 @@ and the 2 dna fragments: ::
enz_2 = enz_filter(enzymes, dna_2) enz_2 = enz_filter(enzymes, dna_2)
enz1_only = set(enz_1) - set(enz_2) enz1_only = set(enz_1) - set(enz_2)
:download:`enzymes_1.py <_static/code/enzymes_1.py>` . :download:`enzymes_1.py <_static/code/enzyme_1.py>` .
with this algorithm we find if an enzyme cut the dna but we cannot find all cuts in the dna for an enzyme. :: with this algorithm we find if an enzyme cut the dna but we cannot find all cuts in the dna for an enzyme. ::
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment