-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathspades_assembly.sh
executable file
·285 lines (218 loc) · 6.12 KB
/
spades_assembly.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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
#!/bin/bash
set -e
#set -x
#=============================================================
# HEADER
#=============================================================
#INSTITUTION:ISCIII
#CENTRE:BU-ISCIII
#AUTHOR: Pedro J. Sola
VERSION=1.0
#CREATED: 21 May 2018
#REVISION:
#DESCRIPTION:Script that assemble illumina sequences using SPAdes
#
#
#================================================================
# END_OF_HEADER
#================================================================
usage() {
cat << EOF
spades_assembly script that assemble illumina sequences using SPAdes
usage : $0 <-p R1_paired file> <-P R2_paired file> [-u <R1_unpaired>] [-U <R2_unpaired>] [-o <directory>]
[-k <int>][-s sample_name] [-g group_name] [-f <file_name>] [-T <int>] [q] [-c] [-v] [-h]
-p R1_paired file (mandatory)
-P R2_paired file (mandatory)
-u R1_unpaired file
-U R2_unpaired file
-k kmers, supplied as numbers sepparated by number or one flag per number, default: 21,33,55,77,99,127
-o output directory (optional)
-f file name
-s sample name (mandatory)
-g group name (optional). If unset, samples will be gathered in NO_GROUP group
-q quick_mode: look for files in a folder SUPPLIED with "paired" and "unpaired" term
-c clean mode: remove unnecesary temporary folders
-T threads, default 1
-v version
-h display usage message
example: ./spades_assembly.sh -p ecoli_R1_paired.fastq.gz -P ecoli_R2_paired.fastq.gz -c
EOF
}
#================================================================
# OPTION_PROCESSING
#================================================================
#Make sure the script is executed with arguments
if [ $# = 0 ] ; then
usage >&2
exit 1
fi
# Error handling
error(){
local parent_lineno="$1"
local script="$2"
local message="$3"
local code="${4:-1}"
RED='\033[0;31m'
NC='\033[0m'
if [[ -n "$message" ]] ; then
echo -e "\n---------------------------------------\n"
echo -e "${RED}ERROR${NC} in Script $script on or near line ${parent_lineno}; exiting with status ${code}"
echo -e "MESSAGE:\n"
echo -e "$message"
echo -e "\n---------------------------------------\n"
else
echo -e "\n---------------------------------------\n"
echo -e "${RED}ERROR${NC} in Script $script on or near line ${parent_lineno}; exiting with status ${code}"
echo -e "\n---------------------------------------\n"
fi
exit "${code}"
}
#DECLARE FLAGS AND VARIABLES
cwd="$(pwd)"
group="NO_GROUP"
r1_paired_file="R1_paired_file"
r2_paired_file="R2_paired_file"
r1_unpaired_command=""
r2_unpaired_command=""
threads=1
kmer_values_command="21,33,55,77,99,127"
kmer_option=false
quick_mode=false
clean_mode=false
#PARSE VARIABLE ARGUMENTS WITH getops
#common example with letters, for long options check longopts2getopts.sh
options=":p:P:u:U:o:f:d:a:s:g:k:T:q:cvh"
while getopts $options opt; do
case $opt in
p )
r1_paired_file=$OPTARG
;;
P )
r2_paired_file=$OPTARG
;;
u )
r1_unpaired_file=$OPTARG
r1_unpaired_command=$(echo "--s1" $r1_unpaired_file)
;;
U )
r2_unpaired_file=$OPTARG
r2_unpaired_command=$(echo "--s1" $r2_unpaired_file)
;;
o )
output_dir=$OPTARG
;;
f )
file_name=$OPTARG
;;
s )
sample=$OPTARG
;;
k)
kmer_value+=($OPTARG)
kmer_option=true
;;
q)
directory_reads=$OPTARG
quick_mode=true
;;
l)
minimus_length=$OPTARG
;;
g)
group=$OPTARG
;;
c)
clean_mode=true
;;
M )
max_mem=$OPTARG
;;
T )
threads=$OPTARG
;;
h )
usage
exit 1
;;
v )
echo $VERSION
exit 1
;;
\?)
echo "Invalid Option: -$OPTARG" 1>&2
usage
exit 1
;;
: )
echo "Option -$OPTARG requires an argument." >&2
exit 1
;;
* )
echo "Unimplemented option: -$OPTARG" >&2;
exit 1
;;
esac
done
shift $((OPTIND-1))
#================================================================
# MAIN_BODY
#================================================================
##CHECK DEPENDENCIES, MANDATORY FIELDS, FOLDERS AND ARGUMENTS
echo -e "\n#Executing" $0 "\n"
check_dependencies.sh spades.py
if [ ! $directory_reads ]; then
directory_reads=$(dirname $r1_paired_file)
echo "Reads directory is" $directory_reads
else
echo "Reads directory for quick mode is" $directory_reads
sample_dir=$(dirname $directory_reads)
output_dir=$sample_dir"/assembly"
mkdir -p $output_dir
fi
if [ ! $output_dir ]; then
sample_dir=$(dirname $directory_reads)
output_dir=$sample_dir"/assembly"
echo "Default output directory is" $output_dir
mkdir -p $output_dir
else
echo "Output directory is" $output_dir
mkdir -p $output_dir
fi
if [ $quick_mode = true ]; then
echo "Entering QUICK MODE"
r1_paired_file=$(find $directory_reads -name "*1_paired.fastq.gz" -type f)
r2_paired_file=$(find $directory_reads -name "*2_paired.fastq.gz" -type f)
r1_unpaired_file=$(find $directory_reads -name "*1_unpaired.fastq.gz" -type f)
r1_unpaired_command=$(echo "--s1" $r1_unpaired_file)
r2_unpaired_file=$(find $directory_reads -name "*2_unpaired.fastq.gz" -type f)
r2_unpaired_command=$(echo "--s2" $r2_unpaired_file)
fi
check_mandatory_files.sh $r1_paired_file $r2_paired_file
if [ $kmer_option = true ]; then
list_kmer_values=$(for value in "${kmer_value[@]}"; do echo "$value"; done)
kmer_values_command=$(printf "%s," $list_kmer_values | sed 's/,$//g')
fi
echo "$(date)"
echo "Assembly:"
echo "R1 paired file = " $r1_paired_file
echo "R2 paired file = " $r2_paired_file
echo "R1 unpaired file = " $r1_unpaired_file
echo "R2 unpaired file = " $r2_unpaired_file
spades.py \
--careful \
-t $threads \
-k $kmer_values_command \
--pe1-1 $r1_paired_file \
--pe1-2 $r2_paired_file \
$r1_unpaired_command \
$r2_unpaired_command \
-o $output_dir || error ${LINENO} $(basename $0) "Spades command failed. See $output_dir/logs for more information."
echo "$(date)"
echo "DONE. Assembled contigs can be found at $output_dir/contigs.fasta:"
echo "DONE. Assembled scaffolds can be found at $output_dir/scaffolds.fasta:"
if [ $clean_mode = true ]; then
echo "Removing unnecesary folders"
rm -rf $(find $output_dir -maxdepth 1 -mindepth 1 -type d)
echo "DONE removing unwanted folders"
fi
echo -e "\n"