From 66c693705d8852761ef94056fef6e2051d570144 Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Tue, 16 Feb 2021 19:29:19 -0500 Subject: [PATCH] Fix lesson 02 exercise --- _episodes/02-workflow.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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 -- 2.30.2