Skip to content
New issue

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

feat: Add rust_htslib::bcf::index::build #408

Merged
merged 2 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
100 changes: 100 additions & 0 deletions src/bcf/index.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
use crate::{htslib, utils};

#[derive(Debug)]
pub struct BcfBuildError {
pub msg: String,
}

/// Index type to build.
pub enum Type {
/// Tabix index
Tbx,
/// CSI index, with given minimum shift
Csi(u32),
}

impl Type {
fn min_shift(&self) -> i32 {
match self {
Self::Tbx => 0,
Self::Csi(x) => *x as i32,
}
}
}

impl BcfBuildError {
pub fn error_message(error: i32) -> &'static str {
match error {
-1 => "indexing failed",
-2 => "opening @fn failed",
-3 => "format not indexable",
-4 => "failed to create and/or save the index",
_ => "unknown error",
}
}
}
impl std::error::Error for BcfBuildError {}

impl std::fmt::Display for BcfBuildError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "BcfBuildError{{msg: {}}}", self.msg)
}
}

/// Build a bcf or vcf.gz index.
/// Builds tbi or csi depending on index_type.
///
///```
/// // Index a sorted bcf file with csi.
/// let bcf_path = concat!(env!("CARGO_MANIFEST_DIR"), "/test/test_multi.bcf");
/// rust_htslib::bcf::index::build(&bcf_path, Some(&"built_test.csi"), /*n_threads=*/ 4u32, rust_htslib::bcf::index::Type::Csi(14)).expect("Failed to build csi index for bcf file.");
/// assert!(std::path::Path::new(&"built_test.csi").exists());
///
/// // Index a bgzip-compresed vcf file with tabix.
/// let vcf_path = concat!(env!("CARGO_MANIFEST_DIR"), "/test/test_left.vcf.gz");
/// rust_htslib::bcf::index::build(&vcf_path, Some(&"built_test_vcf.tbx"), /*n_threads=*/ 4u32, rust_htslib::bcf::index::Type::Tbx).expect("Failed to build tbx index for vcf file.");
/// assert!(std::path::Path::new(&"built_test_vcf.tbx").exists());
///
/// // Cannot build a tbi index for a bcf file: returns an Err(BcfBuildError).
/// assert!(std::panic::catch_unwind(|| rust_htslib::bcf::index::build(bcf_path, Some("built_test.tbi"), 4u32, rust_htslib::bcf::index::Type::Tbx).unwrap()).is_err());
///
/// // Cannot built a csi index for a vcf file: returns an Err(BcfBuildError).
/// let vcf_path = concat!(env!("CARGO_MANIFEST_DIR"), "/test/test_various.vcf");
/// assert!(std::panic::catch_unwind(|| rust_htslib::bcf::index::build(&vcf_path, Some(&"built_test_vcf.csi"), /*n_threads=*/ 4u32, rust_htslib::bcf::index::Type::Csi(14)).expect("Failed to build csi index for vcf file.")).is_err());
///```
///
pub fn build<P: AsRef<std::path::Path>>(
bcf_path: P,
idx_path: Option<P>,
n_threads: u32,
index_type: Type,
) -> Result<(), BcfBuildError> {
let min_shift = index_type.min_shift();
let idx_path_cstr = idx_path.and_then(|x| utils::path_to_cstring(&x));
let bcf_path = utils::path_to_cstring(&bcf_path).ok_or(BcfBuildError {
msg: format!(
"Failed to format bcf_path to cstring: {:?}",
bcf_path.as_ref().display()
),
})?;
let return_code = unsafe {
htslib::bcf_index_build3(
bcf_path.as_ptr(),
idx_path_cstr
.as_ref()
.map_or(std::ptr::null(), |p| p.as_ptr()),
min_shift,
n_threads as i32,
)
};
if return_code == 0 {
Ok(())
} else {
Err(BcfBuildError {
msg: format!(
"Failed to build bcf index. Error: {return_code:?}/{}",
BcfBuildError::error_message(return_code)
),
})
}
}
1 change: 1 addition & 0 deletions src/bcf/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ use url::Url;

pub mod buffer;
pub mod header;
pub mod index;
pub mod record;

use crate::bcf::header::{HeaderView, SampleSubset};
Expand Down
Loading