-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathrun.sh
More file actions
executable file
·31 lines (25 loc) · 817 Bytes
/
Copy pathrun.sh
File metadata and controls
executable file
·31 lines (25 loc) · 817 Bytes
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
#!/bin/bash
echo "select the test from below"
select TEST in `seq 1 5`;
do
case $TEST in
1)
./quota_align.py --merge --quota=1:1 data/athaliana_lyrata.qa
./cluster_utils.py --print_grimm data/athaliana_lyrata.qa.filtered
;;
2)
./quota_align.py --format=raw --merge --Dm=20 --min_size 5 --quota=2:1 data/maize_sorghum.qa
;;
3)
./quota_align.py --format=raw --merge --Dm=20 --self --quota=2:2 data/grape_grape.qa
;;
4)
./quota_align.py --format=raw --merge --Dm=20 --self --quota=1:1 data/brachy_brachy.qa
;;
5)
./cluster_utils.py --format=maf data/al_scaffold_1_vs_at_chr_1.maf data/al_scaffold_1_vs_at_chr_1.qa
./quota_align.py --merge --Dm=20000 --quota=1:1 --Nm=40000 data/al_scaffold_1_vs_at_chr_1.qa
./maf_utils.py data/al_scaffold_1_vs_at_chr_1.qa.filtered data/al_scaffold_1_vs_at_chr_1.maf
;;
esac
done