-
Notifications
You must be signed in to change notification settings - Fork 47
Description
I am trying to build a docker image with the Dockerfile provided. But I am getting some errors for header files during the compiling process.
FastqReader.cpp:1:10: fatal error: SeqLib/FastqReader.h: No such file or directory
#include "SeqLib/FastqReader.h"
^~~~~~~~~~~~~~~~~~~~~~
BFC.cpp:33:10: fatal error: SeqLib/BFC.h: No such file or directory
#include "SeqLib/BFC.h"
^~~~~~~~~~~~~~
compilation terminated.
compilation terminated.
ReadFilter.cpp:1:10: fatal error: SeqLib/ReadFilter.h: No such file or directory
#include "SeqLib/ReadFilter.h"
^~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [libseqlib_a-BFC.o] Error 1
make[2]: *** Waiting for unfinished jobs....
SeqPlot.cpp:1:10: fatal error: SeqLib/SeqPlot.h: No such file or directory
#include "SeqLib/SeqPlot.h"
^~~~~~~~~~~~~~~~~~
compilation terminated.
Makefile:435: recipe for target 'libseqlib_a-BFC.o' failed
Makefile:449: recipe for target 'libseqlib_a-ReadFilter.o' failed
make[2]: *** [libseqlib_a-ReadFilter.o] Error 1
Makefile:421: recipe for target 'libseqlib_a-FastqReader.o' failed
make[2]: *** [libseqlib_a-FastqReader.o] Error 1
Makefile:463: recipe for target 'libseqlib_a-SeqPlot.o' failed
make[2]: *** [libseqlib_a-SeqPlot.o] Error 1
ssw_cpp.cpp:1:10: fatal error: SeqLib/ssw_cpp.h: No such file or directory
#include "SeqLib/ssw_cpp.h"
^~~~~~~~~~~~~~~~~~
compilation terminated.
RefGenome.cpp:1:10: fatal error: SeqLib/RefGenome.h: No such file or directory
#include "SeqLib/RefGenome.h"
^~~~~~~~~~~~~~~~~~~~
compilation terminated.
GenomicRegion.cpp:1:10: fatal error: SeqLib/GenomicRegion.h: No such file or directory
#include "SeqLib/GenomicRegion.h"
^~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
Makefile:477: recipe for target 'libseqlib_a-ssw_cpp.o' failed
make[2]: *** [libseqlib_a-ssw_cpp.o] Error 1
Makefile:505: recipe for target 'libseqlib_a-RefGenome.o' failed
make[2]: *** [libseqlib_a-RefGenome.o] Error 1
Makefile:491: recipe for target 'libseqlib_a-GenomicRegion.o' failed
make[2]: *** [libseqlib_a-GenomicRegion.o] Error 1
ssw.c:44:10: fatal error: SeqLib/ssw.h: No such file or directory
#include "SeqLib/ssw.h"
^~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [libseqlib_a-ssw.o] Error 1
Makefile:393: recipe for target 'libseqlib_a-ssw.o' failed
make[2]: Leaving directory '/svaba/SeqLib/src'
Makefile:358: recipe for target 'all-recursive' failed
make[1]: Leaving directory '/svaba'
make[1]: *** [all-recursive] Error 1
Makefile:299: recipe for target 'all' failed
make: *** [all] Error 2
The command '/bin/sh -c cd svaba && ./configure && make -j$(nproc) && make -j$(nproc) install' returned a non-zero code: 2