Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholascwho authored Jun 29, 2023
1 parent 368e61c commit a8fc25a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions HNSCC Explant on Hydrogel 2023/STAR script.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

for i in `ls`;
do
zcat $i/*1.fq.gz >> ../combined/$i.1.fq;
echo $i.1 ;
zcat $i/*2.fq.gz >> ../combined/$i.2.fq;
echo $i.2 ;
STAR --genomeDir ../NCBI_hg38_star_149bp_overhang --runThreadN 24 --readFilesIn ../combined/$i.1.fq ../combined/$i.2.fq --outFileNamePrefix ../result/$i/$i_ --sjdbOverhang 149 --outSAMtype BAM Unsorted --quantMode TranscriptomeSAM GeneCounts;
echo $i
rm ../combined/$i.1.fq ../combined/$i.2.fq;
rm $i/*1.fq.gz $i/*2.fq.gz;
done

0 comments on commit a8fc25a

Please sign in to comment.