Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
vidjil
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1,425
Issues
1,425
List
Boards
Labels
Milestones
Merge Requests
49
Merge Requests
49
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vidjil
vidjil
Commits
ca6b9015
Commit
ca6b9015
authored
May 06, 2016
by
Mikaël Salson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makefile: Build an archive for the dataset or manually curated real V(D)J sequences
parent
80eea121
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
algo/tests/Makefile
algo/tests/Makefile
+13
-0
No files found.
algo/tests/Makefile
View file @
ca6b9015
...
...
@@ -14,6 +14,10 @@ SHOULD_LOCUS=$(wildcard should-vdj-tests/*.should-locus.fa)
REPORTS_PATH
:=
$(
patsubst
%/Makefile,%,
$(
abspath
$(
lastword
$(MAKEFILE_LIST)
)))
/../../reports
VALGRIND
=
valgrind
-v
--tool
=
memcheck
--leak-check
=
full
--show-reachable
=
yes
--undef-value-errors
=
yes
--track-origins
=
yes
--xml
=
yes
--xml-file
=
"
$$
(mktemp "
$(REPORTS_PATH)
/valgrind.xml.XXXXXX
")"
#should-vdj that should not be published in our public curated dataset (just internal tests)
EXCLUDE_SHOULD_VDJ
=
bug20151006-rc.should-vdj.fa cdr3-indels.should-vdj.fa ext-nucleotides-N.should-vdj.fa segment_simul.should-vdj.fa
SHOULD_VDJ_ARCHIVE
:=
$(
filter-out
$(
addprefix
should-vdj-tests/,
$(EXCLUDE_SHOULD_VDJ)
)
,
$(SHOULD_VDJ)
)
DATE
=
$(
shell
date
+%Y-%m-%d--%H:%M:%S
)
SNAPSHOTS_DIR
=
./snapshots
SNAPSHOT
=
$(SNAPSHOTS_DIR)
/snapshot-log--
$(DATE)
...
...
@@ -61,6 +65,15 @@ shouldvdj_with_rc_merged:
cat
$(SHOULD_VDJ)
>
should-vdj-tests/should-vdj.merged.fa
python should-vdj-to-tap.py
-r
should-vdj-tests/should-vdj.merged.fa
shouldvdj_archive
:
should-vdj.zip
should-vdj.zip
:
$(SHOULD_VDJ_ARCHIVE)
$(
eval
tmpdir :
=
$(
shell
mktemp
-d
))
mkdir
$(tmpdir)
/should-vdj
cp
--parents
--preserve
$(SHOULD_VDJ_ARCHIVE)
$(tmpdir)
sed
-ri
's/\s*BUG//'
$(tmpdir)
/should-vdj-tests/
*
cwd
=
`
pwd
`
&&
cd
$(tmpdir)
&&
zip
$$
cwd/
$@
$(SHOULD_VDJ_ARCHIVE)
rm
-rf
$(tmpdir)
%.tap
:
%.should-get force
./should-to-tap.sh
$<
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment