From b5d7e1e519d09edf4c6a820f7f3a2ca6ca8eda98 Mon Sep 17 00:00:00 2001 From: Jiayu Huang Date: Tue, 12 Nov 2024 23:46:20 -0600 Subject: [PATCH] update doc --- Cargo.toml | 2 +- src/occupancy.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ad50cd5..785b5ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tf-binding-rs" -version = "0.1.2" +version = "0.1.3" edition = "2021" description = "Fast transcription factor binding site prediction and FASTA manipulation in Rust" license = "MIT" diff --git a/src/occupancy.rs b/src/occupancy.rs index 2373598..6060337 100644 --- a/src/occupancy.rs +++ b/src/occupancy.rs @@ -106,10 +106,10 @@ where /// * `MotifError::DataError` - If there are issues creating the PWM DataFrame /// /// # Example -/// ```no_run -/// use your_crate::occupancy::read_pwm_files; +/// ```ignore +/// use tf_binding_rs::occupancy::read_pwm_files; /// -/// let pwms = read_pwm_files("path/to/motifs.meme")?; +/// let pwms = read_pwm_files("path/to/motifs.meme").unwrap(); /// for (motif_id, pwm) in pwms { /// println!("Found motif: {}", motif_id); /// }