We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To replicate the error:
$ docker run --rm -it ubuntu bash -c "apt-get update -y && apt-get install -y git zlib1g-dev build-essential && git clone https://github.com/rrwick/Filtlong.git && cd Filtlong && make -j && bin/filtlong"
Will give many errors of the form src/kmers.h:37:26: error: 'uint32_t' has not been declared
src/kmers.h:37:26: error: 'uint32_t' has not been declared
Throwing in #include <cstdint> in src/kmers.h fixes it:
#include <cstdint>
src/kmers.h
docker run --rm -it ubuntu bash -c "apt-get update -y && apt-get install -y git zlib1g-dev build-essential && git clone https://github.com/rrwick/Filtlong.git && cd Filtlong && sed -i '1i #include <cstdint>' src/kmers.h && make -j && bin/filtlong" successfully compiles and runs filtlong
docker run --rm -it ubuntu bash -c "apt-get update -y && apt-get install -y git zlib1g-dev build-essential && git clone https://github.com/rrwick/Filtlong.git && cd Filtlong && sed -i '1i #include <cstdint>' src/kmers.h && make -j && bin/filtlong"
filtlong
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To replicate the error:
$ docker run --rm -it ubuntu bash -c "apt-get update -y && apt-get install -y git zlib1g-dev build-essential && git clone https://github.com/rrwick/Filtlong.git && cd Filtlong && make -j && bin/filtlong"
Will give many errors of the form
src/kmers.h:37:26: error: 'uint32_t' has not been declared
Throwing in
#include <cstdint>
insrc/kmers.h
fixes it:docker run --rm -it ubuntu bash -c "apt-get update -y && apt-get install -y git zlib1g-dev build-essential && git clone https://github.com/rrwick/Filtlong.git && cd Filtlong && sed -i '1i #include <cstdint>' src/kmers.h && make -j && bin/filtlong"
successfully compiles and runsfiltlong
The text was updated successfully, but these errors were encountered: