#!/bin/bash
#
#$ -cwd
#$ -j y
#$ -P waxmanlab
#$ -m be
#$ -M kkarri@bu.edu
#$ -o gzip_fastq_IP_Saline.log
#$ -N gzip_fastq_IP_Saline

echo "=========================================================="
echo "Starting on       : $(date)"
echo "Running on node   : $(hostname)"
echo "Current job ID    : $JOB_ID"
echo "Current job name  : $JOB_NAME"
echo "Task index number : $TASK_ID"
echo "=========================================================="

source ~/.bashrc

echo "Converting fastq to fastq.gz for IP_Saline"
sh /restricted/projectnb/waxmanlab/kkarri/samples/fastqfiles/script_fastq_dump.sh /restricted/projectnb/waxmanlab/kkarri/samples/fastqfiles/list_IP_saline
echo "Finished  .............. $(date)"
