我正在使用 Rcpp 将 C++ 程序包装在 R 包中。我的 C++ 程序需要以下标头:
#include "htslib/sam.h"
在编译之前,我通常在 Ubuntu 中加载以下模块:
HTSlib/1.11-GCC-9.3.0
我通常使用 GCC/9.3.0 在 Ubuntu 中使用以下标志编译 C++ 脚本:
g++ scriptname.cpp -Ihtslib -Lhtslib -lhts
由于我是通过 Rcpp 从 R 访问程序,所以我不知道如何加载 HTSlib 模块。当我尝试“清理并重建”包时,我收到以下错误:
fatal error: htslib/sam.h: No such file or directory
#include "htslib/sam.h"
^
compilation terminated.
我有两个问题:
从 C++ 源代码构建 R 包时如何加载 C++ 模块?
从 C++ 源代码构建 R 包时如何包含编译标志?
我创建了一个最小的头文件、.R 文件和 C++ 源脚本。该脚本打开一个 bam 文件并输出读取的染色体名称和位置。这些文件并不代表我想要运行的实际程序(这里包含的程序太长太复杂),但是当我尝试使用 Rcpp 构建包时会产生相同的错误。
C++源文件:
#include "htslib/sam.h"
#include <string>
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <Rcpp.h>
#include "HTSlibBasics.h
void OpenBam(std::string command_string){
// Stores filename and converts to character string
const char * char_command;
char_command = command_string.c_str();
// Opens bam file
samFile *fp = sam_open(char_command, "r");
// Opens bam header
bam_hdr_t *h = sam_hdr_read(fp);
// Initialize an alignment
bam1_t *b = bam_init1();
while(sam_read1(fp, h, b) >= 0) {
if (b->core.tid < 0){
continue;
}else{
std::cout << h->target_name[b->core.tid] << "\t" << b->core.pos << "\t" << bam_endpos(b) << std::endl;
}
}
/*
* Destroy the alignment and header which have been read into the C++ program
* and close the sam file.
*/
bam_destroy1(b);
bam_hdr_destroy(h);
sam_close(fp);
}
头文件:
#ifndef OPEN_BAM
#define OPEN_BAM
//' Documentation
//' @param command_string Documentation
// [[Rcpp::export]]
void OpenBam(std::string command_string);
#endif // OPEN_BAM
R文件:
## usethis namespace: start
#' @useDynLib HTSlibBasics, .registration = TRUE
## usethis namespace: end
NULL
## usethis namespace: start
#' @importFrom Rcpp sourceCpp
## usethis namespace: end
NULL
#' Documentation
#' @export
OpenBam <- function(command_string) {
.Call(`_HTSlibBasics_OpenBam`, command_string)
}
R 文件位于包的“R”目录中,而 C++ 脚本和头文件位于“src”目录中。