Changeset 257
- Timestamp:
- 12/12/07 12:50:26 (1 year ago)
- Files:
-
- trunk/motility/doc/Makefile (modified) (1 diff)
- trunk/motility/doc/index.html (modified) (1 diff)
- trunk/motility/doc/index.txt (modified) (1 diff)
- trunk/motility/doc/motility-introduction.html (deleted)
- trunk/motility/doc/python-interface.html (modified) (2 diffs)
- trunk/motility/doc/python-interface.txt (modified) (1 diff)
- trunk/motility/doc/python-tutorial.html (added)
- trunk/motility/doc/python-tutorial.txt (moved) (moved from trunk/motility/doc/motility-introduction.txt) (1 diff)
- trunk/motility/doc/run-doctests.py (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/motility/doc/Makefile
r251 r257 2 2 rst2html.py $< $@ 3 3 4 all: index.html intro.html python-interface.html c++-interface.html motility-introduction.html 4 all: index.html intro.html python-interface.html c++-interface.html \ 5 python-tutorial.html trunk/motility/doc/index.html
r251 r257 311 311 <li><a class="reference" href="c++-interface.html">C++ API</a></li> 312 312 <li><a class="reference" href="python-interface.html">Python interface</a></li> 313 <li><a class="reference" href=" motility-introduction.html">Doctest-style tutorial on motility</a></li>313 <li><a class="reference" href="python-tutorial.html">Tutorial</a></li> 314 314 </ul> 315 315 </blockquote> 316 316 <pre class="literal-block"> 317 CTB 12/0 5317 CTB 12/07 318 318 </pre> 319 319 </div> trunk/motility/doc/index.txt
r251 r257 26 26 * `Python interface`_ 27 27 28 * ` Doctest-style tutorial on motility <motility-introduction.html>`__28 * `Tutorial <python-tutorial.html>`__ 29 29 30 30 :: 31 31 32 CTB 12/0 532 CTB 12/07 33 33 34 34 .. _Introduction to motility and motif types: intro.html trunk/motility/doc/python-interface.html
r245 r257 319 319 <pre class="literal-block"> 320 320 energy = operator.calc_energy(match) 321 energy = operator.calc_score(match) 321 322 322 323 score = pwm.calc_score(match) … … 355 356 <p>'start' is always less than 'end', 'orientation' is 1 or -1, and 'match' is 356 357 the matching string in the appropriate orientation (forward or RC).</p> 358 <div class="section"> 359 <h1><a id="building-motifs-and-matrices" name="building-motifs-and-matrices">Building motifs and matrices</a></h1> 360 <p>See <a class="reference" href="python-tutorial.html">the Python tutorial</a> for more information. 361 .. @CTB</p> 362 </div> 357 363 <div class="section"> 358 364 <h1><a id="using-motility-an-example" name="using-motility-an-example">Using <tt class="docutils literal"><span class="pre">motility</span></tt>: An Example</a></h1> trunk/motility/doc/python-interface.txt
r252 r257 84 84 ---------------------------- 85 85 86 See `the tutorial <motility-introduction.html>`__ for more information.86 See `the Python tutorial <python-tutorial.html>`__ for more information. 87 87 .. @CTB 88 88 trunk/motility/doc/python-tutorial.txt
r256 r257 222 222 another reason is that their scores represent an information-theoretic 223 223 or statistical-mechanical measure on motif content. Check out Stormo 224 (200 7) for a review.224 (2000) for a review. 225 225 226 226 General matrix utility functions
