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