-
Notifications
You must be signed in to change notification settings - Fork 7
/
isPCR.sh
executable file
·100 lines (86 loc) · 2.4 KB
/
isPCR.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
#!/bin/bash
#
# INGLÊS/ENGLISH
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# http://www.gnu.org/copyleft/gpl.html
#
#
# PORTUGUÊS/PORTUGUESE
# Este programa é distribuído na expectativa de ser útil aos seus
# usuários, porém NÃO TEM NENHUMA GARANTIA, EXPLÍCITAS OU IMPLÍCITAS,
# COMERCIAIS OU DE ATENDIMENTO A UMA DETERMINADA FINALIDADE. Consulte
# a Licença Pública Geral GNU para maiores detalhes.
# http://www.gnu.org/copyleft/gpl.html
#
# Copyright (C) 2019 Universidade Estadual Paulista "Júlio de Mesquita Filho"
#
# Universidade Estadual Paulista "Júlio de Mesquita Filho" (UNESP)
# Faculdade de Ciências Agrárias e Veterinárias (FCAV)
# Laboratório de Bioinformática (LB)
#
# Daniel Guariz Pinheiro
# http://www.fcav.unesp.br
#
infile=$1
if [ ! ${infile} ]; then
echo "[ERROR] Missing input fasta file" 1>&2
exit
else
if [ ! -e ${infile} ]; then
echo "[ERROR] Wrong input fasta file (${infile})" 1>&2
exit
fi
fi
fwdprimer=$2
if [ ! ${fwdprimer} ]; then
echo "[ERROR] Missing forward primer sequence" 1>&2
exit
else
if [[ ! ${fwdprimer} =~ ^[ACGTURYSWKMBDHVN]+$ ]]; then
echo "[ERROR] Wrong forward primer sequence (${fwdprimer})" 1>&2
exit
fi
fi
revprimer=$3
if [ ! ${revprimer} ]; then
echo "[ERROR] Missing reverse primer sequence" 1>&2
exit
else
if [[ ! ${revprimer} =~ ^[ACGTURYSWKMBDHVN]+$ ]]; then
echo "[ERROR] Wrong reverse primer sequence (${revprimer})" 1>&2
exit
fi
fi
taboutfile=$4
if [ ! ${taboutfile} ]; then
echo "[ERROR] Missing tabbed text output file" 1>&2
exit
else
if [ ! -d $(dirname ${taboutfile}) ]; then
echo "[ERROR] Wrong tabbed text output file (${taboutfile})" 1>&2
exit
fi
fi
fastaoutfile=$5
cmdline=""
if [ ! ${fastaoutfile} ]; then
echo "[WARNING] Missing fasta output file" 1>&2
else
if [ ! -d $(dirname ${fastaoutfile}) ]; then
echo "[ERROR] Wrong fasta output file (${fastaoutfile})" 1>&2
exit
else
cmdline="-fastaout ${fastaoutfile}"
fi
fi
totlen=$((${#fwdprimer}+${#revprimer}))
usearch11 -search_pcr2 ${infile} -fwdprimer ${fwdprimer} \
-revprimer ${revprimer} \
-strand both \
-maxdiffs 3 \
-minamp ${totlen} \
-tabbedout ${taboutfile} ${cmdline}