-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest.sh
executable file
·84 lines (68 loc) · 2.54 KB
/
test.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
#!/bin/sh
echo "* Test #1"
echo "For alignment with large deletion and micro insersion. Mismatches"
echo "and small deletions are present in each flanking sequence."
echo "Run as: ./age_align test1_*.fa"
./age_align test1_*.fa "$@"
echo "* Test #2"
echo "For alignment with same size deletion and insersion."
echo "Run as: ./age_align test2_*.fa"
./age_align test2_*.fa "$@"
echo "* Test #3"
echo "For alignment with large deletion, insersion and microhomology around"
echo "breakpoints."
echo "Run as: ./age_align test3_*.fa"
./age_align test3_*.fa "$@"
echo "* Test #4"
echo "Another test for homology around breakpoints."
echo "Run as: ./age_align test4_*.fa"
./age_align test4_*.fa "$@"
echo "* Test #5"
echo "For microhomology inside and outside breakpoints."
echo "Run as: ./age_align test5_*.fa"
./age_align test5_*.fa "$@"
echo "* Test #6"
echo "For an alternative alignment. There is a 2 bp homology at breakpoints."
echo "No alternative should be reported."
echo "Run as: ./age_align test6_*.fa"
./age_align test6_*.fa "$@"
echo "* Test #7"
echo "For an alternative alignment. Right flanking sequence aligns at a"
echo "different place."
echo "Run as: ./age_align test7_*.fa"
./age_align test7_*.fa "$@"
echo "* Test #8"
echo "Test for an alignment of reverse complement (second sequence)."
echo "Run as: ./age_align test8_*.fa -revcom2"
./age_align test8_*.fa -revcom2 "$@"
echo "* Test #9"
echo "Test for alignment with many indels/mismatches in flanking sequences."
echo "Run as: ./age_align test9_*.fa"
./age_align test9_*.fa "$@"
echo "* Test #10"
echo "Test for inversion."
echo "Run as: ./age_align test10_*.fa -inv"
./age_align test10_*.fa -inv "$@"
echo "* Test #11"
echo "Test for inversion."
echo "Run as: ./age_align test11_*.fa -inv"
./age_align test11_*.fa -inv "$@"
echo "* Test #12"
echo "Test to demonstrate that linear pass to find optimal split between two"
echo "local alignments won't find correct alginment. This case is put in the"
echo "paper (Abyzov & Gerstein, 2011)."
echo "Run as: ./age_align test12_*.fa -match=1 -mismatch=-2 -go=-4 -ge=-2"
./age_align test12_*.fa -match=1 -mismatch=-2 -go=-4 -ge=-2 "$@"
echo "* Test #13"
echo "Test for tandem duplication."
echo "Run as: ./age_align test13_*.fa -tdup"
./age_align test13_*.fa -tdup "$@"
echo "* Test #14"
echo "Inversion with conting over left breakpoint."
echo "Run as: ./age_align test14_*.fa -inv"
./age_align test14_*.fa -inv "$@"
echo "* Test #15"
echo "Inversion with conting over right breakpoint."
echo "Run as: ./age_align test15_*.fa -inv"
./age_align test15_*.fa -inv "$@"
exit 0;