Added a bash script with all steps and updated slide deck

This commit is contained in:
Krishna Choudhary 2020-07-08 06:16:57 -07:00
parent 5005eb575d
commit 0c3212dca4
3 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,28 @@
#!/bin/bash
fastqc Bacteria_GATTACA_L001_R1_001.fastq
cutadapt \
-a file:Adapter_Sequence.fasta \
-o trimmed.fastq \
Bacteria_GATTACA_L001_R1_001.fastq
fastqc trimmed.fastq
mkdir star_index
STAR \
--runMode genomeGenerate \
--genomeDir ./star_index \
--genomeFastaFiles rDNA_sequence.fasta \
--genomeSAindexNbases 3
STAR \
--genomeDir ./star_index \
--readFilesIn ./trimmed.fastq
featureCounts \
-a rDNA.gtf \
-t CDS \
-o counts.txt \
Aligned.out.sam