[go: nahoru, domu]

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

Prophex filter #22

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add tests/A14_filter
  • Loading branch information
salikhov-kamil committed Aug 2, 2018
commit 4017cd9bce98d4a1b42857a18ae5cb2f4a3a7f58
25 changes: 25 additions & 0 deletions tests/A14_filter/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
include ../conf.mk

K=12
M=0.0 0.1 0.5 1.0
N=1 5 10

.PHONY: all clean $(M) $(N)

all: $(addprefix m,$M) $(addprefix n,$N)

m%: _index.%.complete
$(IND) filter -k $(K) -u -m $* _index.$*.fa $(FQ) > _obtained.$*.txt
diff -c _obtained.$*.txt expected.$*.txt

n%: _index.%.complete
$(IND) filter -k $(K) -u -n $* _index.$*.fa $(FQ) > _obtained.$*.txt
diff -c _obtained.$*.txt expected.$*.txt

_index.%.complete:
$(BWA) index -p _index.$*.fa $(FA)
$(IND) klcp -k $(K) _index.$*.fa
touch $@

clean:
rm -f _*
1,001 changes: 1,001 additions & 0 deletions tests/A14_filter/expected.0.0.txt

Large diffs are not rendered by default.

1,001 changes: 1,001 additions & 0 deletions tests/A14_filter/expected.0.1.txt

Large diffs are not rendered by default.

1,001 changes: 1,001 additions & 0 deletions tests/A14_filter/expected.0.5.txt

Large diffs are not rendered by default.

1,001 changes: 1,001 additions & 0 deletions tests/A14_filter/expected.1.0.txt

Large diffs are not rendered by default.

1,001 changes: 1,001 additions & 0 deletions tests/A14_filter/expected.1.txt

Large diffs are not rendered by default.

1,001 changes: 1,001 additions & 0 deletions tests/A14_filter/expected.10.txt

Large diffs are not rendered by default.

1,001 changes: 1,001 additions & 0 deletions tests/A14_filter/expected.5.txt

Large diffs are not rendered by default.

Loading