-
Notifications
You must be signed in to change notification settings - Fork 61
/
analyze_fastq.sh
191 lines (174 loc) · 4.73 KB
/
analyze_fastq.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/bin/bash
# This script start the pipeline from .fastq.gz files assuming
# all single-end.fastq.gz files are located in fastqs/ relative to $WORKDIR and
# all paired-end.fastq.gz files are located in paired_fastqs/ relative to $WORKDIR.
########## Step 0: check command line args and make sure files exist ##########
## Initialize variables with default values:
WORKDIR="data/"
GENOME="$HOME/genomes/Homo_sapiens/UCSC/hg19"
skip_qc=false
n_cpus=8
## Parse command line args
while [[ $# -gt 0 ]]; do
key="$1"
case $key in
-g|--genome)
GENOME="$2"
shift # past argument
;;
-w|--workdir)
WORKDIR="$2"
shift # past argument
;;
-t|--cpus)
n_cpus="$2"
shift # past argument
;;
--skip-qc)
skip_qc=true
shift # past argument
;;
-h|--help)
echo "Usage: ./analyze_sra.sh -g <GENOME> -w <WORKDIR>"
echo "Options:"
echo " --skip-qc: Skip fastQC steps for the fastq files"
echo " -t, --cpus: Number of CPUs to use, default to 8"
exit
;;
*)
# unknown option
echo "Unknown option: $key, exiting."
echo "Usage: ./analyze_sra.sh -g <GENOME> -w <WORKDIR>"
echo "Options:"
echo " --skip-qc: Skip fastQC steps for the fastq files"
echo " -t, --cpus: Number of CPUs to use, default to 8"
exit
;;
esac
shift # past argument or value
done
## Detect number of CPUs and use min(N_CPUS, n_cpus) for jobs
N_CPUS=$(nproc)
N_CPUS=$(($N_CPUS>n_cpus?n_cpus:$N_CPUS))
echo "Number of CPUs to be used: $N_CPUS"
## Check $WORKDIR
if [[ ! -d $WORKDIR ]]; then
echo "Could not find working directory: $WORKDIR, exiting. Please make sure the working directory exists"
exit 1
else
## Convert to absolute paths
GENOME=$(readlink -e $GENOME)
WORKDIR=$(readlink -e $WORKDIR)
echo "GENOME=$GENOME"
echo "WORKDIR=$WORKDIR"
fi
## Check $GENOME
if [[ ! -d $GENOME ]]; then
echo "Could not find reference genome: $GENOME, exiting. Please make sure the working directory exists"
exit 1
else
GENOME_GTF="$GENOME/Annotation/Genes/genes.gtf"
GENOME_FA="$GENOME/Sequence/WholeGenomeFasta/genome.fa"
if [[ ! -f $GENOME_GTF ]]; then
echo "$GENOME_GTF not found, exiting"
exit 1
fi
if [[ ! -f $GENOME_FA ]]; then
echo "$GENOME_FA not found, exiting"
exit 1
fi
STAR_INDEX="$GENOME/star/STAR_2.4.1c/"
fi
## Make STAR index if not exists
if [ ! -d $STAR_INDEX ]; then
echo "STAR index does not exist, building STAR index"
STAR \
--runThreadN $N_CPUS \
--runMode genomeGenerate \
--genomeDir $STAR_INDEX \
--genomeFastaFiles $GENOME_FA \
--sjdbGTFfile $GENOME_GTF \
--sjdbOverhang 100
fi
cd $WORKDIR
## create dirs if not exists
mkdir -p fastQC_output
mkdir -p star_output
mkdir -p featureCount_output
########## Step 2: QC, align and assemble sequencing reads ##########
echo "Started to align reads to the genome and assemble transcriptome"
if [[ -d fastqs ]]; then
## Align and assemble single-end sequencing reads
cd fastqs
for fq in $(ls); do
basename=$(echo $fq | cut -f1 -d '.')
if [ "$skip_qc" = false ]; then
echo "Performing FastQC for $basename"
fastqc $fq -o ../fastQC_output
fi
echo "Aligning reads from $basename to the reference genome"
STAR \
--genomeDir $STAR_INDEX \
--sjdbGTFfile $GENOME_GTF \
--runThreadN $N_CPUS \
--outSAMstrandField intronMotif \
--outFilterIntronMotifs RemoveNoncanonical \
--outFileNamePrefix ../star_output/$basename \
--readFilesIn $fq \
--readFilesCommand zcat \
--outSAMtype BAM Unsorted \
--outReadsUnmapped Fastx \
--outSAMmode Full
suffix="Aligned.out.bam"
outname="$basename.count.txt"
bam="../star_output/$basename$suffix"
featureCounts \
-T $N_CPUS \
-t exon \
-g gene_id \
-a $GENOME_GTF \
-o ../featureCount_output/$outname \
$bam
done
cd ..
fi
if [[ -d paired_fastqs ]]; then
## Align and assemble paired-end sequencing reads
cd paired_fastqs
for basename in $(ls | cut -f1 -d '_' | sort | uniq); do
echo $basename
fq1="_1.fastq"
fq2="_2.fastq"
fq1=$basename$fq1
fq2=$basename$fq2
if [ "$skip_qc" = false ]; then
echo "Performing FastQC for $basename"
fastqc $fq1 -o ../fastQC_output
fastqc $fq2 -o ../fastQC_output
fi
echo "Aligning reads from $basename to the reference genome"
STAR \
--genomeDir $STAR_INDEX \
--sjdbGTFfile $GENOME_GTF \
--runThreadN $N_CPUS \
--outSAMstrandField intronMotif \
--outFilterIntronMotifs RemoveNoncanonical \
--outFileNamePrefix ../star_output/$basename \
--readFilesIn $fq1 $fq2 \
--readFilesCommand zcat \
--outSAMtype BAM Unsorted \
--outReadsUnmapped Fastx \
--outSAMmode Full
suffix="Aligned.out.bam"
outname="$basename.count.txt"
bam="../star_output/$basename$suffix"
featureCounts \
-T $N_CPUS \
-t exon \
-g gene_id \
-a $GENOME_GTF \
-o ../featureCount_output/$outname \
$bam
done
cd ..
fi