Skip to content

Commit 8c99dce

Browse files
Merge pull request #3 from masarunakajima/cleanup-format-reads
Cleanup format reads
2 parents 4422fe8 + bb43411 commit 8c99dce

4 files changed

Lines changed: 429 additions & 601 deletions

File tree

Makefile.am

Lines changed: 32 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
EXTRA_DIST = \
1818
README.md \
19-
LICENSE \
19+
LICENSE \
2020
docs/README.md \
2121
docs/mkdocs.yml \
2222
docs/content/abismal.md \
@@ -57,6 +57,7 @@ EXTRA_DIST = \
5757
pipeline/runconfig.yaml \
5858
pipeline/Snakefile \
5959
data/tRex1.fa \
60+
data/tRex1_promoters.bed \
6061
data/reads_1.fq.gz \
6162
data/reads_2.fq.gz \
6263
data/md5sum.txt \
@@ -70,7 +71,8 @@ EXTRA_DIST = \
7071
test_scripts/test_levels.test \
7172
test_scripts/test_sym.test \
7273
test_scripts/test_hmr.test \
73-
test_scripts/test_roi.test
74+
test_scripts/test_roi.test \
75+
test_scripts/test_selectsites.test
7476

7577
### ADS: the file md5sum.txt can be regenerated by running the tests
7678
### with "make check" and then doing `md5sum tests/* > md5sum.txt`
@@ -85,16 +87,17 @@ AM_CPPFLAGS = -I $(top_srcdir)/src/common -I $(top_srcdir)/src/smithlab_cpp
8587
CXXFLAGS = -Wall -O3 $(OPENMP_CXXFLAGS) # default has optimization on
8688

8789
TESTS = test_scripts/test_simreads.test \
88-
test_scripts/test_abismalidx.test \
89-
test_scripts/test_abismal.test \
90-
test_scripts/test_format.test \
91-
test_scripts/test_uniq.test \
92-
test_scripts/test_bsrate.test \
93-
test_scripts/test_counts.test \
94-
test_scripts/test_levels.test \
95-
test_scripts/test_sym.test \
96-
test_scripts/test_hmr.test \
97-
test_scripts/test_roi.test
90+
test_scripts/test_abismalidx.test \
91+
test_scripts/test_abismal.test \
92+
test_scripts/test_format.test \
93+
test_scripts/test_uniq.test \
94+
test_scripts/test_bsrate.test \
95+
test_scripts/test_counts.test \
96+
test_scripts/test_levels.test \
97+
test_scripts/test_sym.test \
98+
test_scripts/test_hmr.test \
99+
test_scripts/test_roi.test \
100+
test_scripts/test_selectsites.test
98101

99102
TEST_EXTENSIONS = .test
100103

@@ -104,6 +107,7 @@ test_scripts/test_uniq.log: test_scripts/test_format.log
104107
test_scripts/test_bsrate.log: test_scripts/test_uniq.log
105108
test_scripts/test_counts.log: test_scripts/test_uniq.log
106109
test_scripts/test_levels.log: test_scripts/test_counts.log
110+
test_scripts/test_selectsites.log: test_scripts/test_counts.log
107111
test_scripts/test_sym.log: test_scripts/test_counts.log
108112
test_scripts/test_hmr.log: test_scripts/test_sym.log
109113
test_scripts/test_roi.log: test_scripts/test_sym.log
@@ -188,18 +192,19 @@ dnmtools_SOURCES += src/mlml/mlml.cpp
188192
## grep "^outfile" test_scripts/*.test
189193
##
190194
CLEANFILES = \
191-
tests/reads.bsrate \
192-
tests/reads.counts \
193-
tests/reads.counts.sym \
194-
tests/reads.fmt.sam \
195-
tests/reads.fmt.srt.sam \
196-
tests/reads.fmt.srt.uniq.sam \
197-
tests/reads.hmr \
198-
tests/reads.levels \
199-
tests/reads.mstats \
200-
tests/reads.sam \
201-
tests/reads.ustats \
202-
tests/simreads_1.fq \
203-
tests/simreads_2.fq \
204-
tests/tRex1.idx \
205-
tests/tRex1_promoters.roi.bed
195+
tests/reads.bsrate \
196+
tests/reads.counts \
197+
tests/reads.counts.sym \
198+
tests/reads.fmt.sam \
199+
tests/reads.fmt.srt.sam \
200+
tests/reads.fmt.srt.uniq.sam \
201+
tests/reads.hmr \
202+
tests/reads.levels \
203+
tests/reads.mstats \
204+
tests/reads.sam \
205+
tests/reads.ustats \
206+
tests/simreads_1.fq \
207+
tests/simreads_2.fq \
208+
tests/tRex1.idx \
209+
tests/tRex1_promoters.roi.bed \
210+
tests/reads.counts.select

data/md5sum.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ e832cd0a2b0e1cfa43364610663590f3 tests/reads.fmt.srt.sam
1010
2610d1e63613e4e092f15aa132de3a20 tests/reads.levels
1111
8ee3daa36fad0e196d6d86696abed3dc tests/reads.mstats
1212
f224f056226aea737d1b95d7f9ab0bbf tests/reads.sam
13+
928314a9be1d53771de12192813248b1 tests/reads.counts.select
1314
2b465b326d17ddbe9ffb2485c165803a tests/reads.ustats
1415
8f3f2215bfa31e28ea3298019a342333 tests/simreads_1.fq
1516
76868ccd937f018e11f293a14ad60444 tests/simreads_2.fq

0 commit comments

Comments
 (0)