https://github.com/arjunrajlaboratory/RajLabSeqTools
Revision 8f67a7b2d32b1aca9d3725ff49f51f32b14e7bad authored by Arjun Raj on 19 June 2014, 12:01:10 UTC, committed by Arjun Raj on 19 June 2014, 12:01:10 UTC
1 parent 6311fa1
Raw File
Tip revision: 8f67a7b2d32b1aca9d3725ff49f51f32b14e7bad authored by Arjun Raj on 19 June 2014, 12:01:10 UTC
Changed name to fastq instead of fasta
Tip revision: 8f67a7b
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

back to top