mirror of
https://github.com/gladstone-institutes/Bioinformatics-Workshops.git
synced 2025-11-30 09:45:43 -08:00
Added a bash script with all steps and updated slide deck
This commit is contained in:
parent
5005eb575d
commit
0c3212dca4
3 changed files with 28 additions and 0 deletions
Binary file not shown.
Binary file not shown.
28
intro-rna-seq/all_steps.sh
Normal file
28
intro-rna-seq/all_steps.sh
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue