zoukankan      html  css  js  c++  java
  • Augustus-3.3.3安装

    git clone https://github.com/Gaius-Augustus/Augustus.git

    cd Augustus

    1.bam2hints compile error

    vim auxprogs/bam2hints/Makefile

    # Variable definition
    BAMTOOLS=/home/software/bamtools
    #INCLUDES = /usr/include/bamtools
    INCLUDES = -I${BAMTOOLS}/include/bamtools
    #LIBS = -lbamtools -lz
    LIBS = ${BAMTOOLS}/lib64/libbamtools.a -lz

    2.filterBam compile error

    vim auxprogs/filterBam/src/Makefile

    #BAMTOOLS = /usr/include/bamtools
    BAMTOOLS = /home/software/bamtools
    #INCLUDES = -I$(BAMTOOLS) -Iheaders -I./bamtools
    INCLUDES = -I$(BAMTOOLS)/include/bamtools -Iheaders -I./bamtools
    #LIBS = -lbamtools -lz
    LIBS = ${BAMTOOLS}/lib64/libbamtools.a -lz

    3.bam2wig compile error

    mkdir samtools
    
      git clone https://github.com/samtools/htslib.git
      cd htslib
      autoheader
      autoconf
      ./configure --prefix=$(pwd)
      make
      make install
      cd ..
      
      git clone https://github.com/samtools/bcftools.git
      cd bcftools
      autoheader
      autoconf
      ./configure --prefix=$(pwd)
      make
      make install
      cd ..
     git clone https://github.com/samtools/samtools.git
      cd samtools
      autoheader
      autoconf -Wno-syntax
      ./configure --prefix=$(pwd)
      make
      make install
      cd ..

    bcftools  bcftools-1.11.tar.bz2  htslib  htslib-1.11.tar.bz2  samtools  samtools-1.11.tar.bz2
    vim auxprogs/bam2wig/Makefile
    TOOLDIR=/home/software/samtools

    ifndef TOOLDIR
            TOOLDIR=$(HOME)/tools
    # replace with your own parent directory of samtools, htslib, bcftools
    # if TOOLDIR is not specified as environment variable
    endif

    make
    ...
    ...
    make[2]: Leaving directory '/home/software/Augustus/auxprogs/bam2wig'
    make[1]: Leaving directory '/home/software/Augustus/auxprogs'


  • 相关阅读:
    lambba表达式
    根据某个字段筛选list数据
    git和idea绑定
    gitee创建仓库
    用 Python 3 + PyQt5 擼了一個可以播放“任意”音樂的播放器
    zabbix 共享内存设置
    Zabbix高可用,实现zabbix的无缝切换,无故障时间
    python练习题100
    斐波那契数列python实现
    随机生成指定位数密码包括大小写数字特殊符号
  • 原文地址:https://www.cnblogs.com/erinaceinae/p/13820343.html
Copyright © 2011-2022 走看看