forked from ciernialab/Alder-ChIPseq-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SRRpull.sh
50 lines (36 loc) · 1.52 KB
/
SRRpull.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash
#
#SBATCH -c 2
#SBATCH --mem-per-cpu=2000
#SBATCH --job-name=SRAfetch
#SBATCH --output=SRAfetch.out
#SBATCH --time=12:00:00
#HDAC1&2 CHIPSEQ analysis
#pull SRA files from GEO: https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE107436
#######################################################################################
# run from HDAC1_2_ChIPseq directory
#puts data in shared data file for the experiment
#######################################################################################
mkdir -p SRA/
mkdir -p output/SRA_checksum
for sample in `cat SRR_Acc_List.txt`
do
cd ~/HDAC1_2_ChIPseq/SRA/
echo ${sample} "starting SRR pull"
prefetch ${sample}
#######################################################################################
#paired end sra > Fastq.gz
#######################################################################################
echo ${sample} "starting dump"
fastq-dump --origfmt --split-files --gzip ${sample}
echo ${sample} "done"
#######################################################################################
#validate each SRA file and save to output log
#https://reneshbedre.github.io/blog/fqutil.html
#######################################################################################
echo ${sample} "starting sra check"
vdb-validate /alder/data/cbh/ciernia-data/HDAC1_2_ChIPseq/SRA/${sample} 2> output/SRA_checksum/${sample}_SRAcheck.log
echo ${sample} "done"
done
#combine logs into one output file
cat output/SRA_checksum/*_SRAcheck.log > output/SRA_checksum/SRAcheck.log