Skip to content

Commit 374bd00

Browse files
committed
Remove runaway quotes
- Causing jekyll build to fail
1 parent f4cbba5 commit 374bd00

File tree

2 files changed

+27
-31
lines changed

2 files changed

+27
-31
lines changed
282 KB
Loading

topics/microbiome/tutorials/metagenomics-assembly/tutorial.md

Lines changed: 27 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ objectives:
1515
- "Explain the difference between co-assembly and individual assembly."
1616
- "Explain the difference between reads, contigs and scaffolds."
1717
- "Explain how tools based on de Bruijn graph work."
18-
- "Evaluate the Quality of the Assembly with QUAST, Bowtie2, and CoverM-Contig."
19-
- "Construct and apply simple assembly pipelines on short read data.""
18+
- "Evaluate the quality of the Assembly with QUAST, Bowtie2, and CoverM-Contig."
19+
- "Construct and apply simple assembly pipelines on short read data."
2020
time_estimation: "2H"
2121
key_points:
2222
- "Assembly groups reads into contigs and scaffolds."
@@ -78,7 +78,7 @@ Assembling seems intuitively similar to putting together a jigsaw puzzle. Essent
7878
> 2. Overlap Layout Consensus
7979
> 3. De Bruijn graphs. The following figure illustrates these strategies in brief.
8080
>
81-
> ![Image shows greedy extention, overlap layout consensus, and de Brujin graphs assembly algorithms](./images/assembly-algorithms.png "Assembly algorithms. Image from {% cite carpentries %}"){:width="70%"}
81+
> ![Image shows greedy extention, overlap layout consensus, and de Brujin graphs assembly algorithms.](./images/assembly-algorithms.png "Assembly algorithms. Image from {% cite carpentries %}."){:width="70%"}
8282
>
8383
> The nice paper {% cite miller2010 %} on assemblers based on these algorithms will help you to better understand how they work.
8484
{: .details}
@@ -262,7 +262,7 @@ Contrary to **MetaSPAdes**, **MEGAHIT** does not output **scaffolds**. **Scaffol
262262
> {: .hands_on}
263263
{: .comment}
264264
265-
> <question-title></question-title>
265+
> <question-title>Contig metrics</question-title>
266266
>
267267
> 1. How many contigs has been for ERR2231568 sample?
268268
> 2. And for ERR2231572?
@@ -279,15 +279,13 @@ Contrary to **MetaSPAdes**, **MEGAHIT** does not output **scaffolds**. **Scaffol
279279
{: .question}
280280
281281
> <details-title>Co-assembly with MetaSPAdes</details-title>
282+
> MetaSPAdes supports co-assembly by passing a list of paired-end read files. MEGAHIT, on the other hand, requires concatenating that list of paired-end read files into a single pair of forward and reverse files.
282283
>
283-
> > <hands-on-title>Assembly with MetaSPAdes</hands-on-title>
284-
> >
285-
> > 1. {% tool [MetaSPAdes](toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/4.2.0+galaxy0) %} with following parameters
286-
> > - *"Pair-end reads input format"*: `Paired-end: list of dataset pairs`
287-
> > - {% icon param-collection %} *"FASTQ file(s): collection"*: `Raw reads`
288-
> > - *"Select k-mer detection option"*: `User specific`
289-
> > - *"K-mer size values"*: `21,33,55,77`
290-
> {: .hands_on}
284+
> 1. {% tool [MetaSPAdes](toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/4.2.0+galaxy0) %} with following parameters
285+
> - *"Pair-end reads input format"*: `Paired-end: list of dataset pairs`
286+
> - {% icon param-collection %} *"FASTQ file(s): collection"*: `Raw reads`
287+
> - *"Select k-mer detection option"*: `User specific`
288+
> - *"K-mer size values"*: `21,33,55,77`
291289
{: .details}
292290
293291
# Quality control of assembly
@@ -312,28 +310,26 @@ Assemblies can be evaluated with **metaQUAST** ({%cite mikheenko2016%}), the met
312310
> - *"Type of assembly"*: `Metagenome`
313311
> - *"Output files"*: `HTML report`, `PDF report`, `Tabular reports`, `Log file`, `Key metric summary (metagenome mode)`, `Krona charts (metagenome mode without reference genomes)`
314312
>
315-
> 2. Inspect the HTML reports
313+
> 2. Inspect the HTML reports:
314+
> ![Screenshot of QUAST HTML report](./images/quast_html_report.png)
316315
{: .hands_on}
317316
318-
> <comment-title></comment-title>
317+
> <hands-on-title>Import MetaQUAST results</hands-on-title>
319318
>
320-
> Since the QUAST process would take times we are just going to import the results:
319+
> 1. Since the QUAST process would take times we are just going to import the results from [Zenodo]({{ page.zenodo_link }}):
321320
>
322-
> > <hands-on-title>Import generated metaQUAST results</hands-on-title>
323-
> >
324-
> > 1. Import the metaQUAST report file from [Zenodo]({{ page.zenodo_link }}) or the Shared Data library:
325-
> >
326-
> > ```text
327-
> > {{ page.zenodo_link }}/files/QUAST_ERR2231567.html
328-
> > {{ page.zenodo_link }}/files/QUAST_ERR2231568.html
329-
> > {{ page.zenodo_link }}/files/QUAST_ERR2231569.html
330-
> > {{ page.zenodo_link }}/files/QUAST_ERR2231570.html
331-
> > {{ page.zenodo_link }}/files/QUAST_ERR2231571.html
332-
> > {{ page.zenodo_link }}/files/QUAST_ERR2231572.html
333-
> > ```
334-
> >
335-
> {: .hands_on}
336-
{: .comment}
321+
> ```text
322+
> {{ page.zenodo_link }}/files/QUAST_ERR2231567.html
323+
> {{ page.zenodo_link }}/files/QUAST_ERR2231568.html
324+
> {{ page.zenodo_link }}/files/QUAST_ERR2231569.html
325+
> {{ page.zenodo_link }}/files/QUAST_ERR2231570.html
326+
> {{ page.zenodo_link }}/files/QUAST_ERR2231571.html
327+
> {{ page.zenodo_link }}/files/QUAST_ERR2231572.html
328+
> ```
329+
>
330+
> {% snippet faqs/galaxy/datasets_import_via_link.md %}
331+
>
332+
{: .hands_on}
337333
338334
QUAST main output are HTML reports which aggregate different metrics.
339335
@@ -634,7 +630,7 @@ This viewer draws contigs ordered from longest to shortest. Let's inspect this v
634630
>
635631
> Open the Contig size viewer for ERR2231568 and define start as `0` and end as `500000`
636632
>
637-
> ![Image shows on the Icarus Contig size viewer for ERR2231568, with a zoom between 0 500000. Below the menu, the contigs are drawn from the longest on the left to the shortest on the right. Each contig is filled with a different color: green for correct, red for misassembled, etc. Below the contigs is dispayed a bar to navigate through the contigs](./images/ERR2231568-contig-size-viewer.png)
633+
> ![Image shows on the Icarus Contig Size Viewer for ERR2231568, with a zoom between 0 500000. Below the menu, the contigs are drawn from the longest on the left to the shortest on the right. Each contig is filled with a different color: green for correct, red for misassembled, etc. Below the contigs is dispayed a bar to navigate through the contigs](./images/ERR2231568-contig-size-viewer.png)
638634
>
639635
> 1. What is the color of the first contig? Why?
640636
> 2. What is the red contig?

0 commit comments

Comments
 (0)