Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Amrfinder tests #85

Merged
merged 4 commits into from
Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ EXTRA_DIST = \
test_scripts/test_roi.test \
test_scripts/test_selectsites.test \
test_scripts/test_radmeth.test \
test_scripts/test_states.test
test_scripts/test_states.test \
test_scripts/test_amrfinder.test

### ADS: the file md5sum.txt can be regenerated by running the tests
### with "make check" and then doing `md5sum tests/* > md5sum.txt`
Expand All @@ -101,7 +102,8 @@ TESTS = test_scripts/test_simreads.test \
test_scripts/test_roi.test \
test_scripts/test_selectsites.test \
test_scripts/test_radmeth.test \
test_scripts/test_states.test
test_scripts/test_states.test \
test_scripts/test_amrfinder.test

TEST_EXTENSIONS = .test

Expand Down Expand Up @@ -158,7 +160,6 @@ libdnmtools_a_SOURCES += \
src/radmeth/radmeth_optimize.hpp \
src/radmeth/radmeth_model.hpp


LDADD = libdnmtools.a src/abismal/libabismal.a src/smithlab_cpp/libsmithlab_cpp.a

bin_PROGRAMS = dnmtools
Expand Down Expand Up @@ -225,4 +226,5 @@ CLEANFILES = \
tests/tRex1_promoters.roi.bed \
tests/reads.counts.select \
tests/radmeth_test_output.txt \
tests/reads.epiread
tests/reads.epiread \
tests/two_epialleles.amr
3 changes: 3 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ AC_SEARCH_LIBS([gsl_blas_dgemm], [gsl], [], [AC_MSG_FAILURE([$gsl_fail_msg])])
AC_CONFIG_FILES([
Makefile
])

dnl make the test data files available in the build tree
AC_CONFIG_LINKS([
tests/md5sum.txt:data/md5sum.txt
Expand All @@ -77,5 +78,7 @@ tests/reads_1.fq.gz:data/reads_1.fq.gz
tests/reads_2.fq.gz:data/reads_2.fq.gz
tests/radmeth_test_table.txt:data/radmeth_test_table.txt
tests/radmeth_test_design.txt:data/radmeth_test_design.txt
tests/two_epialleles.states:data/two_epialleles.states
])

AC_OUTPUT
1 change: 1 addition & 0 deletions data/md5sum.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ b067a733102e611ca614ae22fc944471 tests/reads.ustats
b5270bb38d798741cfa74f411a0d49bf tests/tRex1_promoters.roi.bed
575f7daf8062c4aa3194370488794be8 tests/reads.bsrate
5f6bd7100470c5306b41b6a56fe6690e tests/reads.epiread
e7e9590475a7f9b1ae41701d81892e57 tests/two_epialleles.amr
Loading