-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcoordinate_adapter.sh
executable file
·230 lines (185 loc) · 6.71 KB
/
coordinate_adapter.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
#!/bin/bash
# Exit immediately if a pipeline, which may consist of a single simple command, a list,
#or a compound command returns a non-zero status: If errors are not handled by user
#set -e
#set -x
#=============================================================
# HEADER
#=============================================================
#INSTITUTION:ISCIII
#CENTRE:BU-ISCIII
#AUTHOR: Pedro J. Sola
VERSION=1.0
#CREATED: 17 May 2018
#REVISION:
#DESCRIPTION:coordinate_adapter script adapt coordinates obtained with a bed file to a reference sequences in a link file
#
#
#================================================================
# END_OF_HEADER
#================================================================
#SHORT USAGE RULES
#LONG USAGE FUNCTION
usage() {
cat << EOF
coordinate_adapter script adapt coordinates obtained with a bed file to a reference sequences in a link file
usage : $0 <-i inputfile(.bed)> <-l link_file> [-o <directory>] [-n <number>] [-f <file_name>] [-u] [-v] [-h]
-i input file in bed format
-l link file with coordinates relationship within bed file ddbb and link reference
-o output directory (optional). By default the file is placed in the same location as input
-n length to extend annotation, default 2000
-f file name
-u uniq mode. Remove duplicates
-p prokka mode. Remove suffix of prokka
-v version
-h display usage message
example: ./coordinate_adapter.sh -i genes.bed -l ecoli.links -n 10000
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)"
input_file="Bed_file"
link_file="Link_file"
number_extension=2000
unique=false
prokka_mode=false
suffix=""
#PARSE VARIABLE ARGUMENTS WITH getops
#common example with letters, for long options check longopts2getopts.sh
options=":i:l:n:f:puvh"
while getopts $options opt; do
case $opt in
i )
input_file=$OPTARG
;;
l )
link_file=$OPTARG
;;
o )
output_dir=$OPTARG
;;
n )
number_extension=$OPTARG
;;
f)
file_name=$OPTARG
;;
u )
unique=true
suffix=".unique.tmp"
;;
p )
prokka_mode=true
suffix=".prokka.tmp"
;;
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_mandatory_files.sh $input_file $link_file
if [ ! $output_dir ]; then
output_dir=$(dirname $input_file)
#echo "Default output directory is" $output_dir
mkdir -p $output_dir
else
#echo "Output directory is" $output_dir
mkdir -p $output_dir
fi
if [ ! $file_name ]; then
file_name=$(basename $input_file | cut -d. -f1,2)
fi
echo "$(date)"
echo "adapting coordinates from" $input_file and $link_file
echo "file name is:" $file_name
#Create a dictionary file with all posibilities: Column 1 and 5 must have some common terms
awk 'NR==FNR{a[NR]=$1;b[NR]=$0;next}{for(i = 1; i <= NR; ++i){if (a[i] == $1) print b[i],"\t", $0}}' \
$input_file $link_file > $output_dir/$file_name".coordinates.tmp" || error ${LINENO} $(basename $0) "Awk command in $file_name\".coordinates.tmp\" creation. See $output_dir/logs for more information."
awk '(($2 >= $6 - '"${number_extension}"' && $2 <= $7) || ($3 >= $6 && $3 <= $7 + '"${number_extension}"')) {{isInverted=($10-$9); \
genelength=($3-$2)};{if (isInverted < 0) {coordChr1=(($7-$3)+$10);} else {coordChr1=(($2-$6)+$9)}}; \
coordChr2=(coordChr1+genelength); {print $8, coordChr1, coordChr2, $4}}' $output_dir/$file_name".coordinates.tmp" > $output_dir/$file_name".coordinates.negatives"|| error ${LINENO} $(basename $0) "Awk command in $file_name\".coordinates.negatives\" creation. See $output_dir/logs for more information."
#resulting in a bed file with coordinated of plasmid bur refering to contig annotation:
#NZ_CP010574.1 34820 33528 arsB_1
#NZ_CP008930.1 90527 89235 arsB_1
#NZ_CP006927.1 44969 43677 arsB_1
#NZ_CP010574.1 81021 82508 ltrA_1
#NZ_CP008930.1 144220 145707 ltrA_1
#Remove duplicate of several matches
awk '($2 > 0) && ($3 > 0)' $output_dir/$file_name".coordinates.negatives" \
> $output_dir/$file_name".coordinates"$suffix || error ${LINENO} $(basename $0) "Awk command in $file_name\".coordinates$suffix\" creation. See $output_dir/logs for more information."
if [ "$unique" == "true" ]; then
awk '
(!x[$1$4]++)
' $output_dir/$file_name".coordinates"$suffix \
> $output_dir/$file_name".coordinates" || error ${LINENO} $(basename $0) "Awk command in $file_name\".coordinates\" creation. See $output_dir/logs for more information."
rm $output_dir/$file_name".coordinates"$suffix
fi
if [ "$prokka_mode" == "true" ]; then
awk '
(!uniq[$1$4]++)
' $output_dir/$file_name".coordinates"$suffix \
> $output_dir/$file_name".coordinates.prokka.unique.tmp"|| error ${LINENO} $(basename $0) "Awk command in $file_name\".coordinates.prokka.unique.tmp\" creation. See $output_dir/logs for more information."
awk '
BEGIN{OFS="\t"}{split($4, namelowbar, "_")} {$4=($4 !~ /CDS/) ? namelowbar[1] : $4}1
' $output_dir/$file_name".coordinates.prokka.unique.tmp" \
> $output_dir/$file_name".coordinates" || error ${LINENO} $(basename $0) "Awk command in $file_name\".coordinates\" creation. See $output_dir/logs for more information."
rm $output_dir/$file_name".coordinates.prokka.unique.tmp"
rm $output_dir/$file_name".coordinates"$suffix
fi
rm $output_dir/$file_name".coordinates.tmp"
rm $output_dir/$file_name".coordinates.negatives"
echo "$(date)"
echo -e "Coordinates adapted to file" $output_dir/$file_name".coordinates" "\n"