Compare commits

...

5 Commits

4 changed files with 5 additions and 5 deletions

View File

@ -442,7 +442,7 @@ def addOptions(parser):
default=20,
type=int,
help="Maximum length of tuples. "
"Default: 50")
"Default: 20")
group.add_argument('--max_ini_col_count','-o',
action="store", dest="test:maxinicolcount",
@ -455,7 +455,7 @@ def addOptions(parser):
group.add_argument('--max_line_nb','-l',
action="store", dest="test:maxlinenb",
metavar='<MAX_LINE_NB>',
default=10000,
default=1000,
type=int,
help="Maximum number of lines in a column. "
"Default: 1000")

View File

@ -805,7 +805,7 @@ cdef class Line :
def __repr__(self):
return bytes2str(self).repr_bytes()
return bytes2str(self.repr_bytes())
cpdef repr_bytes(self):

View File

@ -1,5 +1,5 @@
major = 3
minor = 0
serial= '0b39'
serial= '0b41'
version ="%d.%d.%s" % (major,minor,serial)

View File

@ -25,7 +25,7 @@
* @author Celine Mercier (celine.mercier@metabarcoding.org)
*
*/
bool volatile keep_running;
extern bool volatile keep_running;
void sig_handler(int signum);