Skip to content

Commit 5eb501b

Browse files
authored
Tried fixing dropdown and updated transcript reference
1 parent bb7a963 commit 5eb501b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lessons/12_automating_workflow.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Next we'll initialize 3 more variables named `genome`, `transcriptome` and `gtf`
173173
# directory with the genome and transcriptome index files + name of the gene annotation file
174174

175175
genome=/n/groups/hbctraining/intro_rnaseq_hpc/reference_data_ensembl38/ensembl38_STAR_index
176-
transcriptome=/n/groups/hbctraining/rna-seq_2019_02/reference_data/salmon_index
176+
transcriptome=/n/groups/hbctraining/rna-seq_2023_02/salmon_index/ref-transcripts
177177
gtf=/n/groups/hbctraining/intro_rnaseq_hpc/reference_data_ensembl38/Homo_sapiens.GRCh38.92.1.gtf
178178
```
179179

@@ -295,7 +295,7 @@ The <code>rnaseq_analysis_on_input_file.sh</code> should look like:
295295
<pre>
296296
&#35;!/bin/bash/
297297
&#35; This script takes a FASTQ file of RNA-seq data, runs FastQC, STAR, Qualimap and Salmon.
298-
&#35; USAGE: sh rnaseq_analysis_on_input_file.sh <name of FASTQ file>
298+
&#35; USAGE: sh rnaseq_analysis_on_input_file.sh &lt;name of FASTQ file&gt;
299299
&#35; change directories to /n/scratch/ so that all the analysis is stored there.<br>
300300
cd /n/scratch/users/r/$USER/rnaseq_hbc-workshop/<br>
301301
&#35; initialize a variable with an intuitive name to store the name of the input FASTQ file<br>
@@ -307,7 +307,7 @@ echo "Sample name is ${samplename}"<br>
307307
cores=6<br>
308308
&#35; directory with the genome and transcriptome index files + name of the gene annotation file<br>
309309
genome=/n/groups/hbctraining/intro_rnaseq_hpc/reference_data_ensembl38/ensembl38_STAR_index
310-
transcriptome=/n/groups/hbctraining/rna-seq_2019_02/reference_data/salmon_index
310+
transcriptome=/n/groups/hbctraining/rna-seq_2023_02/salmon_index/ref-transcripts
311311
gtf=/n/groups/hbctraining/intro_rnaseq_hpc/reference_data_ensembl38/Homo_sapiens.GRCh38.92.1.gtf<br>
312312
&#35; make all of the output directories
313313
&#35; The -p option means mkdir will create the whole path if it

0 commit comments

Comments
 (0)