https://github.com/arjunrajlaboratory/RajLabSeqTools
Revision 425610ffb041dc289503471489a9435be01bc2a1 authored by Ian Mellis on 07 January 2016, 19:25:08 UTC, committed by Ian Mellis on 07 January 2016, 19:25:08 UTC
1 parent f8c9a19
Tip revision: 425610ffb041dc289503471489a9435be01bc2a1 authored by Ian Mellis on 07 January 2016, 19:25:08 UTC
Adding step to melt count data from all samples from an experiment to a single tsv file
Adding step to melt count data from all samples from an experiment to a single tsv file
Tip revision: 425610f
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
Computing file changes ...