Compare commits

...

3 Commits

Author SHA1 Message Date
Celine Mercier
db0ac37d41 switch to version 3.0.0-beta7 2020-01-29 16:18:53 +01:00
Celine Mercier
d0c21ecd39 Removed an OpenMP clause that was not obligatory and triggered a known
gcc bug involving macros
2020-01-24 16:00:53 +01:00
Celine Mercier
53212168a2 History: added 'obi' in bash history for practical reasons 2020-01-23 16:51:49 +01:00
3 changed files with 3 additions and 4 deletions

View File

@@ -259,7 +259,7 @@ cdef class DMS(OBIWrapper):
for command in self.command_line_history:
s+=b"#"
s+=command[b"time"]
s+=b"\n"
s+=b"\nobi "
s+=command[b"command"]
s+=b"\n"
return s

View File

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

View File

@@ -409,8 +409,7 @@ int obi_clean(const char* dms_name,
stop = true;
}
#pragma omp parallel default(none) \
shared(thread_count, seq_count, blob_array, complete_sample_count_array, alignment_result_array, \
#pragma omp parallel shared(thread_count, seq_count, blob_array, complete_sample_count_array, alignment_result_array, \
stop, blob1, i, obi_errno, keep_running, stderr, max_ratio, iseq_column, i_view, \
similarity_mode, reference, normalize, threshold, ktable, status_column, o_view, sample_count)
{