From: Peter Amstutz Date: Wed, 17 Feb 2021 00:29:19 +0000 (-0500) Subject: Fix lesson 02 exercise X-Git-Url: https://git.arvados.org/rnaseq-cwl-training.git/commitdiff_plain/66c693705d8852761ef94056fef6e2051d570144 Fix lesson 02 exercise --- diff --git a/_episodes/02-workflow.md b/_episodes/02-workflow.md index eccdeba..768d53a 100644 --- a/_episodes/02-workflow.md +++ b/_episodes/02-workflow.md @@ -317,13 +317,16 @@ correspond to the command line parmeters from our source script. > correspond to the command line arguments used in the source script: > `--runThreadN`, `--genomeDir`, `--outSAMtype`, and > `--outSAMunmapped`. Also identify the name of the output parameter. -> Use these to write the STAR step. > > > ## Solution > > -> > input parameter name: RunThreadN, GenomeDir, ForwardReads, OutSAMtype, SortedByCoordinate, OutSAMunmapped +> > `--runThreadN` → `RunThreadN` +> > `--genomeDir` → `GenomeDir` +> > `--readFilesIn` → `ForwardReads` +> > `--outSAMtype` → `OutSAMtype`, `SortedByCoordinate` +> > `--outSAMunmapped` → `OutSAMunmapped` > > -> > output parameter name: alignment +> > output parameter name: `alignment` > {: .solution} {: .challenge} @@ -359,7 +362,7 @@ correspond to the command line parmeters from our source script. > ## Exercise > -> Using the input and output parameters identified in the last +> Using the input and output parameters identified in the previous > exercise, write the `run`, `in` and `out` sections of the STAR step. > > > ## Solution