(bjorn3) bjorn@bjorn-ThinkPad-T450s:~$ ipython
Python 3.5.2 |Anaconda custom (64-bit)| (default, Jul 2 2016, 17:53:06)
Type "copyright", "credits" or "license" for more information.
IPython 5.0.0 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.
In [1]: import pydna
In [2]: puc = pydna.genbank("L09137")
In [3]: puc
Out[3]: Dseqrecord(o2686)
In [4]: from pydna.editor import ape
In [5]: ape(puc) # opens puc in an ape window
In [6]: from pydna import myprimers
In [7]: p15 = myprimers.p015
In [8]: p15
Out[8]: SeqRecord(seq=Seq('GATAAATACTCTCTGGAAGCAGACG', IUPACAmbiguousDNA()), id='15_D-CYC1', name='15_D-CYC1', description='15_D-CYC1', dbxrefs=[])
In [9]: p16 = myprimers.primer_l
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-9-e42d2511fc36> in <module>()
----> 1 p16 = myprimers.primer_l
AttributeError: module 'pydna.myprimers' has no attribute 'primer_l'
In [10]: p16 = myprimers.primer_list[15]
In [11]: p16
Out[11]: SeqRecord(seq=Seq('GATAAATACTCTCTGGAAGCAGACG', IUPACAmbiguousDNA()), id='15_D-CYC1', name='15_D-CYC1', description='15_D-CYC1', dbxrefs=[])
In [12]:
There will also be som bugfixes to the gel module to make it more useful.
.