forked from remimarenco/multi_fasta_glimmerhmm
-
Notifications
You must be signed in to change notification settings - Fork 2
/
multi_glimmer.sh
executable file
·50 lines (43 loc) · 1.16 KB
/
multi_glimmer.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
#!/bin/sh
set -e
reference_fasta=$1
trained_dir=$2
output=$3
temp="temp_contig_file"
# Write the glimmerhmm, with the comments
glimmerHMM_first () {
glimmerhmm $1 ${trained_dir} -o ${output} -g
}
# Write the glimmerhmm output without the comments
glimmerHMM_without_comments () {
glimmerhmm $1 ${trained_dir} -g | tail -n +2 >> ${output}
}
count=1
# Loop through the contigs to run glimmer on each
while read line
do
# Get the content of actual contig
#samtools_faidx_show_contig ${reference_fasta} ${contig} > contig_content
first_char=$(echo ${line} | cut -c1-1)
if [ ${first_char} = '>' ]
then
# If true, it means we have finished reading at least the first contig
if [ -f ${temp} ]
then
if [ ${count} -eq 1 ]
then
glimmerHMM_first ${temp};
count=$((count+1))
else
glimmerHMM_without_comments ${temp};
fi
fi
echo ${line} > ${temp}
else
echo ${line} >> ${temp}
fi
done < "${reference_fasta}"
# Still last contig to process
glimmerHMM_without_comments ${temp};
# Delete the temp_contig_file
rm ${temp}