We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eda37f commit 187266cCopy full SHA for 187266c
1 file changed
run_tests.sh
@@ -13,19 +13,21 @@ function unpack_test_data() {
13
echo "Error: invalid test data archive?"
14
exit 1
15
fi
16
+ /bin/rm -f test_data.tar.gz
17
}
18
-if [ ! -f test_data/human-chr19_P.gff ]; then
19
+#if [ ! -f test_data/human-chr19_P.gff ]; then
20
if [ -f test_data.tar.gz ]; then
21
#extract the tarball and rename the directory
22
+ echo "..Using existing ./test_data.tar.gz"
23
unpack_test_data
24
else
25
echo "..Downloading test data.."
26
#use curl to fetch the tarball from a specific github release or branch
27
curl -sLJO https://github.com/gpertea/stringtie/raw/test_data/test_data.tar.gz
28
29
-fi
30
+# fi
31
cd test_data
32
# array element format:
33
#
0 commit comments