You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Description: Run RSeQC after aligning reads to Genome in order to remove ribosomal genes. Reads not aligned to Ribosomal genes will be filtered into *.ex.bam. Must have samtools & RSeQc installed.
for i in /leyao/Active/RNA_SEQ_DATA_2024/ANALYSIS/STAR/*sortedByCoord.out.bam; do name=$(basename ${i} .sortedByCoord.out.bam);
echo ${name};
# Index Bam file via samtools (installed in path)
samtools index /leyao/Active/RNA_SEQ_DATA_2024/ANALYSIS/STAR/${name}.sortedByCoord.out.bam
# Remove Ribosomal Gene Reads (desired output will be *.ex.bam)