~ubuntu-branches/ubuntu/trusty/qiime/trusty

« back to all changes in this revision

Viewing changes to scripts/blast_wrapper.py

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2013-06-17 18:28:26 UTC
  • mfrom: (9.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20130617182826-376az5ad080a0sfe
Tags: 1.7.0+dfsg-1
Upload preparations done for BioLinux to Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
__copyright__ = "Copyright 2011, The QIIME Project"
7
7
__credits__ = ["Greg Caporaso", "Jesse Stombaugh"]
8
8
__license__ = "GPL"
9
 
__version__ = "1.5.0"
 
9
__version__ = "1.7.0"
10
10
__maintainer__ = "Greg Caporaso"
11
11
__email__ = "gregcaporaso@gmail.com"
12
12
__status__ = "Release"
24
24
script_info['script_description']="""This script is a functionally-limited interface to the qiime.util.qiime_blast_seqs function, primarily useful for testing purposes. Once that function has been integrated into qiime as the primary blast interface it will move to PyCogent. An expanded version of this command line interface may replace the script functionality of cogent.app.blast at that point."""
25
25
script_info['script_usage']=[]
26
26
script_info['script_usage'].append(("""Example:""","""Blast all sequences in inseqs.fasta (-i) against a BLAST db constructed \
27
 
from refseqs.fasta (-r).""","""%prog -i inseqs.fasta -r refseqs.fasta"""))
 
27
from refseqs.fasta (-r).""","""%prog -i $PWD/inseqs.fasta -r $PWD/refseqs.fasta"""))
28
28
script_info['output_description']="""This is a utility program, which returns BLAST results."""
29
29
script_info['required_options']=[\
30
30
options_lookup['fasta_as_primary_input'],
31
 
make_option('-r','--refseqs_fp',\
 
31
make_option('-r','--refseqs_fp', type='string',\
32
32
    help='path to blast database as a fasta file')
33
33
]
34
34
script_info['optional_options']=[\
57
57
 
58
58
if __name__ == "__main__":
59
59
    main()
60
 
    
 
 
b'\\ No newline at end of file'
 
60