Skip to content

Commit

Permalink
Built site for gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrebouchard committed Nov 12, 2024
1 parent 2b72c73 commit 2f4e20c
Show file tree
Hide file tree
Showing 8 changed files with 354 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .nojekyll
Original file line number Diff line number Diff line change
@@ -1 +1 @@
11d4beb0
bebaa4a0
1 change: 1 addition & 0 deletions 01_intro.html
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ <h3 class="anchored" data-anchor-id="scientific-workflow">Scientific workflow</h
</div>
</div>
</div>
<p>In a nutshell, nextflow will submit one or several SLURM job for each node in this graph, gather results, and produce some <a href="report.html">nice</a> <a href="timeline.html">reports</a>.</p>
</section>
</section>
<section id="more-information" class="level2">
Expand Down
8 changes: 7 additions & 1 deletion 10_misc.html
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ <h2 id="toc-title">On this page</h2>
<li><a href="#lightweight-code" id="toc-lightweight-code" class="nav-link" data-scroll-target="#lightweight-code">Lightweight code</a></li>
<li><a href="#library" id="toc-library" class="nav-link" data-scroll-target="#library">Library</a></li>
</ul></li>
<li><a href="#report" id="toc-report" class="nav-link" data-scroll-target="#report">Report</a></li>
</ul>
</nav>
</div>
Expand Down Expand Up @@ -550,9 +551,14 @@ <h3 class="anchored" data-anchor-id="library">Library</h3>
<span id="cb14-55"><a href="#cb14-55" aria-hidden="true" tabindex="-1"></a> <span class="cf">return</span> <span class="st">"#!/usr/bin/env julia --threads=1"</span></span>
<span id="cb14-56"><a href="#cb14-56" aria-hidden="true" tabindex="-1"></a><span class="op">}</span></span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
</section>
</section>
<section id="report" class="level2">
<h2 class="anchored" data-anchor-id="report">Report</h2>
<p>Following the <a href="https://www.nextflow.io/docs/latest/reports.html">nextflow documentation</a>, we have set <code>nextflow.config</code> so that <a href="report.html"><code>report.html</code></a>, <a href="timeline.html"><code>timeline.html</code></a> and <a href="dag.html"><code>dag.html</code></a> are automatically created.</p>
<p>To preview them in VS Code, add a VS Code Extension allowing html preview, for example <code>Live Server</code>. Then right click on the html file and select <code>Show Preview</code>.</p>


</section>
</section>

</main> <!-- /main -->
Expand Down
68 changes: 68 additions & 0 deletions dag.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!--
~ Copyright 2013-2024, Seqera Labs
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<html>
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
</head>
<body>
<pre class="mermaid" style="text-align: center;">
flowchart TB
subgraph " "
v0["julia_env"]
v1["toml"]
v4["Channel.fromList"]
v7["julia_env"]
v8["toml"]
v12["plot_script"]
end
v2([instantiate_process])
v3([precompile])
v5([run_julia])
subgraph combine_workflow
v9([instantiate_process])
v10([precompile])
v11([combine_process])
end
v13([plot])
subgraph " "
v14["combined_csvs_folder"]
v15[" "]
end
v6(( ))
v0 --> v2
v1 --> v2
v2 --> v3
v3 --> v5
v3 --> v13
v4 --> v5
v5 --> v6
v7 --> v9
v8 --> v9
v9 --> v10
v10 --> v11
v6 --> v11
v11 --> v13
v12 --> v13
v13 --> v15
v13 --> v14

