Hi @pierrepeterlongo
a minor compilation warning with gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-16):
src/filter_reads.cpp: In function ‘int main(int, char**)’:
src/filter_reads.cpp:163:50: attention : comparaison entre des expressions entières signée et non signée [-Wsign-compare]
if (pos > 0 && pos < (int) input_file_name.size()) {
^
Maybe a (uint) cast rather than a (int) cast to solve the problem?
Hi @pierrepeterlongo
a minor compilation warning with gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-16):
Maybe a
(uint)cast rather than a(int)cast to solve the problem?