Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
GATB
gatb-core
Commits
dfbd277f
Commit
dfbd277f
authored
Jan 22, 2016
by
DURAND Patrick
Browse files
Merge branch 'master' of
git+ssh://scm.gforge.inria.fr/gitroot/gatb-core/gatb-core
parents
66d25117
e6a786bb
Changes
4
Hide whitespace changes
Inline
Side-by-side
gatb-core/src/gatb/kmer/impl/RepartitionAlgorithm.cpp
View file @
dfbd277f
...
...
@@ -432,7 +432,7 @@ void RepartitorAlgorithm<span>::computeRepartition (Repartitor& repartitor)
);
for
(
size_t
i
=
0
;
i
<
_config
.
_nb_banks
;
i
++
){
u_int64_t
nbseq_sample_
=
min
(
nbseq_sample
,
u_int64_t
(
1
00000
));
u_int64_t
nbseq_sample_
=
min
(
nbseq_sample
,
u_int64_t
(
5
00000
));
TruncateIterator
<
Sequence
>*
it
=
new
TruncateIterator
<
Sequence
>
(
*
(
itBanks
[
i
]),
nbseq_sample_
);
LOCAL
(
it
);
serialDispatcher
.
iterate
(
it
,
sampleRepart
);
...
...
gatb-core/src/gatb/tools/collections/impl/MPHF.hpp
View file @
dfbd277f
...
...
@@ -30,6 +30,7 @@
#include <gatb/system/api/Exception.hpp>
#include <gatb/system/api/types.hpp>
#include <gatb/tools/misc/api/Enums.hpp>
#include <gatb/tools/storage/impl/Storage.hpp>
#include <gatb/tools/misc/impl/Progress.hpp>
...
...
gatb-core/test/jenkins/test-suite-debian7-64bits-gcc-4.7.sh
0 → 100755
View file @
dfbd277f
#!/bin/bash
#set -e
set
-xv
date
hostname
pwd
################################################################
# COMPILATION #
################################################################
gcc
--version
g++
--version
[
`
gcc
-dumpversion
`
=
4.7
]
&&
{
echo
"GCC 4.7"
;
}
||
{
echo
"GCC version is not 4.7, we exit"
;
exit
1
;
}
JENKINS_TASK
=
test-suite-debian7-64bits-gcc-4.7
GIT_DIR
=
/builds/workspace/
$JENKINS_TASK
/gatb-core
BUILD_DIR
=
/scratchdir/
$JENKINS_TASK
/gatb-core/build
rm
-rf
$BUILD_DIR
mkdir
-p
$BUILD_DIR
cd
$BUILD_DIR
cmake
-Wno-dev
$GIT_DIR
make
################################################################
# UNIT TESTS #
################################################################
export
CPPUNIT_VERBOSE
=
1
# Specify single unit tests
#$BUILD_DIR/bin/gatb-core-cppunit TestBag
#$BUILD_DIR/bin/gatb-core-cppunit TestMap
# Launch the full test suite
$BUILD_DIR
/bin/gatb-core-cppunit
################################################################
# CHECK FUNCTIONS (with precomputed reference results) #
################################################################
# Note: if "dgbh5 -check" fails, exit code will be 1 (0 otherwise), and the Jenkins build will be reported as FAILED
$BUILD_DIR
/bin/dbgh5
-verbose
0
-in
$HOME
/reference/fastq/aphid_662451seq.fa
-check
$HOME
/reference/check/aphid_662451.props
$BUILD_DIR
/bin/dbgh5
-verbose
0
-in
$HOME
/reference/fastq/aphid_662451seq.album/album.txt
-check
$HOME
/reference/check/aphid_662451.props
$BUILD_DIR
/bin/dbgh5
-verbose
0
-in
$HOME
/reference/fastq/SRR959239_clean.fastq.gz
-check
$HOME
/reference/check/SRR959239_clean.props
gatb-core/test/unit/src/tools/collections/TestMap.cpp
View file @
dfbd277f
...
...
@@ -227,8 +227,9 @@ public:
/********************************************************************************/
CPPUNIT_TEST_SUITE_REGISTRATION
(
TestMap
);
CPPUNIT_TEST_SUITE_REGISTRATION_GATB
(
TestMap
);
//Temporary desactivate TestMap (for continuous integration purpose)
//CPPUNIT_TEST_SUITE_REGISTRATION (TestMap);
//CPPUNIT_TEST_SUITE_REGISTRATION_GATB (TestMap);
/********************************************************************************/
}
}
/* end of namespaces. */
...
...
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