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

« back to all changes in this revision

Viewing changes to qiime_test_data/make_qiime_py_file/my_script.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:
 
1
#!/usr/bin/env python
 
2
# File created on 16 Oct 2012
 
3
from __future__ import division
 
4
 
 
5
__author__ = "Greg Caporaso"
 
6
__copyright__ = "Copyright 2011, The QIIME project"
 
7
__credits__ = ["Greg Caporaso"]
 
8
__license__ = "GPL"
 
9
__version__ = "1.5.0-dev"
 
10
__maintainer__ = "Greg Caporaso"
 
11
__email__ = "gregcaporaso@gmail.com"
 
12
__status__ = "Release"
 
13
 
 
14
 
 
15
 
 
16
from qiime.util import parse_command_line_parameters, make_option
 
17
 
 
18
script_info = {}
 
19
script_info['brief_description'] = ""
 
20
script_info['script_description'] = ""
 
21
script_info['script_usage'] = [("","","")]
 
22
script_info['output_description']= ""
 
23
script_info['required_options'] = [\
 
24
 # Example required option
 
25
 #make_option('-i','--input_fp',type="existing_filepath",help='the input filepath'),\
 
26
]
 
27
script_info['optional_options'] = [\
 
28
 # Example optional option
 
29
 #make_option('-o','--output_dir',type="new_dirpath",help='the output directory [default: %default]'),\
 
30
]
 
31
script_info['version'] = __version__
 
32
 
 
33
 
 
34
 
 
35
def main():
 
36
    option_parser, opts, args =\
 
37
       parse_command_line_parameters(**script_info)
 
38
 
 
39
 
 
40
if __name__ == "__main__":
 
41
    main()
 
 
b'\\ No newline at end of file'