Delete all_steps.sh

This commit is contained in:
Ayushi Agrawal 2022-03-09 14:45:11 -08:00 committed by GitHub
parent fa4f98a3cd
commit e72b8b4af6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,28 +0,0 @@
#!/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