Skip to content

Commit

Permalink
deploy: dcb0d6a
Browse files Browse the repository at this point in the history
  • Loading branch information
apalleja committed Oct 24, 2024
1 parent bdb048f commit 93761d9
Show file tree
Hide file tree
Showing 20 changed files with 488 additions and 23 deletions.
Binary file added .doctrees/course_contents/Tutorial.doctree
Binary file not shown.
Binary file modified .doctrees/course_information/Instructions.doctree
Binary file not shown.
Binary file modified .doctrees/environment.pickle
Binary file not shown.
Binary file modified .doctrees/index.doctree
Binary file not shown.
14 changes: 14 additions & 0 deletions _sources/course_contents/Tutorial.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Nextflow fundamentals tutorial
For DTU-Biosustain and DTU-Bioenginnering

Print the current version, system and runtime:
```bash
:caption: Verify java installation:

nextflow info
```

Run hello.nf as it is, passing a parameter from the command line and after changing the code in the second process (rev $y) using –resume
nextflow run hello.nf
nextflow run hello.nf --greeting ‘Hello Albert’
nextflow run hello.nf --greeting ‘Hello Albert’ -resume
8 changes: 4 additions & 4 deletions _sources/course_information/Instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@ To learn more about Github codespaces go [here](https://github.com/features/code

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

```bash
```{code-block} bash
:caption: Verify java installation:
java -version
```

```bash
```{code-block} bash
:caption: Verify Nextflow installation:
nextflow -v
```

```bash
```{code-block} bash
:caption: Nextflow information:
nextflow info
```

```bash
```{code-block} bash
:caption: Verify Docker installation:
docker --version
Expand Down
1 change: 1 addition & 0 deletions _sources/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ course_information/Timing
:caption: Course contents
course_contents/Contents
course_contents/Tutorial
```

```{toctree}
Expand Down
1 change: 1 addition & 0 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Course contents</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="course_contents/Contents.html">Contents</a></li>
<li class="toctree-l1"><a class="reference internal" href="course_contents/Tutorial.html">Nextflow fundamentals tutorial</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="resources.html">Resources</a></li>
Expand Down
7 changes: 4 additions & 3 deletions course_contents/Contents.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<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="next" title="Resources" href="../resources.html" />
<link rel="next" title="Nextflow fundamentals tutorial" href="Tutorial.html" />
<link rel="prev" title="Timing" href="../course_information/Timing.html" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="docsearch:language" content="en"/>
Expand Down Expand Up @@ -172,6 +172,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Course contents</span></p>
<ul class="current nav bd-sidenav">
<li class="toctree-l1 current active"><a class="current reference internal" href="#">Contents</a></li>
<li class="toctree-l1"><a class="reference internal" href="Tutorial.html">Nextflow fundamentals tutorial</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="../resources.html">Resources</a></li>
Expand Down Expand Up @@ -359,11 +360,11 @@ <h1>Contents<a class="headerlink" href="#contents" title="Link to this heading">
</div>
</a>
<a class="right-next"
href="../resources.html"
href="Tutorial.html"
title="next page">
<div class="prev-next-info">
<p class="prev-next-subtitle">next</p>
<p class="prev-next-title">Resources</p>
<p class="prev-next-title">Nextflow fundamentals tutorial</p>
</div>
<i class="fa-solid fa-angle-right"></i>
</a>
Expand Down
Loading

0 comments on commit 93761d9

Please sign in to comment.