https://github.com/arjunrajlaboratory/RajLabSeqTools
Tip revision: d9be6290d732288cf940aee2b06241427a4dc260 authored by Sydney Shaffer on 11 November 2014, 15:07:01 UTC
added a variable for user name - to make it easier for people to modify this script for their own work
added a variable for user name - to make it easier for people to modify this script for their own work
Tip revision: d9be629
unzipAndCat.sh
#!/bin/bash
EXPERIMENT=$1
for dirname in /home/opadovan/C1_Single_Cell_RNA_Seq-11219209/* ; do
cd $dirname
INPUT=`ls *001_R1*`
SAMPLE=`echo $INPUT | cut -d'_' -f 1`
if [ ! -d $EXPERIMENT/raw ]; then
mkdir $EXPERIMENT/raw
fi
if [ ! -d $EXPERIMENT/raw/$SAMPLE ]; then
mkdir $EXPERIMENT/raw/$SAMPLE
fi
for i in *.gz; do
gunzip -c $i > ${i%.*}
done
FASTQR1=`echo $SAMPLE'_R1.fastq'`
FASTQR2=`echo $SAMPLE'_R2.fastq'`
cat *R1*fastq > $EXPERIMENT/raw/$SAMPLE/$FASTQR1
cat *R2*fastq > $EXPERIMENT/raw/$SAMPLE/$FASTQR2
done