diff options
| -rw-r--r-- | _posts/2024-02-11-k-mer.md | 1 | ||||
| -rw-r--r-- | index.html | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/_posts/2024-02-11-k-mer.md b/_posts/2024-02-11-k-mer.md index 1f7d288..c3e4a17 100644 --- a/_posts/2024-02-11-k-mer.md +++ b/_posts/2024-02-11-k-mer.md | |||
| @@ -125,6 +125,7 @@ optimized for efficiency and scalability. | |||
| 125 | Now that we have the basics out of the way we can start implementing basic k-mer | 125 | Now that we have the basics out of the way we can start implementing basic k-mer |
| 126 | counter in C. | 126 | counter in C. |
| 127 | 127 | ||
| 128 | ## Implementing sequence reading in C | ||
| 128 | 129 | ||
| 129 | ## Additional reading material | 130 | ## Additional reading material |
| 130 | 131 | ||
| @@ -15,7 +15,7 @@ until it surrenders its mysteries to you.</i></p> | |||
| 15 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Articles" class="list"> | 15 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Articles" class="list"> |
| 16 | <meta itemprop="name" content="Article list"> | 16 | <meta itemprop="name" content="Article list"> |
| 17 | {% for post in site.posts %} | 17 | {% for post in site.posts %} |
| 18 | {% if post.type == "post" %} | 18 | {% if post.type == "post" and post.draft == false %} |
| 19 | <li> | 19 | <li> |
| 20 | <a href="{{ post.url }}">{{ post.title }}</a> | 20 | <a href="{{ post.url }}">{{ post.title }}</a> |
| 21 | </li> | 21 | </li> |
| @@ -27,7 +27,7 @@ until it surrenders its mysteries to you.</i></p> | |||
| 27 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Notes" class="list"> | 27 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Notes" class="list"> |
| 28 | <meta itemprop="name" content="Note list"> | 28 | <meta itemprop="name" content="Note list"> |
| 29 | {% for post in site.posts %} | 29 | {% for post in site.posts %} |
| 30 | {% if post.type == "note" %} | 30 | {% if post.type == "note" and post.draft == false %} |
| 31 | <li> | 31 | <li> |
| 32 | <a href="{{ post.url }}">{{ post.title }}</a> | 32 | <a href="{{ post.url }}">{{ post.title }}</a> |
| 33 | </li> | 33 | </li> |
