File: run_test_examples_454.sh

package info (click to toggle)
art-nextgen-simulation-tools 20160605%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 15,948 kB
  • sloc: cpp: 7,952; perl: 524; sh: 210; makefile: 46
file content (37 lines) | stat: -rwxr-xr-x 1,763 bytes parent folder | download | duplicates (5)
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
#!/bin/bash
#454 test examples
art_454=../art_454
#art_454=../../bin/MacOS64/art_454
#art_454=../../bin/Linux64/art_454

# 1) simulation of 454 single-end reads at 10X coverage using the built-in 454 FLX read  profile
$art_454 -a -s ./testSeq.fa ./single_454_flx 10
#   convert an aln file to a bed file
../aln2bed.pl single_454_flx.bed single_454_flx.aln

# 2) simulation of 454 paried-end reads at 5X coverage with the mean fragment size 500 
#    and standard deviation 20 using the built-in 454 FLX read  profile
$art_454 -a -s ./testSeq.fa ./paired_454_flx 5 500 20
#    convert both aln files to a bed file
../aln2bed.pl paired_454_flx.bed paired_454_flx1.aln paired_454_flx2.aln

# 3) simulation of 454 paried-end reads at 6X coverage with the mean fragment size 500 
#    and standard deviation 20 using the built-in 454 FLX Titanium read  profile
$art_454 -a -s -t ./testSeq.fa ./paired_454_flxTitan 6 500 20
#   convert both aln files to a bed file
../aln2bed.pl paired_454_flxTitan.bed paired_454_flxTitan1.aln paired_454_flxTitan2.aln 

# 4) 5' end amplicon sequencing with 10 single-end reads per amplicon   
$art_454 -a -s -A ./amplicon_reference.fa ./amp_single_454 10

# 5) both 5' and 3' ends amplicon sequencing with 5 read pairs per amplicon  
$art_454 -a -s -B ./amplicon_reference.fa ./amp_paired_454 5 

# 6) used a fixed random seed to generate identical datasets   
$art_454 -a -s -r 777 ./testSeq.fa ./single_454_t1 10
$art_454 -a -s -r 777 ./testSeq.fa ./single_454_t2 10
# compare difference
echo "compare difference of two simulation datasets after normalising known difference"
sed 's?^\(@PG.*testSeq\.fa \./single_454_t\)2?\11?' single_454_t2.sam > single_454_t2_normalised.sam
diff  single_454_t1.sam  single_454_t2_normalised.sam