File: trinity_install_tests.sh

package info (click to toggle)
trinityrnaseq 2.15.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 468,004 kB
  • sloc: perl: 49,905; cpp: 17,993; java: 12,489; python: 3,282; sh: 1,989; ansic: 985; makefile: 717; xml: 62
file content (50 lines) | stat: -rwxr-xr-x 1,187 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash

echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
echo ""
echo 'Performing Unit Tests of Build'
echo ' '
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"


if [ -e "Inchworm/bin/inchworm" ]
then
	echo "Inchworm:                has been Installed Properly"
else
	echo "Inchworm Installation appears to have FAILED"
fi
if [ -e "Chrysalis/bin/Chrysalis" ]
then
	echo "Chrysalis:               has been Installed Properly"
else
	echo "Chrysalis Installation appears to have FAILED"
fi
if [ -e "Chrysalis/bin/QuantifyGraph" ]
then
	echo "QuantifyGraph:           has been Installed Properly"
else
	echo "QuantifyGraph Installation appears to have FAILED"
fi

if [ -e "Chrysalis/bin/GraphFromFasta" ]
then
	echo "GraphFromFasta:          has been Installed Properly"
else
	echo "GraphFromFasta Installation appears to have FAILED"
fi

if [ -e "Chrysalis/bin/ReadsToTranscripts" ]
then
	echo "ReadsToTranscripts:      has been Installed Properly"
else
	echo "ReadsToTranscripts Installation appears to have FAILED"
fi


if [ -e "/usr/bin/ParaFly" ]
then
	echo "parafly:                 has been Installed Properly"
else
	echo "parafly Installation appears to have FAILED"
fi