Skip to content

Commit

Permalink
deploy: b843068
Browse files Browse the repository at this point in the history
  • Loading branch information
jordibc committed Sep 20, 2023
1 parent 643ba72 commit c3ab260
Show file tree
Hide file tree
Showing 16 changed files with 5,812 additions and 4 deletions.
310 changes: 310 additions & 0 deletions _modules/ete4/clustering/clustertree.html

Large diffs are not rendered by default.

249 changes: 249 additions & 0 deletions _modules/ete4/coretype/seqgroup.html

Large diffs are not rendered by default.

973 changes: 973 additions & 0 deletions _modules/ete4/gtdb_taxonomy/gtdbquery.html

Large diffs are not rendered by default.

937 changes: 937 additions & 0 deletions _modules/ete4/ncbi_taxonomy/ncbiquery.html

Large diffs are not rendered by default.

140 changes: 140 additions & 0 deletions _modules/ete4/phylo/evolevents.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
<!DOCTYPE html>

<html lang="en" data-content_root="../../../">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ete4.phylo.evolevents &#8212; ETE Toolkit documentation</title>
<link rel="stylesheet" type="text/css" href="../../../_static/pygments.css?v=4f649999" />
<link rel="stylesheet" type="text/css" href="../../../_static/alabaster.css?v=039e1c02" />
<link rel="stylesheet" type="text/css" href="../../../_static/graphviz.css?v=eafc0fe6" />
<script src="../../../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../../../_static/doctools.js?v=888ff710"></script>
<script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
<link rel="author" title="About these documents" href="../../../about.html" />
<link rel="index" title="Index" href="../../../genindex.html" />
<link rel="search" title="Search" href="../../../search.html" />

<link rel="stylesheet" href="../../../_static/custom.css" type="text/css" />


<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />

</head><body>


<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">


<div class="body" role="main">

<h1>Source code for ete4.phylo.evolevents</h1><div class="highlight"><pre>
<span></span><span class="n">__all__</span> <span class="o">=</span> <span class="p">[</span><span class="s2">&quot;EvolEvent&quot;</span><span class="p">]</span>

<div class="viewcode-block" id="EvolEvent">
<a class="viewcode-back" href="../../../reference/reference_phylo.html#ete4.phylo.EvolEvent">[docs]</a>
<span class="k">class</span> <span class="nc">EvolEvent</span><span class="p">:</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot; Basic evolutionary event. It stores all the information about an</span>
<span class="sd"> event(node) ocurred in a phylogenetic tree.</span>

<span class="sd"> :attr:`etype` : ``D`` (Duplication), ``S`` (Speciation), ``L`` (gene loss),</span>

<span class="sd"> :attr:`in_seqs` : the list of sequences in one side of the event.</span>

<span class="sd"> :attr:`out_seqs` : the list of sequences in the other side of the event</span>

<span class="sd"> :attr:`node` : link to the event node in the tree</span>

<span class="sd"> &quot;&quot;&quot;</span>

<span class="k">def</span> <span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">etype</span> <span class="o">=</span> <span class="kc">None</span> <span class="c1"># &#39;S=speciation D=duplication&#39;</span>
<span class="bp">self</span><span class="o">.</span><span class="n">in_seqs</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">out_seqs</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">dup_score</span> <span class="o">=</span> <span class="kc">None</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sos</span> <span class="o">=</span> <span class="kc">None</span>

<span class="c1"># Not documented</span>
<span class="bp">self</span><span class="o">.</span><span class="n">inparalogs</span> <span class="o">=</span> <span class="kc">None</span>
<span class="bp">self</span><span class="o">.</span><span class="n">outparalogs</span> <span class="o">=</span> <span class="kc">None</span>
<span class="bp">self</span><span class="o">.</span><span class="n">outgroup_spcs</span> <span class="o">=</span> <span class="kc">None</span> <span class="c1"># outgroup</span>
<span class="bp">self</span><span class="o">.</span><span class="n">e_newick</span> <span class="o">=</span> <span class="kc">None</span> <span class="c1">#</span>
<span class="bp">self</span><span class="o">.</span><span class="n">root_age</span> <span class="o">=</span> <span class="kc">None</span> <span class="c1"># estimated time for the outgroup node</span>
<span class="bp">self</span><span class="o">.</span><span class="n">orthologs</span> <span class="o">=</span> <span class="kc">None</span>
<span class="bp">self</span><span class="o">.</span><span class="n">famSize</span> <span class="o">=</span> <span class="kc">None</span>
<span class="bp">self</span><span class="o">.</span><span class="n">seed</span> <span class="o">=</span> <span class="kc">None</span> <span class="c1"># Seed ID used to start the phylogenetic pipeline</span>
<span class="bp">self</span><span class="o">.</span><span class="n">branch_supports</span> <span class="o">=</span> <span class="p">[]</span></div>

</pre></div>

</div>

</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="../../../index.html">ETE Toolkit</a></h1>








<h3>Navigation</h3>
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../../about.html">About</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../faqs.html">Frequently Asked Questions (FAQs)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../tutorial/index.html">ETE Tutorial</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../reference/index.html">Reference Guide</a></li>
</ul>

<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="../../../index.html">Documentation overview</a><ul>
<li><a href="../../index.html">Module code</a><ul>
</ul></li>
</ul></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3 id="searchlabel">Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="../../../search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/>
<input type="submit" value="Go" />
</form>
</div>
</div>
<script>document.getElementById('searchbox').style.display = "block"</script>








</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
&copy;2008 - 2023, The ETE Toolkit Team.

|
Powered by <a href="http://sphinx-doc.org/">Sphinx 7.2.6</a>
&amp; <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.13</a>

</div>




</body>
</html>
Loading

0 comments on commit c3ab260

Please sign in to comment.