3
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
1 #!/usr/bin/env python
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
2 # -*- coding: utf-8 -*-
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
3 #
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
4 # riboplot documentation build configuration file, created by
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
5 # sphinx-quickstart on Tue Jul 9 22:26:36 2013.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
6 #
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
7 # This file is execfile()d with the current directory set to its
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
8 # containing dir.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
9 #
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
10 # Note that not all possible configuration values are present in this
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
11 # autogenerated file.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
12 #
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
13 # All configuration values have a default; values that are commented out
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
14 # serve to show the default.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
15
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
16 import sys
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
17 import os
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
18
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
19 # If extensions (or modules to document with autodoc) are in another
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
20 # directory, add these directories to sys.path here. If the directory is
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
21 # relative to the documentation root, use os.path.abspath to make it
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
22 # absolute, like shown here.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
23 #sys.path.insert(0, os.path.abspath('.'))
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
24
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
25 # Get the project root dir, which is the parent dir of this
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
26 cwd = os.getcwd()
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
27 project_root = os.path.dirname(cwd)
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
28
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
29 # Insert the project root dir as the first element in the PYTHONPATH.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
30 # This lets us ensure that the source package is imported, and that its
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
31 # version is used.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
32 sys.path.insert(0, project_root)
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
33
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
34 import riboplot
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
35
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
36 # -- General configuration ---------------------------------------------
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
37
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
38 # If your documentation needs a minimal Sphinx version, state it here.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
39 #needs_sphinx = '1.0'
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
40
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
41 # Add any Sphinx extension module names here, as strings. They can be
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
42 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
43 extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode']
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
44
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
45 # Add any paths that contain templates here, relative to this directory.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
46 templates_path = ['_templates']
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
47
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
48 # The suffix of source filenames.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
49 source_suffix = '.rst'
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
50
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
51 # The encoding of source files.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
52 #source_encoding = 'utf-8-sig'
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
53
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
54 # The master toctree document.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
55 master_doc = 'index'
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
56
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
57 # General information about the project.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
58 project = u'RiboPlot'
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
59 copyright = u'2015, Vimalkumar Velayudhan'
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
60
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
61 # The version info for the project you're documenting, acts as replacement
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
62 # for |version| and |release|, also used in various other places throughout
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
63 # the built documents.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
64 #
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
65 # The short X.Y version.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
66 version = riboplot.__version__
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
67 # The full version, including alpha/beta/rc tags.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
68 release = riboplot.__version__
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
69
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
70 # The language for content autogenerated by Sphinx. Refer to documentation
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
71 # for a list of supported languages.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
72 #language = None
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
73
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
74 # There are two options for replacing |today|: either, you set today to
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
75 # some non-false value, then it is used:
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
76 #today = ''
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
77 # Else, today_fmt is used as the format for a strftime call.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
78 #today_fmt = '%B %d, %Y'
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
79
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
80 # List of patterns, relative to source directory, that match files and
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
81 # directories to ignore when looking for source files.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
82 exclude_patterns = ['_build']
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
83
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
84 # The reST default role (used for this markup: `text`) to use for all
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
85 # documents.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
86 #default_role = None
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
87
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
88 # If true, '()' will be appended to :func: etc. cross-reference text.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
89 #add_function_parentheses = True
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
90
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
91 # If true, the current module name will be prepended to all description
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
92 # unit titles (such as .. function::).
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
93 #add_module_names = True
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
94
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
95 # If true, sectionauthor and moduleauthor directives will be shown in the
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
96 # output. They are ignored by default.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
97 #show_authors = False
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
98
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
99 # The name of the Pygments (syntax highlighting) style to use.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
100 pygments_style = 'sphinx'
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
101
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
102 # A list of ignored prefixes for module index sorting.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
103 #modindex_common_prefix = []
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
104
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
105 # If true, keep warnings as "system message" paragraphs in the built
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
106 # documents.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
107 #keep_warnings = False
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
108
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
109
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
110 # -- Options for HTML output -------------------------------------------
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
111
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
112 # The theme to use for HTML and HTML Help pages. See the documentation for
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
113 # a list of builtin themes.
|
7
096c6bbf4a04
Bugfix: (ribocounts) Read length was sent as rnafile argument in check_optional_arguments
Vimalkumar Velayudhan <vimal@biotechcoder.com>
diff
changeset
|
114 html_theme = 'alabaster'
|
3
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
115
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
116 # Theme options are theme-specific and customize the look and feel of a
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
117 # theme further. For a list of options available for each theme, see the
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
118 # documentation.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
119 #html_theme_options = {}
|
7
096c6bbf4a04
Bugfix: (ribocounts) Read length was sent as rnafile argument in check_optional_arguments
Vimalkumar Velayudhan <vimal@biotechcoder.com>
diff
changeset
|
120 html_theme_options = {
|
8
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
diff
changeset
|
121 'font_family': '"Source Sans Pro", Ubuntu, sans-serif',
|
844eb8c36f32
Add help section in xml and update usage documentation
Vimalkumar Velayudhan <vimal@biotechcoder.com>
diff
changeset
|
122 'head_font_family': 'Cabin, Ubuntu, sans-serif',
|
7
096c6bbf4a04
Bugfix: (ribocounts) Read length was sent as rnafile argument in check_optional_arguments
Vimalkumar Velayudhan <vimal@biotechcoder.com>
diff
changeset
|
123 'code_font_family': '"Source Code Pro", "Ubuntu Mono", monospace',
|
096c6bbf4a04
Bugfix: (ribocounts) Read length was sent as rnafile argument in check_optional_arguments
Vimalkumar Velayudhan <vimal@biotechcoder.com>
diff
changeset
|
124 'code_font_size': '0.8em',
|
096c6bbf4a04
Bugfix: (ribocounts) Read length was sent as rnafile argument in check_optional_arguments
Vimalkumar Velayudhan <vimal@biotechcoder.com>
diff
changeset
|
125 'pre_bg': '#f9f9f9', 'note_bg': '#e6f7ff', 'note_border': '#ccefff',
|
096c6bbf4a04
Bugfix: (ribocounts) Read length was sent as rnafile argument in check_optional_arguments
Vimalkumar Velayudhan <vimal@biotechcoder.com>
diff
changeset
|
126 'sidebar_list': '#777777', 'body_text': '#515151', 'show_powered_by': False}
|
096c6bbf4a04
Bugfix: (ribocounts) Read length was sent as rnafile argument in check_optional_arguments
Vimalkumar Velayudhan <vimal@biotechcoder.com>
diff
changeset
|
127
|
3
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
128
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
129 # Add any paths that contain custom themes here, relative to this directory.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
130 #html_theme_path = []
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
131
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
132 # The name for this set of Sphinx documents. If None, it defaults to
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
133 # "<project> v<release> documentation".
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
134 #html_title = None
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
135
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
136 # A shorter title for the navigation bar. Default is the same as
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
137 # html_title.
|
14
|
138 html_short_title = 'RiboPlot'
|
3
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
139
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
140 # The name of an image file (relative to this directory) to place at the
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
141 # top of the sidebar.
|
14
|
142 html_logo = '_static/riboplot-logo.png'
|
3
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
143
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
144 # The name of an image file (within the static path) to use as favicon
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
145 # of the docs. This file should be a Windows icon file (.ico) being
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
146 # 16x16 or 32x32 pixels large.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
147 #html_favicon = None
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
148
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
149 # Add any paths that contain custom static files (such as style sheets)
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
150 # here, relative to this directory. They are copied after the builtin
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
151 # static files, so a file named "default.css" will overwrite the builtin
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
152 # "default.css".
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
153 html_static_path = ['_static']
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
154
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
155 # If not '', a 'Last updated on:' timestamp is inserted at every page
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
156 # bottom, using the given strftime format.
|
14
|
157 html_last_updated_fmt = '%b %d, %Y'
|
3
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
158
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
159 # If true, SmartyPants will be used to convert quotes and dashes to
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
160 # typographically correct entities.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
161 #html_use_smartypants = True
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
162
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
163 # Custom sidebar templates, maps document names to template names.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
164 #html_sidebars = {}
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
165
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
166 # Additional templates that should be rendered to pages, maps page names
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
167 # to template names.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
168 #html_additional_pages = {}
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
169
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
170 # If false, no module index is generated.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
171 #html_domain_indices = True
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
172
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
173 # If false, no index is generated.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
174 #html_use_index = True
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
175
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
176 # If true, the index is split into individual pages for each letter.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
177 #html_split_index = False
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
178
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
179 # If true, links to the reST sources are added to the pages.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
180 #html_show_sourcelink = True
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
181
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
182 # If true, "Created using Sphinx" is shown in the HTML footer.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
183 # Default is True.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
184 #html_show_sphinx = True
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
185
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
186 # If true, "(C) Copyright ..." is shown in the HTML footer.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
187 # Default is True.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
188 #html_show_copyright = True
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
189
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
190 # If true, an OpenSearch description file will be output, and all pages
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
191 # will contain a <link> tag referring to it. The value of this option
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
192 # must be the base URL from which the finished HTML is served.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
193 #html_use_opensearch = ''
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
194
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
195 # This is the file name suffix for HTML files (e.g. ".xhtml").
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
196 #html_file_suffix = None
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
197
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
198 # Output file base name for HTML help builder.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
199 htmlhelp_basename = 'riboplotdoc'
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
200
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
201
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
202 # -- Options for LaTeX output ------------------------------------------
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
203
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
204 latex_elements = {
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
205 # The paper size ('letterpaper' or 'a4paper').
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
206 #'papersize': 'letterpaper',
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
207
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
208 # The font size ('10pt', '11pt' or '12pt').
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
209 #'pointsize': '10pt',
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
210
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
211 # Additional stuff for the LaTeX preamble.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
212 #'preamble': '',
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
213 }
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
214
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
215 # Grouping the document tree into LaTeX files. List of tuples
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
216 # (source start file, target name, title, author, documentclass
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
217 # [howto/manual]).
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
218 latex_documents = [
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
219 ('index', 'riboplot.tex',
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
220 u'RiboPlot Documentation',
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
221 u'Vimalkumar Velayudhan', 'manual'),
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
222 ]
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
223
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
224 # The name of an image file (relative to this directory) to place at
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
225 # the top of the title page.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
226 #latex_logo = None
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
227
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
228 # For "manual" documents, if this is true, then toplevel headings
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
229 # are parts, not chapters.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
230 #latex_use_parts = False
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
231
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
232 # If true, show page references after internal links.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
233 #latex_show_pagerefs = False
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
234
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
235 # If true, show URL addresses after external links.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
236 #latex_show_urls = False
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
237
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
238 # Documents to append as an appendix to all manuals.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
239 #latex_appendices = []
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
240
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
241 # If false, no module index is generated.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
242 #latex_domain_indices = True
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
243
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
244
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
245 # -- Options for manual page output ------------------------------------
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
246
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
247 # One entry per manual page. List of tuples
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
248 # (source start file, name, description, authors, manual section).
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
249 man_pages = [
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
250 ('index', 'riboplot',
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
251 u'RiboPlot Documentation',
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
252 [u'Vimalkumar Velayudhan'], 1)
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
253 ]
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
254
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
255 # If true, show URL addresses after external links.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
256 #man_show_urls = False
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
257
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
258
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
259 # -- Options for Texinfo output ----------------------------------------
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
260
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
261 # Grouping the document tree into Texinfo files. List of tuples
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
262 # (source start file, target name, title, author,
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
263 # dir menu entry, description, category)
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
264 texinfo_documents = [
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
265 ('index', 'riboplot',
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
266 u'RiboPlot Documentation',
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
267 u'Vimalkumar Velayudhan',
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
268 'riboplot',
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
269 'One line description of project.',
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
270 'Miscellaneous'),
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
271 ]
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
272
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
273 # Documents to append as an appendix to all manuals.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
274 #texinfo_appendices = []
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
275
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
276 # If false, no module index is generated.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
277 #texinfo_domain_indices = True
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
278
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
279 # How to display URL addresses: 'footnote', 'no', or 'inline'.
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
280 #texinfo_show_urls = 'footnote'
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
281
|
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
282 # If true, do not generate a @detailmenu in the "Top" node's menu.
|
7
096c6bbf4a04
Bugfix: (ribocounts) Read length was sent as rnafile argument in check_optional_arguments
Vimalkumar Velayudhan <vimal@biotechcoder.com>
diff
changeset
|
283 #texinfo_no_detailmenu = False
|