| Trees | Indices | Help |
|
|---|
|
|
object --+
|
Application.AbstractCommandline --+
|
NovoalignCommandline
Command line wrapper for novoalign by Novocraft. See www.novocraft.com - novoalign is a short read alignment program. Example: >>> from Bio.Sequencing.Applications import NovoalignCommandline >>> novoalign_cline = NovoalignCommandline(database='some_db', ... readfile='some_seq.txt') >>> print novoalign_cline novoalign -d some_db -f some_seq.txt As with all the Biopython application wrappers, you can also add or change options after creating the object: >>> novoalign_cline.format = 'PRBnSEQ' >>> novoalign_cline.r_method='0.99' # limited valid values >>> novoalign_cline.fragment = '250 20' # must be given as a string >>> novoalign_cline.miRNA = 100 >>> print novoalign_cline novoalign -d some_db -f some_seq.txt -F PRBnSEQ -r 0.99 -i 250 20 -m 100 You would typically run the command line with novoalign_cline() or via the Python subprocess module, as described in the Biopython tutorial. Last checked against version: 2.05.04
|
|||
|
|||
|
Inherited from Inherited from Inherited from |
|||
|
|||
|
Inherited from |
|||
|
|||
Create a new instance of a command line wrapper object.
|
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Tue Feb 5 18:02:52 2013 | http://epydoc.sourceforge.net |