Skip to content

Commit

Permalink
deploy: 847815c
Browse files Browse the repository at this point in the history
  • Loading branch information
apalleja committed Oct 12, 2024
1 parent ce672f5 commit 2fb7a7c
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 4 deletions.
Binary file modified .doctrees/Instructions.doctree
Binary file not shown.
Binary file modified .doctrees/environment.pickle
Binary file not shown.
60 changes: 58 additions & 2 deletions Instructions.html
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,9 @@
</button>
`);
</script>

<button class="sidebar-toggle secondary-toggle btn btn-sm" title="Toggle secondary sidebar" data-bs-placement="bottom" data-bs-toggle="tooltip">
<span class="fa-solid fa-list"></span>
</button>
</div></div>

</div>
Expand All @@ -338,6 +340,14 @@ <h1>Instructions</h1>
<div id="print-main-content">
<div id="jb-print-toc">

<div>
<h2> Contents </h2>
</div>
<nav aria-label="Page">
<ul class="visible nav section-nav flex-column">
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#opening-the-nextflow-environment">Opening the Nextflow environment</a></li>
</ul>
</nav>
</div>
</div>
</div>
Expand All @@ -349,7 +359,38 @@ <h1>Instructions</h1>

<section class="tex2jax_ignore mathjax_ignore" id="instructions">
<h1>Instructions<a class="headerlink" href="#instructions" title="Link to this heading">#</a></h1>
<p>To be completed</p>
<section id="opening-the-nextflow-environment">
<h2>Opening the Nextflow environment<a class="headerlink" href="#opening-the-nextflow-environment" title="Link to this heading">#</a></h2>
<p>Go to https://github.com/biosustain/dsp_nextflow_training</p>
<p>Click on button <strong>Code</strong> and click on the Codespaces tab. There click on <strong>Create codespace</strong>. Now your Nextflow environment will be built following the instructions in devcontainer.json file (i.e. installing Ubuntu, Docker, VSCode with Docker extension) with additional customization added in the Dockerfile (i.e, installing java and Docker dependencies).</p>
<p>To learn more about Github codespaces go <a class="reference external" href="https://github.com/features/codespaces" rel="noopener noreferrer" target="_blank">here</a></p>
<p>Now, Nextflow should be ready to run in your GitHub Codespace environment! Let’s check that you have a fully functional environment.</p>
<div class="literal-block-wrapper docutils container" id="id1">
<div class="code-block-caption"><span class="caption-text">Verify java installation:</span><a class="headerlink" href="#id1" title="Link to this code">#</a></div>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span>java -version
```

````{code-block}
:caption: Verify Nextflow installation:

nextflow -v
```

````{code-block}
:caption: Nextflow information:

nextflow info
```

````{code-block}
:caption: Verify Docker installation:

docker --version
```
</pre></div>
</div>
</div>
</section>
</section>


Expand Down Expand Up @@ -388,6 +429,21 @@ <h1>Instructions<a class="headerlink" href="#instructions" title="Link to this h



<div class="bd-sidebar-secondary bd-toc"><div class="sidebar-secondary-items sidebar-secondary__inner">


<div class="sidebar-secondary-item">
<div class="page-toc tocsection onthispage">
<i class="fa-solid fa-list"></i> Contents
</div>
<nav class="bd-toc-nav page-toc">
<ul class="visible nav section-nav flex-column">
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#opening-the-nextflow-environment">Opening the Nextflow environment</a></li>
</ul>
</nav></div>

</div></div>


</div>
<footer class="bd-footer-content">
Expand Down
33 changes: 32 additions & 1 deletion _sources/Instructions.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
# Instructions

To be completed
## Opening the Nextflow environment
Go to https://github.com/biosustain/dsp_nextflow_training

Click on button **Code** and click on the Codespaces tab. There click on **Create codespace**. Now your Nextflow environment will be built following the instructions in devcontainer.json file (i.e. installing Ubuntu, Docker, VSCode with Docker extension) with additional customization added in the Dockerfile (i.e, installing java and Docker dependencies).

To learn more about Github codespaces go [here](https://github.com/features/codespaces)

Now, Nextflow should be ready to run in your GitHub Codespace environment! Let's check that you have a fully functional environment.

````{code-block}
:caption: Verify java installation:
java -version
```
````{code-block}
:caption: Verify Nextflow installation:
nextflow -v
```
````{code-block}
:caption: Nextflow information:
nextflow info
```
````{code-block}
:caption: Verify Docker installation:
docker --version
```
2 changes: 1 addition & 1 deletion searchindex.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2fb7a7c

Please sign in to comment.