Giter Site home page Giter Site logo

Comments (3)

fidelram avatar fidelram commented on September 16, 2024 6

In case it helps, I manage to pass this issue by typing:

autoreconf --install

before ./configure

from lachesis.

teedeedubya avatar teedeedubya commented on September 16, 2024

@fidelram
Edit again (updating to account for road bumps encountered during "make")

This is exactly what i did, in this order.

  • Did a fresh Centos 7 minimal install
  • download the following RPM and copy it to your box:
    ftp://rpmfind.net/linux/centos/7.3.1611/os/x86_64/Packages/boost-devel-1.53.0-26.el7.x86_64.rpm
  • download epel 7 repository configuration
    https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
  • install boost-devel:
    yum --nogpgcheck localinstall boost-devel-1.53.0-26.el7.x86_64.rpm
  • install the epel repository
    yum --nogpgcheck localinstall epel-release-latest-7.noarch.rpm
  • install samtools-devel and zlib-devel:
    yum install samtools-devel
    yum install zlib-devel
  • install some more crap:
    yum install gcc
    yum install unzip
    yum install automake
    yum install make
    yum install gcc-c++
  • unpack Lachesis and copy in a couple of needed files:
    unzip LACHESIS-master.zip
    cp /usr/share/automake-1.13/config.guess /root/LACHESIS-master/
    cp /usr/share/automake-1.13/config.sub /root/LACHESIS-master/
    cp /usr/share/automake-1.13/depcomp /root/LACHESIS-master/
  • export samtools(I didn't have to export boost)
    export LACHESIS_SAMTOOLS_DIR=/usr/include/samtools/
  • configure it
    ./configure --with-samtools=/usr/include/samtools/
  • delete artifacts left over in the repository
  • source: #28
  • Thanks @llinsson
    for i in find /root/LACHESIS-master/ -name "*.[ao]"; do echo -e "Removing ${i}"; rm ${i} ; done;
  • i f for whatever reason, it's unable to find sam.h in SAMStepper.h and SAMStepper.cc,
  • Modify ./src/include/gtools/SAMStepper.h and ./src/include/gtools/SAMStepper.cc
    from:
    #include <sam.h>
    to:
    #include "/usr/include/samtools/sam.h"
  • install it
    make
    make install

Cheers,
Tony

from lachesis.

dpryan79 avatar dpryan79 commented on September 16, 2024

This ends up getting solved by #28. It boggles my mind why #28 hasn't been fully implemented in the github repository and the installation instructions updated.

from lachesis.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.