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); /// }