</pre>
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true, maxTextSize: Number.MAX_SAFE_INTEGER, maxEdges: Number.MAX_SAFE_INTEGER });
</script>
</body>
</html>
32 changes: 16 additions & 16 deletions report.html

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion search.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,16 @@
"Misc"
]
},
{
"objectID": "10_misc.html#report",
"href": "10_misc.html#report",
"title": "Misc",
"section": "Report",
"text": "Report\nFollowing the nextflow documentation, we have set nextflow.config so that report.html, timeline.html and dag.html are automatically created.\nTo preview them in VS Code, add a VS Code Extension allowing html preview, for example Live Server. Then right click on the html file and select Show Preview.",
"crumbs": [
"Misc"
]
},
{
"objectID": "08_containers.html",
"href": "08_containers.html",
Expand Down Expand Up @@ -294,7 +304,7 @@
"href": "01_intro.html#background",
"title": "Intro",
"section": "Background",
"text": "Background\n\nScientific workflow\nA scientific workflow is a directed acyclic graph where each node is a process and each edge between node \\(n\\) to \\(n'\\) denote that at least one output of process \\(n\\) is fed as an input to process \\(n'\\).\nHere is an example from a workflow covered later in this tutorial:\n\n\n\n\n\nflowchart TB\n subgraph \" \"\n v0[\"julia_env\"]\n v1[\"toml\"]\n v4[\"Channel.fromList\"]\n v7[\"julia_env\"]\n v8[\"toml\"]\n v12[\"plot_script\"]\n end\n v2([instantiate_process])\n v3([precompile])\n v5([run_julia])\n subgraph combine_workflow\n v9([instantiate_process])\n v10([precompile])\n v11([combine_process])\n end\n v13([plot])\n subgraph \" \"\n v14[\"combined_csvs_folder\"]\n v15[\" \"]\n end\n v6(( ))\n v0 --&gt; v2\n v1 --&gt; v2\n v2 --&gt; v3\n v3 --&gt; v5\n v3 --&gt; v13\n v4 --&gt; v5\n v5 --&gt; v6\n v7 --&gt; v9\n v8 --&gt; v9\n v9 --&gt; v10\n v10 --&gt; v11\n v6 --&gt; v11\n v11 --&gt; v13\n v12 --&gt; v13\n v13 --&gt; v15\n v13 --&gt; v14",
"text": "Background\n\nScientific workflow\nA scientific workflow is a directed acyclic graph where each node is a process and each edge between node \\(n\\) to \\(n'\\) denote that at least one output of process \\(n\\) is fed as an input to process \\(n'\\).\nHere is an example from a workflow covered later in this tutorial:\n\n\n\n\n\nflowchart TB\n subgraph \" \"\n v0[\"julia_env\"]\n v1[\"toml\"]\n v4[\"Channel.fromList\"]\n v7[\"julia_env\"]\n v8[\"toml\"]\n v12[\"plot_script\"]\n end\n v2([instantiate_process])\n v3([precompile])\n v5([run_julia])\n subgraph combine_workflow\n v9([instantiate_process])\n v10([precompile])\n v11([combine_process])\n end\n v13([plot])\n subgraph \" \"\n v14[\"combined_csvs_folder\"]\n v15[\" \"]\n end\n v6(( ))\n v0 --&gt; v2\n v1 --&gt; v2\n v2 --&gt; v3\n v3 --&gt; v5\n v3 --&gt; v13\n v4 --&gt; v5\n v5 --&gt; v6\n v7 --&gt; v9\n v8 --&gt; v9\n v9 --&gt; v10\n v10 --&gt; v11\n v6 --&gt; v11\n v11 --&gt; v13\n v12 --&gt; v13\n v13 --&gt; v15\n v13 --&gt; v14\n\n\n\n\n\n\nIn a nutshell, nextflow will submit one or several SLURM job for each node in this graph, gather results, and produce some nice reports.",
"crumbs": [
"Introduction"
]
Expand Down
4 changes: 2 additions & 2 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://UBC-Stat-ML.github.io/nf-nest-doc/10_misc.html</loc>
<lastmod>2024-11-12T16:21:01.121Z</lastmod>
<lastmod>2024-11-12T16:53:49.978Z</lastmod>
</url>
<url>
<loc>https://UBC-Stat-ML.github.io/nf-nest-doc/08_containers.html</loc>
Expand All @@ -22,7 +22,7 @@
</url>
<url>
<loc>https://UBC-Stat-ML.github.io/nf-nest-doc/01_intro.html</loc>
<lastmod>2024-11-12T14:26:12.731Z</lastmod>
<lastmod>2024-11-12T16:42:17.851Z</lastmod>
</url>
<url>
<loc>https://UBC-Stat-ML.github.io/nf-nest-doc/02_setup.html</loc>
Expand Down
248 changes: 248 additions & 0 deletions timeline.html

Large diffs are not rendered by default.

0 comments on commit 2f4e20c

Please sign in to comment.