Added htseq-count snippet + updated STAR snippet indicating prebuilt genome index.

This commit is contained in:
Hylke C. Donker
2021-02-25 12:40:17 +01:00
parent 4443b3c2a9
commit e852072235
2 changed files with 44 additions and 14 deletions

View File

@ -0,0 +1,21 @@
#!/bin/bash
PROJECT_DIRECTORY="/groups/umcg-griac/tmp01/rawdata/$(whoami)/rnaseq"
COUNT_OUTPUT="${PROJECT_DIRECTORY}/step5"
mkdir -p "${COUNT_OUTPUT}"
# Storage location of annotation on Gearshift.
REFERENCE_DATA="/groups/umcg-griac/prm03/rawdata/reference/genome"
GTF_FILE="${REFERENCE_DATA}/Homo_sapiens.GRCh38.100.gtf"
# Where our alignment file was stored.
BAM="${PROJECT_DIRECTORY}/step3/alignment/sample1_Aligned.sortedByCoord.out.bam"
# Compute counts using htseq-count.
#
# N.B.:
# - If you are processing multiple files, you can use the --nprocesses flag to
# compute the files in parallel.
htseq-count \
${BAM} \
${GTF_FILE} \
> ${COUNT_OUTPUT}/counts.txt