user_guide.html 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. <!DOCTYPE html>
  2. <!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
  3. <!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
  4. <head>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>User’s Guide &mdash; Tripal BLAST documentation</title>
  8. <link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
  9. <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
  10. <link rel="stylesheet" href="_static/theme_overrides.css" type="text/css" />
  11. <link rel="index" title="Index" href="genindex.html" />
  12. <link rel="search" title="Search" href="search.html" />
  13. <link rel="next" title="Highlighted Functionality" href="user_guide/features.html" />
  14. <link rel="prev" title="Tripal BLAST Documentation!" href="index.html" />
  15. <script src="_static/js/modernizr.min.js"></script>
  16. </head>
  17. <body class="wy-body-for-nav">
  18. <div class="wy-grid-for-nav">
  19. <nav data-toggle="wy-nav-shift" class="wy-nav-side">
  20. <div class="wy-side-scroll">
  21. <div class="wy-side-nav-search">
  22. <a href="index.html" class="icon icon-home"> Tripal BLAST
  23. </a>
  24. <div role="search">
  25. <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
  26. <input type="text" name="q" placeholder="Search docs" />
  27. <input type="hidden" name="check_keywords" value="yes" />
  28. <input type="hidden" name="area" value="default" />
  29. </form>
  30. </div>
  31. </div>
  32. <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
  33. <p class="caption"><span class="caption-text">Contents:</span></p>
  34. <ul class="current">
  35. <li class="toctree-l1 current"><a class="current reference internal" href="#">User’s Guide</a><ul>
  36. <li class="toctree-l2"><a class="reference internal" href="user_guide/features.html">Highlighted Functionality</a></li>
  37. <li class="toctree-l2"><a class="reference internal" href="user_guide/install.html">Installation</a></li>
  38. </ul>
  39. </li>
  40. </ul>
  41. </div>
  42. </div>
  43. </nav>
  44. <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
  45. <nav class="wy-nav-top" aria-label="top navigation">
  46. <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
  47. <a href="index.html">Tripal BLAST</a>
  48. </nav>
  49. <div class="wy-nav-content">
  50. <div class="rst-content">
  51. <div role="navigation" aria-label="breadcrumbs navigation">
  52. <ul class="wy-breadcrumbs">
  53. <li><a href="index.html">Docs</a> &raquo;</li>
  54. <li>User’s Guide</li>
  55. <li class="wy-breadcrumbs-aside">
  56. <a href="_sources/user_guide.rst.txt" rel="nofollow"> View page source</a>
  57. </li>
  58. </ul>
  59. <hr/>
  60. </div>
  61. <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
  62. <div itemprop="articleBody">
  63. <div class="section" id="user-s-guide">
  64. <h1>User’s Guide<a class="headerlink" href="#user-s-guide" title="Permalink to this headline">¶</a></h1>
  65. <p>This module provides a basic interface to allow your users to utilize your server’s NCBI BLAST+.</p>
  66. <p>Specifically it provides blast program-specific forms (blastn, blastp, tblastn, blastx are supported). In the future, there will be a single form where you will be able to select either a nucleotide or a protein database to BLAST against regardless of the type of query and it will decide which BLAST program to use based on the combination of query/database type (ie: if you selected a protein database on the nucleotide BLAST form then blastx would be used).</p>
  67. <p>BLAST submissions result in the creation of Tripal jobs which then need to run from the command-line. This ensures that long running BLASTs will not cause page time-outs but does add some management overhead and might result in longer waits for users depending on how often you have cron set to run Tripal jobs. You can alternatively use the Tripal Jobs Daemon to automate running of Tripal Jobs reducing user wait time and your own workload.</p>
  68. <p>The BLAST results page is an expandable summary table with each hit being listed as a row in the table with query/hit/e-value information. The row can then be expanded to include additional information including the alignment. Download formats are allow users to download these results in the familiar tabular, GFF3 or HTML NCBI formats.</p>
  69. <div class="toctree-wrapper compound">
  70. <p class="caption"><span class="caption-text">Contents:</span></p>
  71. <ul>
  72. <li class="toctree-l1"><a class="reference internal" href="user_guide/features.html">Highlighted Functionality</a></li>
  73. <li class="toctree-l1"><a class="reference internal" href="user_guide/install.html">Installation</a><ul>
  74. <li class="toctree-l2"><a class="reference internal" href="user_guide/install.html#quickstart">QuickStart</a></li>
  75. <li class="toctree-l2"><a class="reference internal" href="user_guide/install.html#install-ncbi-blast">Install NCBI BLAST+</a></li>
  76. <li class="toctree-l2"><a class="reference internal" href="user_guide/install.html#install-tripal-blast">Install Tripal BLAST</a></li>
  77. <li class="toctree-l2"><a class="reference internal" href="user_guide/install.html#configure-tripal-blast">Configure Tripal BLAST</a></li>
  78. </ul>
  79. </li>
  80. </ul>
  81. </div>
  82. </div>
  83. </div>
  84. </div>
  85. <footer>
  86. <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
  87. <a href="user_guide/features.html" class="btn btn-neutral float-right" title="Highlighted Functionality" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
  88. <a href="index.html" class="btn btn-neutral" title="Tripal BLAST Documentation!" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
  89. </div>
  90. <hr/>
  91. <div role="contentinfo">
  92. <p>
  93. &copy; Copyright 2018, University of Saskatchewan with the Legume Federation.
  94. </p>
  95. </div>
  96. Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/rtfd/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
  97. </footer>
  98. </div>
  99. </div>
  100. </section>
  101. </div>
  102. <script type="text/javascript">
  103. var DOCUMENTATION_OPTIONS = {
  104. URL_ROOT:'./',
  105. VERSION:'',
  106. LANGUAGE:'None',
  107. COLLAPSE_INDEX:false,
  108. FILE_SUFFIX:'.html',
  109. HAS_SOURCE: true,
  110. SOURCELINK_SUFFIX: '.txt'
  111. };
  112. </script>
  113. <script type="text/javascript" src="_static/jquery.js"></script>
  114. <script type="text/javascript" src="_static/underscore.js"></script>
  115. <script type="text/javascript" src="_static/doctools.js"></script>
  116. <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
  117. <script type="text/javascript" src="_static/js/theme.js"></script>
  118. <script type="text/javascript">
  119. jQuery(function () {
  120. SphinxRtdTheme.Navigation.enable(true);
  121. });
  122. </script>
  123. </body>
  124. </html>