We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fe382f commit 9e218f3Copy full SHA for 9e218f3
1 file changed
test_scripts/test_pmd.test
@@ -0,0 +1,14 @@
1
+#!/usr/bin/env bash
2
+
3
+infile=tests/pmd_test_data.counts.sym.gz
4
+outfile=tests/methylome.pmd
5
+if [[ -e "${infile}" ]]; then
6
+ ./dnmtools pmd -o ${outfile} ${infile}
7
+ x=$(md5sum -c tests/md5sum.txt | grep "${outfile}:" | cut -d ' ' -f 2)
8
+ if [[ "${x}" != "OK" ]]; then
9
+ exit 1;
10
+ fi
11
+else
12
+ echo "${infile} not found; skipping remaining tests";
13
+ exit 77;
14
+fi
0 commit comments