File: test.sh

package info (click to toggle)
lumpy-sv 0.3.1%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 296,072 kB
  • sloc: cpp: 9,908; python: 1,768; sh: 1,384; makefile: 365; ansic: 322; perl: 58
file content (26 lines) | stat: -rwxr-xr-x 531 bytes parent folder | download | duplicates (2)
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
#!/bin/bash


if [ ! -d "../data/" ]
then
	echo "../data/ directory does not exist"
	echo "please download from http://layerlab.org/lumpy/data.tar.gz"
	exit
fi


echo "Testing lumpy paired-end"
./bp_pe.sh 1 20 1e-3 150 \
	../data/pe.pos_sorted.bam \
	../data/sim.bedpe

echo "Testing lumpy split-read"
./bp_sr.sh 1 20 1e-3 150 \
	../data/sr.pos_sorted.bam \
	../data/sim.bedpe

echo "Testing lumpy paired-end and split-read"
./bp_pesr.sh 1 20 1e-3 150 \
	../data/pe.pos_sorted.bam \
	../data/sr.pos_sorted.bam \
	../data/sim.bedpe